I am using nodemcu board ESP8266 1.0 and arduino ide along with it. There is a simple blink light program along with Serial.println code to check both the board and the serial monitor. The board is working fine, but the serial monitor is not giving proper output.
void setup() {
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(13, HIGH);
Serial.println("high");
delay(1000);
digitalWrite(13, LOW);
Serial.println("low");
delay(1000);
}
But the output in the serial monitor is something else, like inverted question mark, some unknown characters.I dont know what is going on, what mistake am i making, please tell me.