My serial monitor seems to be encrypted

I was doing several tests with my arduino, and whenever I look at its serial monitor, it always has unreadable characters, code example

instead of several hello worlds appearing on the serial monitor, several squares keep appearing to me, if anyone can help me I will be immensely grateful

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

void loop() {
 Serial.println("Hello World");
}

What is the baud rate setting in the serial monitor? Does it match the sketch?

Note

  1. because you have the closing ``` on the same line as the closing } of your code, your normal text was considered to be coder :slight_smile:
  2. You started the code with four back ticks; that was one too many :wink:

``` must be on its own line; I've done the last cleanup for you :wink:

1 Like

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.