SlideShare a Scribd company logo
3
Most read
5
Most read
8
Most read
RASPBERRY PI – USING PYTHON
2ND JUNE 2013
www.sf-innovations.co.uk
IDLE3 – Python Shell
Launch IDLE3 from the Raspberry GUI. This will allow us to experiment with
Python commands.
At the >>> prompt type
print („hello world‟)
You will see “hello world” on the screen.
At the >>> prompt type
20 + 5
You will see “25” on the screen.
This is a way of executing Python commands immediately. A programme is
simply a collection of commands executed consecutively.
www.sf-innovations.co.uk
Writing a Python program
Under the file tab in IDLE3, click on new window. You are now ready to
write a program. For now type the following exactly.
For x in range (1,10);
y=x * x
print “x=“, x, “square of x=“, y
Under the file tab, click on save and call the file “squarex”.
Launch LXTerminal from the Raspberry Pi GUI. This will bring you back to
the Linux command line prompt: pi@raspberrypi - $
Type “sudo python squarex.py” to run your program.
You will see
X = 1 square of x = 1
X = 2 square of x = 4
...
X = 9 square of x = 81
That‟s it. You‟ve written your first Python program.
www.sf-innovations.co.uk
Some notes on Python
You can run programs using the “run module” option under the run tab.
However when I tried this I got programming syntax errors. When I ran the
same program using the command line prompt, it worked fine.
Sudo – stands for “super user do”. With Linux, this gives you the right
privileges to run a Python program.
Comments - If you want to add comments to your program, then use # at
the start. For example, you could have started the program on the previous
page with
# program to work out squares of numbers from 1 to 9.
Using libraries – Many standard functions are available as libraries in
Python. These can be used by using the “import” command and will save
you a lot of time in programming.
For example “import time” will bring in a library which can be used for time
delays. “import random” will bring in a random number generator.
www.sf-innovations.co.uk
Turning an led on and off
We are going to use the GPIO port on the Raspberry Pi for this. To make the
connection easier, the Custard Pi 1 breakout board is used. This plugs
straight into the GPIO connector, provides easy screw terminal connection
and protects the Raspberry Pi from accidental damage.
The Raspberry Pi is mounted on the Custard Pi B prototyping base.
www.sf-innovations.co.uk
Hardware connections
We are using pin 11 of the GPIO port. This is available on connector J2 of the
Custard Pi 1 and is labelled as pin 11. This is shown on the image below.
The 0V (or Gnd) connection is the centre pin of the 3 pin power
connector J3.
J3
J2
www.sf-innovations.co.uk
Connecting the led
When pin 11 is True (taken high) the voltage on it will be almost 3.3V.
This needs to go to the positive side of the led. This is the longer leg of
the led. The other side of the led goes to 0V (Gnd).
Note: If you connect 3.3V across an led it will burn out. So it is important
to limit the current. This is done by using a 330 ohm resistor, in series
with the led.
From pin 11
From 0V
330 ohm resistor
Long leg of led
www.sf-innovations.co.uk
Python program to flash led
Type in the program steps below. The text behind the # explains what the
code does, but you do not have to enter this.
Import RPi.GPIO as GPIO # import GPIO library
Import time #import time library
GPIO.setmode(GPIO.BOARD) #use board pin numbers
GPIO.setup(11, GPIO.OUT) #setup pin 11 as output
For x in range (0,10): #repeat for x=0 to 9
GPIO.output(11, True) #set pin 11 high
time.sleep(0.2) #wait 0.2 seconds
GPIO.output(11, False) #set pin 11 low
time.sleep(0.2) #wait 0.2 seconds
GPIO.cleanup() #tidy up GPIO port
Import sys #exit program
Sys.exit()
Save the file as “ledonoff.py”.
www.sf-innovations.co.uk
Download code
Trying out the program
Open LXTerminal and type “sudo python ledonoff.py” to run the program.
The led should flash ten time at a fairly fast rate.
Try changing the time.sleep line from 0.2 seconds to 0.5 seconds. When
you run the program, it should flash ten times, but fairly slowly this time.
Tip: To rerun the program, press the upwards arrow to re-enter the last
command on the screen and then press return to run it.
Now change the x in range command from 0,10 to 0,5 to flash the led just 5
times.
Well done. You have just managed to write some Python code to flash an
led.
www.sf-innovations.co.uk
Reading a switch
We are going to wire a switch to pin 12 of the GPIO port only flash the led
when this is pressed.
....... (same first 3 lines as before)
GPIO.setup(11, GPIO.OUT) #setup pin 11 as output
GPIO.setup(12, GPIO.IN, pull_up_dpwn=GPIO.PUD_UP) #pull up resistor
While True: #repeat forever
input1=GPIO.input(12) #read status of pin 12 into “input1”
if input1==False: #is pin 12 false (low)
print “button pressed” #then button is pressed
For x in range (0,10): #repeat for x=0 to 9
GPIO.output(11, True) #set pin 11 high
time.sleep(0.2) #wait 0.2 seconds
GPIO.output(11, False) #set pin 11 low
time.sleep(0.2) #wait 0.2 seconds
Note: The indentation is important in Python.
www.sf-innovations.co.uk
Download code
Hardware setup
The picture below shows the switch set-up. One side of it is connected to pin
12 of the Custard Pi boards. The other side is connected to the 0V (GND)
connection.
The pull up option used when setting up pin 12 as an input keeps this high,
unless pulled low by the external switch.
TO 0V
Pin 12
www.sf-innovations.co.uk
Trying out the program
Save the file as “ledonoffsw.py” and then run from LXTerminal by typing
“sudo python ledonoffsw.py at the command line prompt.
Whenever the switch is pressed, the led should flash 10 times.
To come out of this program loop, press CTRL & C at the same time.
See if you can add another switch and modify the program to terminate
when this second switch is pressed instead of having to use CTRL & C.
www.sf-innovations.co.uk
Summary
Hope this presentation has been useful in getting started with Python on
the Raspberry Pi. The book “Programming the Raspberry Pi” by Simon
Monk is a useful introduction to Python.
Keep an eye on our website www.sf-innovations.co.uk for any updates to
this presentation, new Custard Pi layers or new presentations.
www.sf-innovations.co.uk

