Skip to content

Instantly share code, notes, and snippets.

@iotguider
Last active November 6, 2017 10:25
Show Gist options
  • Save iotguider/610ca18930d2d752e81f4f7eb298d112 to your computer and use it in GitHub Desktop.
Save iotguider/610ca18930d2d752e81f4f7eb298d112 to your computer and use it in GitHub Desktop.
Code for Blinking LED with Raspberry Pi using python
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BCM)
GPIO.setup(17,GPIO.OUT)
while True:
GPIO.out(17, GPIO.HIGH)
time.sleep(1)
GPIO.out(17, GPIO.LOW)
time.sleep(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment