本站改版新增arduino频道

Micropython
Arduino

Micropython ESP32 C3连接人体红外感应模块HC-SR505


Micropython ESP32 C3连接人体红外感应模块HC-SR505

 ESP32 C3和SR505模块接线方法:

652ba0d841d34e0ea92f368c1f2bf397.png

from machine import Pin,UART
import time
 
# 定义led灯对象
led = Pin(12,Pin.OUT)
# 定义SR505人体感应器对象
sr505 = Pin(4,Pin.IN,Pin.PULL_DOWN)
# 创建串口对象
uart = UART(1,baudrate = 9600,tx = 0,rx = 1)
 
# 命令
on = bytearray(b'\x7e\xff\x06\x03\x00\x00\x01\xfe\xf7\xef')  # 开启
off = bytearray(b'\x7e\xff\x06\x03\x00\x00\x02\xfe\xf6\xef')  # 关闭
 
# 创建SR505对象
def SR505():
    if sr5.value() == True:
        time.sleep(0.05)
        if sr5.value() == True:
            led.value(not led.value())
            if led.value():
                uart.write(on)
            else:
                uart.write(of)
                
            while not sr5.value():
                None
                
        time.sleep(10)
        
def main():
    #uart.write(on)
    while True:
        SR505()
 
 
if __name__ == "__main__":
    main()

来源:https://blog.csdn.net/zhusongziye/article/details/131315109


推荐分享
图文皆来源于网络,内容仅做公益性分享,版权归原作者所有,如有侵权请告知删除!
 

Copyright © 2014 ESP56.com All Rights Reserved
晋ICP备14006235号-22 晋公网安备14108102001165号

执行时间: 0.0096189975738525 seconds