I have a simple sketch that prints out Hello World"Hello World" to the serial, but I'm getting a bunch of gibberish instead.
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.println("Hello World");
delay(1000);
}
Why isn't it printing "Hello World" like the code says?