Last active
November 6, 2017 10:25
-
-
Save iotguider/610ca18930d2d752e81f4f7eb298d112 to your computer and use it in GitHub Desktop.
Code for Blinking LED with Raspberry Pi using python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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