Page 1 of 1

Serial communication between ESP32 and ESP8266

Posted: Sat Jul 31, 2021 4:15 pm
by DutchOrange
So a small question here:
Iam busy with a project and I need to communicate some data between two devices which is a ESP32 and ESP8266 (The ESP8266 being the receiving one)
How would you print serial data to a specific pin or would you just connect it to the RX / TX pins ?
Thanks.

Re: Serial communication between ESP32 and ESP8266

Posted: Sun Aug 15, 2021 5:44 am
by fasani
In ESP32 IDF side you can send serial to a specific pin:
https://docs.espressif.com/projects/esp ... /uart.html There are examples.
And I would receive in the RX pin on the esp8266 side.