M5StickC - Question
markbirss opened this issue · 4 comments
markbirss commented
Where to connect RX,TX on M5StickC ?
EeeeBin commented
All the output pins you can use
In StickC:
tx: 0, 32, 33, 26
rx: 0, 32, 33, 26, 36
markbirss commented
EeeeBin commented
// Serial2.begin(unsigned long baud, uint32_t config, int8_t rxPin, int8_t txPin, bool invert)
Serial2.begin(115200, SERIAL_8N1, 36, 26);
markbirss commented
Ah ok, thank you for your feedback