-
-
Save bkrajendra/6c100005cc072fac1614cc38bb8d8a69 to your computer and use it in GitHub Desktop.
LED Blink with Python RPI
This file contains 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
#!/usr/bin/env python | |
import RPi.GPIO as GPIO # RPi.GPIO can be referred as GPIO from now | |
import time | |
ledPin = 22 # pin22 | |
def setup(): | |
GPIO.setmode(GPIO.BOARD) # GPIO Numbering of Pins | |
GPIO.setup(ledPin, GPIO.OUT) # Set ledPin as output | |
GPIO.output(ledPin, GPIO.LOW) # Set ledPin to LOW to turn Off the LED | |
def loop(): | |
while True: | |
print 'LED on' | |
GPIO.output(ledPin, GPIO.HIGH) # LED On | |
time.sleep(1.0) # wait 1 sec | |
print 'LED off' | |
GPIO.output(ledPin, GPIO.LOW) # LED Off | |
time.sleep(1.0) # wait 1 sec | |
def endprogram(): | |
GPIO.output(ledPin, GPIO.LOW) # LED Off | |
GPIO.cleanup() # Release resources | |
if __name__ == '__main__': # Program starts from here | |
setup() | |
try: | |
loop() | |
except KeyboardInterrupt: # When 'Ctrl+C' is pressed, the destroy() will be executed. | |
endprogram() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment