Please go easy on me I have recently received an Arduino Uno R3 as a Christmas present and have now caught the bug and getting in over my head on another project.
I am wanting to program some home automation widgets and purchased a NodeMCU esp8266 dev board(HiLetgo NodeMCU) to practice with before developing the final project.
I have uploaded the simple blink sketch and that is working as it should. I even changed the output pins to ensure the GPIO's are working as they should and they checked out.
I am trying to get the sketch program "Wifiscan" to find my home ssid just to make sure the WiFi is working. But when I open the serial monitor sometimes I will get a line of repeating question marks "????????" and sometimes I will get nothing. Upon pressing the reset button on the board I can get the bootloader information to be printed to the serial monitor (seen in the picture attached). Baud rates are the same. Pictures are of the actual program and the serial monitor have been attached. Within void setup() I added a serial.printf("Setup Begin"); and after a reset I do not even see this line of code output on the serial monitor.
I have the nodemcu esp8266 connected directly to the PC through the micro USB connector on the board. Sketches are uploaded through the Arduino IDE software. I have downloaded the proper drivers and added the board to the IDE board manager.
That means you need to have serial monitor also set to '115200 baud' down in the bottom right corner.
You also probably need to have the other drop box, next to it, set to 'both NL & CR'
boylesg:
You have Serial.begin(115200) in your setup.
That means you need to have serial monitor also set to '115200 baud' down in the bottom right corner.
You also probably need to have the other drop box, next to it, set to 'both NL & CR'
I have both the serial monitor and the code in the sketch set to 115200 baud and set "Both NL & CR".
Still the same problem with more gibberish output.