Ex1 - LED
https://gpiozero.readthedocs.io/en/stable/recipes.html#led
Last updated
Was this helpful?
https://gpiozero.readthedocs.io/en/stable/recipes.html#led
Last updated
Was this helpful?
Was this helpful?
from gpiozero import LED
from signal import pause
led = LED(5)
led.blink()
pause()