i need some help
i try to replace my arduino with the ESP
for reporting my electrical power consumption , i need to read at 1200 bps on a serial interface
on the arduino with RX on the target interface an TX on my serial usb for debugging, i use something like:
void loop() {
if (Serial.available())
Serial.write(Serial.read() & 0x7F);
}
on ESP, it losts data during the reading
i add a call to yield() but no success
thanks