Is it possible to change the baudrate on ESP8266 running espruino ?
I am trying to wifi enable some old RS232 equipment.
This equipment need a baudrate of 19200.
I tried :
Serial1.setup(19200,{bytesize:8,parity:'none',stopbits:1,flow:'none'});
Serial1.println("testing 123");
I prints the "testing 123" on the connected terminal, but is still uses 115200, as the firmware setup.
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Is it possible to change the baudrate on ESP8266 running espruino ?
I am trying to wifi enable some old RS232 equipment.
This equipment need a baudrate of 19200.
I tried :
Serial1.setup(19200,{bytesize:8,parity:'none',stopbits:1,flow:'none'});
Serial1.println("testing 123");
I prints the "testing 123" on the connected terminal, but is still uses 115200, as the firmware setup.