QuizDiscussion

1. Arduino UART Functions

What is printed on the Serial monitor?  ( after executing the following code )

void setup() {
 Serial.begin(115200);
}

void loop() {
  Serial.print("Hello"); 
 Serial.print("EW!");
  while(1);
}


 

Select Answer