void setup() {
// put your setup code here, to run once:
Serial.begin(SERIAL,9600);
Serial.println("Hello World");
}
void loop() {
// put your main code here, to run repeatedly:
Serial.println(" Hello World ");
delay(2000);
}
I fire up the serial monitor (already set to 9600) but don't see anything printed there. But I see the scroll tab move, so I guess something is happening.