Raspberry Pi
It is essentially a credit card sized computer that can be used to experiment with, and build various projects.
Raspberry Pi can be used for a variety of purposes including education, home automation, media centers, gaming consoles, robotics, IoT i.e. Internet of Things and more.
Raspberry Pi boards typically include multiple USB ports, a CPU, RAM, a power socket, a HDMI port, an IC i.e. an Integrated Circuit, and 40 General Purpose Pins also known as GPIO to interface with external devices like add-on boards.
It has its own Linux based GUI.
Certain necessary connections need to be made to operate the Pi.
1. The HDMI port of the pi must be connected to the CPU of a Desktop or Laptop.
2. The USB Ports of the Pi must me connected to a keyboard and a mouse.
3. Power supply must be connected to the Pi through the Micro USB Power Input.
That's it!
The IC of the Pi gets heated up quickly but that's no worry. In case of extreme usage and heating a a Low Voltage symbol pops up on the GUI indicating that the Pi must be disconnected to prevent any damage.
The GPIO Pins have a certain layout and respective functions:
To obtain result of the code written onto these Pi's add-on boards need to be connected.
They have to be supplied with power too which can be done using the GPIO Pins or by giving it a direct power supply.
It can be powered by giving it a basic 5V supply and a 0V supply ( Ground ) through the Pi.
To the left here is an add-on board comprising 2 sets of LED's one connected in syncing and the other in sourcing mode.
The green LED that is glowing is connected in syncing and the white ones are connected in sourcing mode.
To begin with coding we must first create our folder on the Desktop using Linux commands on the RPi terminal.
Once done we must enter the folder and create a python file.
cd Desktop followed by cd Rishi will get us in the folder named Rishi.
A python file can then be created by typing:
sudo nano file_name.py
The python file can be executed by typing:
sudo python file_name.py
Consider a simple code to light up the LED.
import RPi.GPIO as gpio #imports the required library and renames it
gpio.setmode ( gpio.BOARD ) #sets it to BOARD mode
gpio.setup ( 11 , gpio.OUT ) #since pin 11 is a GPIO pin it has been assigned as an output pin
gpio.output ( 11 , gpio.HIGH ) #it has been given logic HIGH which means the syncing led will be turned off
while 1:
gpio.output ( 11 , gpio.LOW ) #logic LOW will turn on the LED
#This basic code turns on the LED of the add-on board.
Consider this self-explanatory festival lights code:
import RPi.GPIO as gpio
import time
gpio.setmode ( gpio.BOARD )
gpio.setup ( 11 , gpio.OUT )
gpio.output ( 11 , gpio.HIGH )
a = int ( input ( " Enter number of times you want led to blink ") )
x= int ( input ( " Enter number of seconds you want led to blink after " ) )
for i in range ( a ):
gpio.output ( 11 , gpio.LOW )
time.sleep( x )
gpio.output ( 11 , gpio.HIGH )
time.sleep( x )
#By this code the LED will blink for a specific number of times and have a certain time gap as well providing a festival lights like look.
Consider a code where a switch has been integrated which turns on and turns off the LED
import RPi.GPIO as gpio
gpio.setmode ( gpio.BOARD )
led = 5
sw = 3
gpio.setup ( 3 , gpio.IN )
gpio.setup ( 5 , gpio.OUT )
gpio.output ( led , gpio.HIGH )
while 1:
x = gpio.input ( sw )
if ( x == 0 ) :
gpio.output ( led , gpio.LOW )
print ( " Value = " , x )
else:
gpio.output ( led , gpio.HIGH )
print ( " Value = " , x )
NOTE :
PWM is Pulse With Modulation
It is a technique used in electronics and embedded systems to control the average voltage of power delivered. It is commonly used in controlling the speed of motors, dimming LED lights, generating analog signals and more.
Consider a code where a switch dims the light of a LED and another switch brightens the LED.
import RPi.GPIO as gpio
import time
led = 3
sw1 = 5
sw2 = 7
gpio.setmode ( gpio.BOARD )
gpio.setup ( 5 , gpio.IN )
gpio.setup ( 7 , gpio.OUT )
gpio.output ( 3 , gpio.OUT )
gpio.output ( 3 , gpio.HIGH )
k = gpio.PWM ( 3 , 50 )
f = 0
while 1:
x = gpio.input( sw1 )
if ( x== 0 ) :
f = f + 20
k.start ( f )
print ( " Dim = " , f )
time.sleep ( 1 )
y = gpio.input ( sw2 )
if ( y==0 ) :
f = f - 20
k.start ( f )
print ( " Bright = " , f )
time.sleep ( 1 )
0 Comments