本站改版新增arduino频道
通过编程实现串口通信,跟电脑串口助手实现数据收发
#导入串口模块 from machine import UART uart=UART(1,115200,rx=7,tx=6) #设置串口号2和波特率,TX--Y9--17,RX--Y10--16 uart.write('Hello!')#发送一条数据 while True: #判断有无收到信息 if uart.any(): text=uart.read(128) #接收128个字符 print(text) #通过REPL打印串口3接收的数据
Copyright © 2014 ESP56.com All Rights Reserved
晋ICP备14006235号-22 晋公网安备14108102001165号
执行时间: 0.0095920562744141 seconds