ESP32 的默认串口
UART序号 | Rx PIN | Tx PIN | 是否可用 |
---|---|---|---|
UART0 | GPIO3 | GPIO1 | 是 |
UART1 | GPIO9 | GPIO10 | 是, 但与SPI flash相关联需要重新定义 |
UART2 | GPIO16 | GPIO17 | 是 |
下面我们定义2、4GPIO引脚为串口1:
#include <HardwareSerial.h>
HardwareSerial S1(1);
初始化
S1.begin(115200, SERIAL_8N1, 4, 2);
通讯展示
ok,完美收官,代码完成!
有兴趣的可以试一试!