Skip to content

Instantly share code, notes, and snippets.

@uktechreviews
Created August 3, 2017 08:37
Show Gist options
  • Save uktechreviews/7209622d16d2393550e9f0070f1d2251 to your computer and use it in GitHub Desktop.
Save uktechreviews/7209622d16d2393550e9f0070f1d2251 to your computer and use it in GitHub Desktop.
from gpiozero import LED
from signal import pause
green = LED(2)
yellow = LED(3)
green.blink()
yellow.blink()
pause()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment