I switched board to another one (NODEMCU ESP32), switched to GPIO16/17, and did a simple test
ESP32:
Serial2.setup(115200,{rx:D17, tx:D16}); Serial.print("hello");
on Espruino
Serial2.setup(115200); Serial2.on('data', function (str) { console.log(str); }); //output: l ohel >
Strange. Can confirm that message sent from Espruino is received on ESP32 as entire blob instead of per character...
@n00b started
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.
I switched board to another one (NODEMCU ESP32), switched to GPIO16/17, and did a simple test
ESP32:
on Espruino
Strange. Can confirm that message sent from Espruino is received on ESP32 as entire blob instead of per character...