Welcome to

SimplTronics

Mechatronics made simple

I want toCommunicate information to the userusing anLED

Choose platform

from gpiozero import LED
from time import sleep

light = LED(17)

while True:
  light.on()
  sleep(1)
  light.off()
  sleep(1}
Follow this guide