More Related Content

PDF
IoT and m2m
pavan penugonda
 
PPTX
Final year project presentation IOT Based home security system
SarmadMalik18
 
PDF
Chapter 7
pavan penugonda
 
PDF
IoT Physical Devices and End Points.pdf
GVNSK Sravya
 
PPTX
Iot architecture
Niranjan Kumar
 
PPT
Seminar on Home Automation Using Raspberry Pi
Bittu Kumar
 
PPTX
IOT Platform Design Methodology
poonam kumawat
 
PDF
Iot lab manual new
Dr. Radhey Shyam
 
IoT and m2m
pavan penugonda
 
Final year project presentation IOT Based home security system
SarmadMalik18
 
Chapter 7
pavan penugonda
 
IoT Physical Devices and End Points.pdf
GVNSK Sravya
 
Iot architecture
Niranjan Kumar
 
Seminar on Home Automation Using Raspberry Pi
Bittu Kumar
 
IOT Platform Design Methodology
poonam kumawat
 
Iot lab manual new
Dr. Radhey Shyam
 

What's hot (20)

PDF
IoT Connectivity
Hitesh Mohapatra
 
PPTX
IoT Network Technologies
Sayed Chhattan Shah
 
PPTX
Introduction to IoT (Internet of Things)
Octal Info Solution Pte Ltd
 
PPTX
Cloud of things (IoT + Cloud Computing)
Zakaria Hossain
 
PPTX
Internet of things
Naiyer Khan
 
PPTX
Iot architecture
Anam Iqbal
 
PPTX
IOT PROTOCOLS.pptx
DRREC
 
PPT
Case study of digital camera
Radhakrishna Singh
 
PPTX
Internet of Things (IoT) - Introduction ppt
sutrishnakar1995
 
PDF
Building Blocks for IoT Devices
Anil Gorthy
 
PPTX
Defuzzification
Dr. C.V. Suresh Babu
 
PDF
Introduction to IoT Architecture
Emertxe Information Technologies Pvt Ltd
 
PPTX
Arduino course
Ahmed Shelbaya
 
PDF
IoT Communication Protocols
Pradeep Kumar TS
 
PPTX
Raspberry Pi
Vijay Vishwakarma
 
PPTX
Raspberry Pi (Introduction)
Mandeesh Singh
 
PPTX
Internet of things (IoT)
Prakash Honnur
 
PPTX
Ppt 3 - IOT logic design
udhayakumarc1
 
PPTX
Basics of arduino uno
Rahat Sood
 
PPTX
Home automation using wifi
Khairunnisa Naaz
 
IoT Connectivity
Hitesh Mohapatra
 
IoT Network Technologies
Sayed Chhattan Shah
 
Introduction to IoT (Internet of Things)
Octal Info Solution Pte Ltd
 
Cloud of things (IoT + Cloud Computing)
Zakaria Hossain
 
Internet of things
Naiyer Khan
 
Iot architecture
Anam Iqbal
 
IOT PROTOCOLS.pptx
DRREC
 
Case study of digital camera
Radhakrishna Singh
 
Internet of Things (IoT) - Introduction ppt
sutrishnakar1995
 
Building Blocks for IoT Devices
Anil Gorthy
 
Defuzzification
Dr. C.V. Suresh Babu
 
Introduction to IoT Architecture
Emertxe Information Technologies Pvt Ltd
 
Arduino course
Ahmed Shelbaya
 
IoT Communication Protocols
Pradeep Kumar TS
 
Raspberry Pi
Vijay Vishwakarma
 
Raspberry Pi (Introduction)
Mandeesh Singh
 
Internet of things (IoT)
Prakash Honnur
 
Ppt 3 - IOT logic design
udhayakumarc1
 
Basics of arduino uno
Rahat Sood
 
Home automation using wifi
Khairunnisa Naaz
 
Ad

Viewers also liked (14)

PPT
Raspberrypi best ppt
SOMRAJ GAUTAM
 
PPTX
10 Great Tips for Business Owners
Seggy Segaran
 
PPTX
Custard pi 7 user information
Seggy Segaran
 
PPTX
Raspberry Pi Base - A flexible support frame for Raspberry Pi projects
Seggy Segaran
 
PPTX
MemoryPAT
Seggy Segaran
 
PPTX
溫溼度數據統計
裕凱 夏
 
PPTX
Python and the internet of things
Adam Englander
 
PPTX
Basic Electronics - Ohm's Law
Seggy Segaran
 
PPTX
Basic Electronics - Resistors
Seggy Segaran
 
PPTX
Python in raspberry pi
Sudar Muthu
 
PDF
MicroPython簡介
Max Lai
 
PDF
Gettiing Started with IoT using Raspberry Pi and Python
Martin Christen
 
PPT
Raspberry pi : an introduction
LTG Oxford
 
PPT
Raspberry pi
Anija Nair
 
Raspberrypi best ppt
SOMRAJ GAUTAM
 
10 Great Tips for Business Owners
Seggy Segaran
 
Custard pi 7 user information
Seggy Segaran
 
Raspberry Pi Base - A flexible support frame for Raspberry Pi projects
Seggy Segaran
 
MemoryPAT
Seggy Segaran
 
溫溼度數據統計
裕凱 夏
 
Python and the internet of things
Adam Englander
 
Basic Electronics - Ohm's Law
Seggy Segaran
 
Basic Electronics - Resistors
Seggy Segaran
 
Python in raspberry pi
Sudar Muthu
 
MicroPython簡介
Max Lai
 
Gettiing Started with IoT using Raspberry Pi and Python
Martin Christen
 
Raspberry pi : an introduction
LTG Oxford
 
Raspberry pi
Anija Nair
 
Ad

Similar to Raspberry Pi Using Python (20)

PPTX
Raspberry pi led blink
vishal choudhary
 
PPTX
[5]投影片 futurewad樹莓派研習會 141218
CAVEDU Education
 
