from machine import Pin, PWM
from time import sleep
led = Pin(1, Pin.OUT) # Declare LED as an output
# creating a PIR object, setting it as IN
pir = Pin(10, Pin.IN)
buzzer = PWM(Pin(5)) # Declare buzzer on GPIO5 as PWM output
buzzer.freq(1000) # Set buzzer frequency (adjust as needed)
buzzer.duty_u16(0) # Turn off the buzzer initially
motion_detected = False # Initialize motion detected flag
# continuously read data from the PIR sensor
# print a status whether a motion or detected or not
while True:
if pir.value() == 1:
if not motion_detected:
led.value(1) # Turn LED ON
buzzer.duty_u16(32768) # Turn on the buzzer (adjust duty cycle for desired sound)
motion_detected = True
print(f"PIR value: {pir.value()} Status: Motion detected!")
else:
if motion_detected:
led.value(0) # Turn LED OFF
buzzer.duty_u16(0) # Turn off the buzzer
motion_detected = False
print(f"PIR value: {pir.value()} Status: Waiting for movement...")
# PIR sensor would check for movement every second
sleep(1)
pico:GP0
pico:GP1
pico:GND.1
pico:GP2
pico:GP3
pico:GP4
pico:GP5
pico:GND.2
pico:GP6
pico:GP7
pico:GP8
pico:GP9
pico:GND.3
pico:GP10
pico:GP11
pico:GP12
pico:GP13
pico:GND.4
pico:GP14
pico:GP15
pico:GP16
pico:GP17
pico:GND.5
pico:GP18
pico:GP19
pico:GP20
pico:GP21
pico:GND.6
pico:GP22
pico:RUN
pico:GP26
pico:GP27
pico:GND.7
pico:GP28
pico:ADC_VREF
pico:3V3
pico:3V3_EN
pico:GND.8
pico:VSYS
pico:VBUS
pir1:VCC
pir1:OUT
pir1:GND
led1:A
led1:C
bz1:1
bz1:2