bathroom-timer/blink.py
Vincent Batts b10dcbba57
*: initial toying with gpiozero python3
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2024-11-15 21:08:19 -05:00

13 lines
154 B
Python

#!/usr/bin/env python3
from gpiozero import LED
from time import sleep
led = LED(25)
while True:
led.on()
sleep(1)
led.off()
sleep(1)