-->
Page 1 of 1

Baud Rate

PostPosted: Wed Mar 08, 2017 6:47 am
by manny009
Can anyone confirm if I have changed my baudrate correctly?

So my ESP8266 module is set to 115200 baud, but I need it to work at 9600 baud.

In my code that I have uploaded directly to the ESP module I have said to read the serial port at 9600 but my Arduino IDE settings still say 115200 baud as it will only flash on this setting. Changing the IDE settings to 9600 as well, will result in a memory inaccessible error when trying to flash.

What rate will the data be read???


Thanks

Re: Baud Rate

PostPosted: Wed Mar 08, 2017 5:03 pm
by schufti
the setting you changed only affects flashing speed and should be left at 115200.

the setting according to the "Serial.begin(9600)" in your sketch is done directly in the serial monitor window dropdown box.

Re: Baud Rate

PostPosted: Thu Mar 09, 2017 11:48 am
by manny009
schufti wrote:the setting you changed only affects flashing speed and should be left at 115200.

the setting according to the "Serial.begin(9600)" in your sketch is done directly in the serial monitor window dropdown box.



Excellent! Thank You :)