-->
Page 2 of 2

Re: Not sure what comes next - nothing happens

PostPosted: Thu Sep 14, 2017 10:41 am
by liderbug
Blink .... Blink .... Blink .... Blink .... Blink .... Blink .... Blink .... Blink .... :o :o :D :D :D

Board: NodeMCU 1.0 (ESP-12E Module)
Film @ 11

Re: Not sure what comes next - nothing happens

PostPosted: Thu Sep 14, 2017 11:10 am
by rudy
:lol:

Yeah

Re: Not sure what comes next - nothing happens

PostPosted: Thu Sep 14, 2017 1:34 pm
by liderbug
Next step:
void setup() {
Serial.begin(9600);
while (!Serial) {
;
}
delay(3000); // give me time to bring up the Serial Monitor
Serial.print("Attempting to connect to SSID: ");
...
blink blink blink.....


The serial monitor pops up and sits there blank but my led blinks away
Ah Ha! - figured it out - I upload at 115200... then click on SM and it runs at 115200 - NOT! 9600.
Think that falls under "a bug"? Shouldn't SM be locked to 9600 or at least default?

I'm getting there. :D

Re: Not sure what comes next - nothing happens

PostPosted: Thu Sep 14, 2017 5:27 pm
by schufti
no, better solution is to change
Serial.begin(9600);
to
Serial.begin(74880);

and also set the baudrate in your serial monitor to 74880.

This way you will be able to read output of the bootloader too
(what appears to be gibberish at the moment).

p.s.: the upload baudrate has nothing to do with the baudrate of the serial monitor.
usually you could up the upload speed to the 900k setting