经过几次尝试,今天进行串口与光敏感器结合用,智能控制系统总是从一小步一小步叠加在一起。投砖引玉,一起开动起来!!!
请参考:【Banana PI Leaf S3开发板试用体验】之调试必备.UART调试
备注:引脚 接 Pin38
from machine import Pin
from machine import UART
import time
uart1 = UART(1, tx=43, rx=44)
#选择UART接口,指定TX与RX使用的引脚
uart1.init(115200, bits=8, parity=None, stop=1)
#初始化,设置波特率,设置字符位数,设置奇偶校验,设置停止位
beeper = Pin(38, Pin.IN) # 创建对象beeper,对应GPIO38口输入
while True:
uart1.write(str(beeper.value()))#写数据
time.sleep(1)
print(uart1.read())#读数据
print(beeper.value())
time.sleep(1)
四、测试截图及实物图:
更多回帖