You are on page 1of 16

RPI = Raspberry Pi

PRACTICAL DOCUMENTATION:

This is the Broadcom chip used in the Raspberry Pi 3, and in later models of the
Raspberry Pi 2.

The underlying architecture of the BCM2837 is identical to the BCM2836.

The only significant difference is the replacement of the ARMv7 quad core cluster
with a quad-core ARM Cortex A53 (ARMv8) cluster.

The ARM cores run at 1.2GHz, making the device about 50% faster than the
Raspberry Pi 2. The VideocoreIV runs at 400Mhz.

The Raspberry Pi 2's chip BCM2836 and the Raspberry Pi 1's chip BCM2835
PIN DETAILS OF RPI
Practical No#1:
Linux commands : <<Write commands using the following link: >>

https://www.raspberrypi.org/documentation/linux/usage/commands.md

Practical No.#2:
Write a program to blink LED connected to GPIO 21
General Diagram:

SOLUTION:
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BCM)
GPIO.setup(20,GPIO.OUT)
while True:
GPIO.output(20,1)
time.sleep(0.2)
GPIO.output(20,0)
time.sleep(0.2)

To run the program type following command at the Pi command prompt:


sudo python ledblink.py
Practicals No.#3:
Write a program to blink LED connected to GPIO 20 and GPIO 21.

Use GPIO 20 & GPIO 21


NOTE : IN THE PRACTICAL BOARD LEDS ARE CONNECTED TO GPIO 20 &
GPIO 21.

SOLUTION:
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BCM)
GPIO.setup(20,GPIO.OUT)
GPIO.setup(21,GPIO.OUT)
while True:
GPIO.output(20,1)
time.sleep(0.2)
GPIO.output(20,0)
time.sleep(0.2)
GPIO.output(21,1)
time.sleep(0.2)
GPIO.output(21,0)
time.sleep(0.2)

NOTE : IN THE PRACTICAL BOARD LEDS ARE CONNECTED TO GPIO 20 &


GPIO 21.
---------------------------------------------------------------------------------------------------------------------

Practicals No.#4:
Write a program to detect switch closure , connected to RPI GPIO 16
& GPIO 19

GPIO 16 GPIO 19
SOLUTION:

import RPi.GPIO as GPIO


import time
GPIO.setmode(GPIO.BCM)
GPIO.setup(19,GPIO.IN)
GPIO.setup(16,GPIO.IN)
while True:
reading = GPIO.input(19)
if reading == 0:
print "FIRST BUTTON Pressed"

reading1= GPIO.input(16)
if reading1 == 0:
print "SECOND BUTTON Pressed"

time.sleep(0.2)

Above Technique is Known as Scanning Keys

Practicals No.#5:
Write a program to detect switches closure ,connected to RPI pins
GPIO 16 & GPIO 19
& also BLINK LEDS CONNECTED TO GPIO 20 & GPIO 21.

import RPi.GPIO as GPIO


import time
GPIO.setmode(GPIO.BCM)
GPIO.setup(19,GPIO.IN)
GPIO.setup(16,GPIO.IN)
GPIO.setup(20,GPIO.OUT)
GPIO.setup(21,GPIO.OUT)
while True:
reading = GPIO.input(19)
if reading == 0:
print "FIRST BUTTON Pressed"

reading1= GPIO.input(16)
if reading1 == 0:
print "SECOND BUTTON Pressed"

GPIO.output(20,1)
time.sleep(0.2)
GPIO.output(20,0)
time.sleep(0.2)
GPIO.output(21,1)
time.sleep(0.2)
GPIO.output(21,0)
time.sleep(0.2)

Practicals No.#6:
Write a program to generate Sound of different pitch and duration
using buzzer
#NOTE: Use GPIO 13 ---- FOR BUZZER

import RPi.GPIO as GPIO


import time
buzzer_pin=13
GPIO.setmode(GPIO.BCM)
GPIO.setup(13,GPIO.OUT)
def buzz(pitch,duration):
period=1.0/pitch
delay=period/2
cycles=int(duration*pitch)
for i in range(cycles):
GPIO.output(buzzer_pin,True)
time.sleep(delay)
GPIO.output(buzzer_pin,False)
time.sleep(delay)
while True:
pitch_s=raw_input("Enter Pitch between (200 to 2000): ")
pitch=float(pitch_s)
duration_s=raw_input("Enter Duration in Seconds: ")
duration=float(duration_s)
buzz(pitch,duration)
---------------------------------------------------------------------------------------------------------------------

Practicals No.#7:
Write a program to CAPTURE AN IMAGE using camera module interface.

Settings:
1. Install the Raspberry Pi Camera module by inserting the cable into the Raspberry Pi.
2. The cable slots into the connector situated between the Ethernet and HDMI ports, with
the silver connectors facing the HDMI port.
3. boot up raspberry-pi
4. From the prompt, run "sudo raspi-config". If the "camera" option is not listed, you will
need to run a few commands to update your Raspberry Pi. Run "sudo apt-get update" and
"sudo apt-get upgrade"
5.
6.
7. Run "sudo raspi-config" again - you should now see the "camera" option

Navigate to the "camera" option, and enable it. Select “Finish” and reboot your Raspberry Pi.

  
from picamera import PiCamera
from time import sleep
camera =PiCamera()
camera.resolution =(1024,768)
camera.start_preview()
sleep(2)
camera.capture('test_photo.jpg')

Practicals No.#8:
Write a program to RECORD a video using camera module interface.

import picamera
camera =picamera.PiCamera()
camera.resolution =(640,480)
camera.start_recording('test_video.h264')
camera.wait_recording(5)
camera.stop_recording()
print('finished')

To view the video (Created in the folder in which the program is run), use the following
command at the Pi command-prompt.
Omxplayer ‘\pi\home\progs\test_video.h264’

Where ‘test_video.h264’ is the name of the file to be played.

Practicals No.#9:
Write a program to change intensity of LED using Pulse Width
Modulation (PWM)

#NOTE: Use GPIO 20 ---- FOR PWM – LED

import RPi.GPIO as GPIO


import time
led_pin=20
GPIO.setmode(GPIO.BCM)
GPIO.setup(20,GPIO.OUT)
pwm_led=GPIO.PWM(led_pin,500) # freq =500 object is created
pwm_led.start(100)
while True:
duty_s=raw_input("Enter Brightness between (0 to 100):")
duty=int(duty_s)
pwm_led.ChangeDutyCycle(duty)
time.sleep(0.2)

Practical No#10
Glowing the LED connected to pin no#21 using Node-Red

1. Node-RED is a drag-and-drop visual tool which comes pre-installed on Raspbian.


In this resource we will use Node-RED to control LEDs via the Raspberry Pi’s
GPIO pins.
2. Step 1:
a. Start up your Raspberry Pi. Click on the Raspberry icon, then
the Programming menu to open Node-RED.
b. You should see a window displaying information about Node-RED
starting up.
c.

d. Now go to the Internet menu and open Chromium Web Browser.


e. In Chromium, locate the address bar at the top and type
in localhost:1880, then press Enter. This will display the Node-
RED interface. (Your Raspberry Pi does not need to be connected
to the internet to use Node-RED: localhost is the address the
Raspberry Pi uses to refer to itself and :1880 means that it is
looking at port 1880.)
f. Connect to GPIO Pin: Choose from the interface (left side pane) :
Output node of Raspberry Pi nodes. Node with label rpi.gpio: type
output node
g. Double click on the node and set its properties
h. To inject 0 & 1 values (off and on), scroll up in the list of nodes and drag
an inject node.

i.
j. Double-click on the inject node. Use the drop down next
to Payload to change the data type to string and type 1 in the
Payload box - this will be the message. Type On in the Name box.
Press Done.
k. Similarly, create one for OFF.

l. Create flows and it should look something like shown above : with
both on and off connected to the GPIO pin interface node labeled
here as Green LED.
m. Our flow is finished, so we can deploy it. Click on the big
red Deploy button on the top right of the screen. A message
should pop up at the top saying “Successfully deployed”. This is
similar to pressing the green flag in Scratch or F5 to run your code
in Python.
n. Now click on the blue square on the left of the On node to inject
the message 1. The Green LED node receives the message and
your LED should light up. You should be able to turn the LED off
by clicking the blue square on the Off node, which injects the
message 0.

Practicals No.#11:
Explain i2c protocol and detect address map of i2c devices
Command to detect i2c devices in RPI

$ sudo apt-get install python-smbus

Reboot your Pi

$ sudo apt-get install i2c-tools

Attach your i2c device and run

$ sudo i2cdetect –y 1

Observe the Address of i2c device ie RTC =68


Practical #12: Stepper Motor

Stepper Motor

Used In Printers

Practicals No.#10:
Write a program to rotate stepper motor in clockwise direction
Windings are connected to # GPIO17,GPIO18 ,GPIO22 ,GPIO23

import time
import RPi.GPIO as GPIO
GPIO.cleanup()
#cleaning up in case GPIOS have been preactivated
# Use BCM GPIO references
# instead of physical pin numbers
GPIO.setmode(GPIO.BCM)
# be sure you are setting pins accordingly
# GPIO17,GPIO18,GPIO22,GPIO23
StepPins = [17,18,22,23]
# Set all pins as output
for pin in StepPins:
GPIO.setup(pin,GPIO.OUT)
GPIO.output(pin, False)
#wait some time to start
time.sleep(0.5)

# Define some settings


StepCounter = 0
WaitTime = 0.0015

# Define simple sequence


StepCount1 = 4
Seq1 = []
Seq1 = range(0, StepCount1)
Seq1[0] = [1,0,0,0]
Seq1[1] = [0,1,0,0]
Seq1[2] = [0,0,1,0]
Seq1[3] = [0,0,0,1]

# Define advanced sequence


# as shown in manufacturers datasheet
StepCount2 = 8
Seq2 = []
Seq2 = range(0, StepCount2)
Seq2[0] = [1,0,0,0]
Seq2[1] = [1,1,0,0]
Seq2[2] = [0,1,0,0]
Seq2[3] = [0,1,1,0]
Seq2[4] = [0,0,1,0]
Seq2[5] = [0,0,1,1]
Seq2[6] = [0,0,0,1]
Seq2[7] = [1,0,0,1]

#Full torque
StepCount3 = 4
Seq3 = []
Seq3 = [3,2,1,0]
Seq3[0] = [0,0,1,1]
Seq3[1] = [1,0,0,1]
Seq3[2] = [1,1,0,0]
Seq3[3] = [0,1,1,0]

# set
Seq = Seq2
StepCount = StepCount2

# Start main loop


try:
while 1==1:
for pin in range(0, 4):
xpin = StepPins[pin]
if Seq[StepCounter][pin]!=0:
#print " Step %i Enable %i" %(StepCounter,xpin)
GPIO.output(xpin, True)
else:
GPIO.output(xpin, False)

StepCounter += 1
# If we reach the end of the sequence
# start again
if (StepCounter==StepCount):
StepCounter = 0
if (StepCounter<0):
StepCounter = StepCount
# Wait before moving on
time.sleep(WaitTime)
except:
GPIO.cleanup();
finally: #cleaning up and setting pins to low again (motors can get hot if you wont)
GPIO.cleanup();
for pin in StepPins:
GPIO.setup(pin,GPIO.OUT)
GPIO.output(pin, False)
-------------------------------------------------------------------------------------------------------------------

You might also like