Blinking an LED using Raspberry Pi and Python Programming

Published: 01 January 1970
on channel: Innovation with Robotics
67
5

In this video, I will show you how to Blink an LED with Raspberry Pi using Python program i.e. turn on the LED for some duration and turn off the LED for some duration. RPi.GPIO Library and time module has been used in python programming to control the LED.

If you don’t have RPi.GPIO library then type the following commands in the Terminal to install it in your raspberry.

sudo apt-get update
sudo apt-get install rpi.gpio

The Components required are :
• Raspberry Pi (Any Model 2, 3, 4)
• Keyboard
• Mouse
• Monitor
• SD Card (Min. 16 GB)
• Breadboard
• GPIO Extension Board
• GPIO Extension Cable
• LED
• 220 Ohm Resistor
• Jumper Wires

Python Program :
import RPi.GPIO as GPIO
import time

Variables
LED_Pin_No = 17
Main_Loop_Condition = True

Main Function
def Main():
GPIO.setmode(GPIO.BCM)
GPIO.setup(LED_Pin_No, GPIO.OUT)
GPIO.output(LED_Pin_No, GPIO.LOW)

while Main_Loop_Condition:
GPIO.output(LED_Pin_No, GPIO.HIGH)
time.sleep(1)
GPIO.output(LED_Pin_No, GPIO.LOW)
time.sleep(1)

Function to Exit and release GPIO Pins
def Exit():
GPIO.cleanup()
Main_Loop_Condition = False
exit()

Main Program
if _name_ == "__main__":
try:
Main()
except KeyboardInterrupt:
Exit()

END ##

If you like this video, please press the like button and subscribe to my channel...
Thank You


On this page of the site you can watch the video online Blinking an LED using Raspberry Pi and Python Programming with a duration of hours minute second in good quality, which was uploaded by the user Innovation with Robotics 01 January 1970, share the link with friends and acquaintances, this video has already been watched 67 times on youtube and it was liked by 5 viewers. Enjoy your viewing!