PDF
4. GPIO Access
Mayank Joneja
 
PPTX
910383538.pptxnnnnnnnnnnnnnnnnnnnnnnnnnnnn
divijareddy0502
 
PDF
Getting Started With Raspberry Pi - UCSD 2013
Tom Paulus
 
PPT
RaspberryPI PPT WITH ALL THE DETAILS OF PROGRAMMING
Asif Iqbal
 
PDF
DeviceHub - First steps using Intel Edison
Gabriel Arnautu
 
PPTX
Python-in-Embedded-systems.pptx
TuynLCh
 
PDF
Hands on Raspberry Pi - Creative Technologists
bennuttall
 
PDF
Getting Started with Raspberry Pi - USC 2013
Tom Paulus
 
PPTX
Introduction to pcDuino
Jingfeng Liu
 
PDF
Raspberry Pi 4.pdf
Engineering Funda
 
PDF
manual_2020_Cyber Physical System.pdf
ssuserc5ee4c
 
PDF
Raspberry Pi GPIO Tutorial - Make Your Own Game Console
RICELEEIO
 
PPTX
ScratchGPIO, Raspberry Pi & BerryClip
David Dryden
 
PPTX
pcDuino Presentation at SparkFun
Jingfeng Liu
 
ODP
OpenGurukul : Language : Python
Open Gurukul
 
ODP
Introduction to Raspberry Pi and GPIO
Kris Findlay
 
PPTX
Introduction to Python Programming – Part I.pptx
shakkarikondas
 
PDF
Raspberry pi pico projects raspberry pi projects
Ismailkhan77481
 
Raspberry pi led blink
vishal choudhary
 
[5]投影片 futurewad樹莓派研習會 141218
CAVEDU Education
 
4. GPIO Access
Mayank Joneja
 
910383538.pptxnnnnnnnnnnnnnnnnnnnnnnnnnnnn
divijareddy0502
 
Getting Started With Raspberry Pi - UCSD 2013
Tom Paulus
 
RaspberryPI PPT WITH ALL THE DETAILS OF PROGRAMMING
Asif Iqbal
 
DeviceHub - First steps using Intel Edison
Gabriel Arnautu
 
Python-in-Embedded-systems.pptx
TuynLCh
 
Hands on Raspberry Pi - Creative Technologists
bennuttall
 
Getting Started with Raspberry Pi - USC 2013
Tom Paulus
 
Introduction to pcDuino
Jingfeng Liu
 
Raspberry Pi 4.pdf
Engineering Funda
 
manual_2020_Cyber Physical System.pdf
ssuserc5ee4c
 
Raspberry Pi GPIO Tutorial - Make Your Own Game Console
RICELEEIO
 
ScratchGPIO, Raspberry Pi & BerryClip
David Dryden
 
pcDuino Presentation at SparkFun
Jingfeng Liu
 
OpenGurukul : Language : Python
Open Gurukul
 
Introduction to Raspberry Pi and GPIO
Kris Findlay
 
Introduction to Python Programming – Part I.pptx
shakkarikondas
 
Raspberry pi pico projects raspberry pi projects
Ismailkhan77481
 

Recently uploaded (20)

PDF
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
 
PDF
Automating ArcGIS Content Discovery with FME: A Real World Use Case
Safe Software
 
PDF
REPORT: Heating appliances market in Poland 2024
SPIUG
 
PPTX
IoT Sensor Integration 2025 Powering Smart Tech and Industrial Automation.pptx
Rejig Digital
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PDF
Brief History of Internet - Early Days of Internet
sutharharshit158
 
PDF
Oracle AI Vector Search- Getting Started and what's new in 2025- AIOUG Yatra ...
Sandesh Rao
 
PDF
Doc9.....................................
SofiaCollazos
 
PPTX
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
PDF
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
Artjoker Software Development Company
 
PDF
Software Development Methodologies in 2025
KodekX
 
PDF
Structs to JSON: How Go Powers REST APIs
Emily Achieng
 
PDF
Advances in Ultra High Voltage (UHV) Transmission and Distribution Systems.pdf
Nabajyoti Banik
 
PPTX
The-Ethical-Hackers-Imperative-Safeguarding-the-Digital-Frontier.pptx
sujalchauhan1305
 
PDF
Software Development Company | KodekX
KodekX
 
PPTX
OA presentation.pptx OA presentation.pptx
pateldhruv002338
 
PDF
How-Cloud-Computing-Impacts-Businesses-in-2025-and-Beyond.pdf
Artjoker Software Development Company
 
PDF
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 
PDF
Using Anchore and DefectDojo to Stand Up Your DevSecOps Function
Anchore
 
PDF
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
Principled Technologies
 
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
 
Automating ArcGIS Content Discovery with FME: A Real World Use Case
Safe Software
 
REPORT: Heating appliances market in Poland 2024
SPIUG
 
IoT Sensor Integration 2025 Powering Smart Tech and Industrial Automation.pptx
Rejig Digital
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
Brief History of Internet - Early Days of Internet
sutharharshit158
 
Oracle AI Vector Search- Getting Started and what's new in 2025- AIOUG Yatra ...
Sandesh Rao
 
Doc9.....................................
SofiaCollazos
 
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
Artjoker Software Development Company
 
Software Development Methodologies in 2025
KodekX
 
Structs to JSON: How Go Powers REST APIs
Emily Achieng
 
Advances in Ultra High Voltage (UHV) Transmission and Distribution Systems.pdf
Nabajyoti Banik
 
The-Ethical-Hackers-Imperative-Safeguarding-the-Digital-Frontier.pptx
sujalchauhan1305
 
Software Development Company | KodekX
KodekX
 
OA presentation.pptx OA presentation.pptx
pateldhruv002338
 
How-Cloud-Computing-Impacts-Businesses-in-2025-and-Beyond.pdf
Artjoker Software Development Company
 
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 
Using Anchore and DefectDojo to Stand Up Your DevSecOps Function
Anchore
 
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
Principled Technologies
 

