--Complete ESP32 newbie here--
I've been trying to send serial data to from an Arduino Nano to an ESP32 TTGO T-Display, but I can't find the RX pin. Does anyone know what pins are RX/TX on this board?
Thanks.
TTGO T-Display Serial Pins
Re: TTGO T-Display Serial Pins
They are remappable so you can choose which pins you want to use when you initialise the serial port. There are some defaults defined:
See void HardwareSerial::begin(unsigned long baud, uint32_t config, int8_t rxPin, int8_t txPin, bool invert, unsigned long timeout_ms)
to override the defaults.
Code: Select all
#ifndef RX1
#define RX1 9
#endif
#ifndef TX1
#define TX1 10
#endif
#ifndef RX2
#define RX2 16
#endif
#ifndef TX2
#define TX2 17
#endif
to override the defaults.
Who is online
Users browsing this forum: Baidu [Spider] and 49 guests