Hello everyone,
This is my first post, so I apologize if I mess something up. I recently bought a NodeMCU v3, ESP8266, and was trying to upload the Blink sketch onto it, to get it started.
The sketch works fine, and it blinks, but opening the Serial Monitor shows that blank space is being infinitely printed. There is nothing in the code to open the serial port, and I do not have this issue with the Uno or the Pro Micro, using the same sketch. I have also tried closing the Serial port on setup, working with different baud rates, Software serial... nothing worked. Even in the blink sketch it keeps outputting serial.
The board is connected directly to the computer via usb. I have installed all the drivers, I've even gotten a tft screen to work and display images; however, I am struggling with implementing serial communication directly with the computer considering that the serial port is constantly outputting blank spaces.
The code for the sketch is this:
void setup() {
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
digitalWrite(LED_BUILTIN, HIGH);
delay(1000);
digitalWrite(LED_BUILTIN, LOW);
delay(1000);
}
And the output in the serial monitor is this:
Please notice the horizontal scrollbar at the bottom, that shows how long the "output" is, but that there is nothing there. It constantly outputs unless the board is reset, and sometimes that doesn't fix it either.
I can't understand what could be causing this. I have also tried other ESP8266 boards and the same happened. Any help here would be much appreciated, since serial communication with the computer is a vital part of my project. Thank you