Initial commit

This commit is contained in:
2026-07-29 13:29:46 +01:00
commit dcc44b05bd
8 changed files with 396 additions and 0 deletions

11
led_test.py Normal file
View File

@@ -0,0 +1,11 @@
from gpiozero import LED
from time import sleep
red = LED(17)
yellow = LED(27)
blue = LED(22)
for led in (red, yellow, blue):
led.on()
sleep(1)
led.off()