from machine import Pin
from time import sleep
# creating a PIR object, setting it as IN
pir = Pin(10, Pin.IN)
led = Pin(19, Pin.OUT)
buzz = Pin(16, Pin.OUT)
# continuously read data from the PIR sensor
# print a status whether a motion or detected or not
while True:
if pir.value() == 1:
led.on()
buzz.on()
print(f"PIR value: {pir.value()} Status: Motion detected!")
sleep(1)
else:
led.off()
buzz.off()
print(f"PIR value: {pir.value()} Status: Waiting for movement...")
# PIR sensor would check for movement every second
sleep(1)