Raspberry Pi Using Python

  • 1. RASPBERRY PI – USING PYTHON 2ND JUNE 2013 www.sf-innovations.co.uk
  • 2. IDLE3 – Python Shell Launch IDLE3 from the Raspberry GUI. This will allow us to experiment with Python commands. At the >>> prompt type print („hello world‟) You will see “hello world” on the screen. At the >>> prompt type 20 + 5 You will see “25” on the screen. This is a way of executing Python commands immediately. A programme is simply a collection of commands executed consecutively. www.sf-innovations.co.uk
  • 3. Writing a Python program Under the file tab in IDLE3, click on new window. You are now ready to write a program. For now type the following exactly. For x in range (1,10); y=x * x print “x=“, x, “square of x=“, y Under the file tab, click on save and call the file “squarex”. Launch LXTerminal from the Raspberry Pi GUI. This will bring you back to the Linux command line prompt: pi@raspberrypi - $ Type “sudo python squarex.py” to run your program. You will see X = 1 square of x = 1 X = 2 square of x = 4 ... X = 9 square of x = 81 That‟s it. You‟ve written your first Python program. www.sf-innovations.co.uk
  • 4. Some notes on Python You can run programs using the “run module” option under the run tab. However when I tried this I got programming syntax errors. When I ran the same program using the command line prompt, it worked fine. Sudo – stands for “super user do”. With Linux, this gives you the right privileges to run a Python program. Comments - If you want to add comments to your program, then use # at the start. For example, you could have started the program on the previous page with # program to work out squares of numbers from 1 to 9. Using libraries – Many standard functions are available as libraries in Python. These can be used by using the “import” command and will save you a lot of time in programming. For example “import time” will bring in a library which can be used for time delays. “import random” will bring in a random number generator. www.sf-innovations.co.uk
  • 5. Turning an led on and off We are going to use the GPIO port on the Raspberry Pi for this. To make the connection easier, the Custard Pi 1 breakout board is used. This plugs straight into the GPIO connector, provides easy screw terminal connection and protects the Raspberry Pi from accidental damage. The Raspberry Pi is mounted on the Custard Pi B prototyping base. www.sf-innovations.co.uk
  • 6. Hardware connections We are using pin 11 of the GPIO port. This is available on connector J2 of the Custard Pi 1 and is labelled as pin 11. This is shown on the image below. The 0V (or Gnd) connection is the centre pin of the 3 pin power connector J3. J3 J2 www.sf-innovations.co.uk
  • 7. Connecting the led When pin 11 is True (taken high) the voltage on it will be almost 3.3V. This needs to go to the positive side of the led. This is the longer leg of the led. The other side of the led goes to 0V (Gnd). Note: If you connect 3.3V across an led it will burn out. So it is important to limit the current. This is done by using a 330 ohm resistor, in series with the led. From pin 11 From 0V 330 ohm resistor Long leg of led www.sf-innovations.co.uk
  • 8. Python program to flash led Type in the program steps below. The text behind the # explains what the code does, but you do not have to enter this. Import RPi.GPIO as GPIO # import GPIO library Import time #import time library GPIO.setmode(GPIO.BOARD) #use board pin numbers GPIO.setup(11, GPIO.OUT) #setup pin 11 as output For x in range (0,10): #repeat for x=0 to 9 GPIO.output(11, True) #set pin 11 high time.sleep(0.2) #wait 0.2 seconds GPIO.output(11, False) #set pin 11 low time.sleep(0.2) #wait 0.2 seconds GPIO.cleanup() #tidy up GPIO port Import sys #exit program Sys.exit() Save the file as “ledonoff.py”. www.sf-innovations.co.uk Download code
  • 9. Trying out the program Open LXTerminal and type “sudo python ledonoff.py” to run the program. The led should flash ten time at a fairly fast rate. Try changing the time.sleep line from 0.2 seconds to 0.5 seconds. When you run the program, it should flash ten times, but fairly slowly this time. Tip: To rerun the program, press the upwards arrow to re-enter the last command on the screen and then press return to run it. Now change the x in range command from 0,10 to 0,5 to flash the led just 5 times. Well done. You have just managed to write some Python code to flash an led. www.sf-innovations.co.uk
  • 10. Reading a switch We are going to wire a switch to pin 12 of the GPIO port only flash the led when this is pressed. ....... (same first 3 lines as before) GPIO.setup(11, GPIO.OUT) #setup pin 11 as output GPIO.setup(12, GPIO.IN, pull_up_dpwn=GPIO.PUD_UP) #pull up resistor While True: #repeat forever input1=GPIO.input(12) #read status of pin 12 into “input1” if input1==False: #is pin 12 false (low) print “button pressed” #then button is pressed For x in range (0,10): #repeat for x=0 to 9 GPIO.output(11, True) #set pin 11 high time.sleep(0.2) #wait 0.2 seconds GPIO.output(11, False) #set pin 11 low time.sleep(0.2) #wait 0.2 seconds Note: The indentation is important in Python. www.sf-innovations.co.uk Download code
  • 11. Hardware setup The picture below shows the switch set-up. One side of it is connected to pin 12 of the Custard Pi boards. The other side is connected to the 0V (GND) connection. The pull up option used when setting up pin 12 as an input keeps this high, unless pulled low by the external switch. TO 0V Pin 12 www.sf-innovations.co.uk
  • 12. Trying out the program Save the file as “ledonoffsw.py” and then run from LXTerminal by typing “sudo python ledonoffsw.py at the command line prompt. Whenever the switch is pressed, the led should flash 10 times. To come out of this program loop, press CTRL & C at the same time. See if you can add another switch and modify the program to terminate when this second switch is pressed instead of having to use CTRL & C. www.sf-innovations.co.uk
  • 13. Summary Hope this presentation has been useful in getting started with Python on the Raspberry Pi. The book “Programming the Raspberry Pi” by Simon Monk is a useful introduction to Python. Keep an eye on our website www.sf-innovations.co.uk for any updates to this presentation, new Custard Pi layers or new presentations. www.sf-innovations.co.uk