Skip to main content
2 of 3
added 3 characters in body; edited tags

Serial data showing up weird

I have a simple sketch that prints out "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?

sachleen
  • 7.6k
  • 5
  • 40
  • 57