Raspberry Pi 3 PIR传感器是一种可用于检测移动物体的传感器,它可以检测到移动物体的热量,从而实现移动物体的检测和安全报警功能。 Raspberry Pi 3 PIR传感器可以有效地检测到移动物体,并可以实现安全报警功能,可以有效防止未经授权的人员进入安全区域。
使用Raspberry Pi 3 PIR传感器需要以下步骤:
import RPi.GPIO as GPIO import time GPIO.setmode(GPIO.BCM) pirPin = 17 GPIO.setup(pirPin, GPIO.IN) try: print("PIR Module Test (CTRL+C to exit)") time.sleep(2) print("Ready") while True: if GPIO.input(pirPin): print("Motion Detected!") time.sleep(2) except KeyboardInterrupt: print("Quit") GPIO.cleanup()
本文链接:http://task.lmcjl.com/news/2259.html