SlideShare una empresa de Scribd logo
1 de 40
-a 35 dollar mini computer
Raspberry-pi
An Introduction
Who Am I ?
I am Pradip Bhandari.
Member of Robotics Club
Final Year Student
Electronics And Communication Engineering
Familiar with Raspberry pi for more than two years
I love Hardware and Software more than a girl
Contact info : “masterpradipg”
Handling the RP
-The Raspberry Pi was built to be used, but not abused. Every
Printed Circuit Board (PCB) should be handled with care.
-Handle the RP only by the edges of the board itself.
Avoid touching or holding any of the components on the
board.
-Rough handling can cause solder points to fail and may result in
short circuits, but be careful with the GPIO pins as well.
Agenda
 Introduction To Raspberry Pi
 Features
 How it differs from other Board?
 Applications
 Setting Up Hardware Connection
 Operating System choice
 Demo
 GPIO
 Simple GPIO Python Programming
 Demo
What is the Raspberry Pi?
Small single-board computer, Credit card size and costs approximately £35
Developed by Raspberry pi foundation UK with the intention of promoting the
teaching of basic computer science in schools
It has all possible features of modern computers
Model: Rpi 1 Model A, A+, Rpi 1 Model B, Rpi 1 Model B+(2012)
and Rpi 2 model B(2015)
Introduction
Raspberry Pi Features
 CPU 700MHz ARM1176-JZFS
 GPU Broadcom VideoCore IV @250 MHz
 Memory 512MB LPDDR2-800
 2 built in USB hub
 Video HDMI, composite
 Audio HDMI, stereo analog
 Ethernet cable
 5V Micro USB
 Fanless
 It does not include a built-in hard disk , but uses an SD card for
booting and long-term storage.
Features
Raspberry Pi
Raspberry Pi
Micro USB
Power
Raspberry Pi
Micro USB
Power
HDMI
Raspberry Pi
Micro USB
Power
HDMI
ETHERNET
Raspberry Pi
Micro USB
Power
HDMI
ETHERNET
2xUSB 2.0
Raspberry Pi
Micro USB
Power
HDMI
ETHERNET
2xUSB 2.0
AUDIO
Raspberry Pi
Micro USB
Power
HDMI
ETHERNET
2xUSB 2.0
AUDIO
VIDEO
Raspberry Pi
Micro USB
Power
HDMI
ETHERNET
2xUSB 2.0
AUDIO
VIDEO
GPIO
Raspberry Pi
Micro USB
Power
HDMI
ETHERNET
2xUSB 2.0
AUDIO
VIDEO
GPIO
SD CARD
Raspberry Pi
Micro USB
Power
HDMI
ETHERNET
2xUSB 2.0
AUDIO
VIDEO
GPIO
SD CARD
Camera connector
Raspberry Pi
Micro USB
Power
HDMI
ETHERNET
2xUSB 2.0
AUDIO
VIDEO
GPIO
SD CARD
Screen Panel Connector
(TFT touch Screen)
Camera connector
Micro USB power port
The micro USB power port is used to power the Raspberry Pi device.
HDMI port
The HDMI output is used to plug into a modern television or monitor.
Ethernet port
The Ethernet port is used to connect the Raspberry Pi to the internet or a local network.
USB ports
USB 2.0 ports are used to plug in a keyboard, mouse, web cam, external hubs etc.
Audio output
The audio output can be used to plug into an external amplifier or an audio docking station.
GPIO headers
The GPIO headers are used to connect the Raspberry Pi to other hardware devices. For example, they can be used to
connect to LEDs, motors and other electronic components.
video output
The video output is used to connect to an older type television.
Ingredients
1 x SD Card - 4GB or above
1 x Monitor or TV with a HDMI cable
1 x Mouse
1 x Keyboard
1 x Ethernet LAN cable (optional - needed if you require a network connection)
1 x Micro USB power supply (many mobile phone chargers will work but it must supply 5V and have at least 700mA)
Note: Some monitors do not have HDMI ports – in this situation you will need to have
an adapter – you can get a HDMI to DVI or a HDMI to VGA.
Ingredients
How it differs from other Board
Low power consumption
PC takes 65-250W
Laptop takes 15-60W
Raspberry Pi 5v,700mA=3.5W
Low cost
Small in size
What Can You Do With It?
Raspberry Pi is a flexible platform, there’s no single way to use it, Whether you just want to watch videos
and surf the web, or you want to hack, learn, and make with the board for fun, utility, and experimentation
General purpose computing
• graphical desktop environment with a web browser
• install a wide variety of free software like LibreOffice, Games, etc.
Learning to program
• Raspberry Pi is meant as an educational tool to encourage kids to experiment with computers, it comes
preloaded with interpreters and compilers for many different programming languages
• You can write programs for your Raspberry Pi in many different languages
• programming languages like Python, C, Ruby, Java, Perl etc.
Project platform
• The Raspberry Pi differentiates itself from a regular computer not only in its price and size, but also
because of its ability to integrate with electronics projects
Applications
Home Automation System.
Home Security System.
HD surveillance Camera.
Media Center.
We can develop what we can think using GPIO.
Applications
• Can be used for making super
computers
Applications
Raspberry Pi Medical Device Input Shield
Applications
• Solar Raspberry Pi
Power Pack
Applications
• It can make your Old TV in to a smart TV. (You can play
Videos, 3D Games, Music, Browse Internet and much
more.
• Raspberry Pi can Act as Full HD 1080p Media Player.
• You can connect a Monitor, Keyboard and Mouse and
use it as a normal computer.
• Its Graphics Capabilities is better than Apple
Products(2012).
Setting Up Hardware Connection
Basic Setup
Connect Monitor via HDMI or Video Out
Connect Mouse and Keyboard
Connect OS loaded Memory card
Power it up
OS choices
● Raspbian wheezy(free, based on Debian )
● ArchLinusArm
● PiDora(Fedora remix for pi
Loading OS in Memory Card
A software called “Win32DiskImager” is needed
Install and run it
1 2
3
1. Browse OS
2. Select Drive
3. Write it
4. After few minutes your
memory card will be
ready
DEMO
When promoted for username and password enter default value as
username: pi
Password: raspberry
Now we will be at Default console
To start Graphical User interface(GUI) type command “startx” and press enter
• It is a generic pin on an Integrated circuit
whose behavior, including wheather it is
an input or output pin, can be controlled
by user at the run time
• GPIO pin have no special purpose defined,
and go unused by default
General Purpose I/p O/p(GPIO)
General purpose digital inputs/outputs
• Outputs used to control external circuits
– Switch leds on/off
– Switch relays on/off
– Actuate solenoid
• Inputs used to monitor status
– Read switch status
– Alarm inputs
RPi General Purpose IO (GPIO) Pins
• 17 GPIO pins brought out onto the P1 header
• most have alternated functions
• two pins for UART; two for I2C; six for SPI
• All 17 pins can be GPIO (i.e., INPUT or OUTPUT)
• all support interrupts
• internal pull-ups & pull-downs for each pin
• I2C pins have onboard pull-ups
• using them for GPIO may not work
• Pins are 3.3V not 5V like on the Arduino
• They are connected directly to the
Broadcom chip
• Sending 5V to a pin may kill the Pi
• Maximum permitted current draw from
a 3.3V pin is 50mA
Image credit: http://elinux.org/RPi_Low-level_peripherals
Simple LED connection
Our actual connection:
Led1: cathode to Ground
anode to any GPIO
Led2: cathode to Ground
anode to any GPIO
Programming
• By default, supporting Python as the educational
language.
• Any language which will compile for ARMv6 can
be used with the Raspberry Pi, though; so you’re
not limited to using Python.
Python
• To program the GPIO ports in Python, we need to install a very useful Python 2
library called Rpi.GPIO. This module gives us a simple to use Python library that will
let us control the GPIO pins.
• To install RPi.GPIO, we first need to install the Python Development toolkit that
RPi.GPIO requires.
• To do this enter the following command into LXTerminal:
sudo apt-get install python-dev
• Then to install Rpi.GPIO itself type:
sudo apt-get install python-rpi.gpio
• We will probably be prompted to confirm by entering 'Y'.
Simple python program to blink LED
import RPi.GPIO as GPIO #import python 2 GPIO library
from time import sleep #import time library to use sleep
GPIO.setmode(GPIO.BCM) #initializing BCM
GPIO.setup(7,GPIO.OUT) #set up GPIO pin 7 to out
GPIO.setup(8,GPIO.OUT) #set up GPIO pin 8 to out
While 1:
GPIO.output(7,0) #set GPIO pin 7 to level 0
GPIO.output(8,1) #set GPIO pin 8 to level 1
sleep(1)
GPIO.output(7,1) #set GPIO pin 7 to level 1
GPIO.output(8,0) #set GPIO pin 8 to level 0
Sleep(1)
DEMO
LED blinking using Python
ANY QUERIES ?

Más contenido relacionado

La actualidad más candente

Introduction to raspberry pi
Introduction to raspberry piIntroduction to raspberry pi
Introduction to raspberry pipraveen_23
 
Raspberry Pi Session - 22_11_2014
Raspberry Pi Session - 22_11_2014Raspberry Pi Session - 22_11_2014
Raspberry Pi Session - 22_11_2014Mandeesh Singh
 
Raspberry Pi Technology
Raspberry Pi TechnologyRaspberry Pi Technology
Raspberry Pi TechnologyRavi Basil
 
Getting Started with Raspberry Pi
Getting Started with Raspberry PiGetting Started with Raspberry Pi
Getting Started with Raspberry Piyeokm1
 
Raspberry Pi Introduction
Raspberry Pi IntroductionRaspberry Pi Introduction
Raspberry Pi IntroductionMichal Sedlak
 
Raspberrypi best ppt
Raspberrypi best ppt Raspberrypi best ppt
Raspberrypi best ppt SOMRAJ GAUTAM
 
My presentation raspberry pi
My presentation raspberry piMy presentation raspberry pi
My presentation raspberry piHusainBhaldar21
 
Introduction to Arduino Hardware and Programming
Introduction to Arduino Hardware and ProgrammingIntroduction to Arduino Hardware and Programming
Introduction to Arduino Hardware and ProgrammingEmmanuel Obot
 
IoT Programming on the Raspberry Pi
IoT Programming on the Raspberry PiIoT Programming on the Raspberry Pi
IoT Programming on the Raspberry PiDamien Magoni
 
Lesson sample introduction to arduino
Lesson sample   introduction to arduinoLesson sample   introduction to arduino
Lesson sample introduction to arduinoBetsy Eng
 

La actualidad más candente (20)

Raspberry Pi
 Raspberry Pi  Raspberry Pi
Raspberry Pi
 
Introduction to raspberry pi
Introduction to raspberry piIntroduction to raspberry pi
Introduction to raspberry pi
 
Raspberry Pi Session - 22_11_2014
Raspberry Pi Session - 22_11_2014Raspberry Pi Session - 22_11_2014
Raspberry Pi Session - 22_11_2014
 
Raspberry Pi
Raspberry PiRaspberry Pi
Raspberry Pi
 
Raspberry Pi Technology
Raspberry Pi TechnologyRaspberry Pi Technology
Raspberry Pi Technology
 
Raspberry pi
Raspberry pi Raspberry pi
Raspberry pi
 
Introduction to Raspberry PI
Introduction to Raspberry PIIntroduction to Raspberry PI
Introduction to Raspberry PI
 
Rasp berry Pi
Rasp berry PiRasp berry Pi
Rasp berry Pi
 
Raspberry pi
Raspberry piRaspberry pi
Raspberry pi
 
Getting Started with Raspberry Pi
Getting Started with Raspberry PiGetting Started with Raspberry Pi
Getting Started with Raspberry Pi
 
Raspberry Pi Introduction
Raspberry Pi IntroductionRaspberry Pi Introduction
Raspberry Pi Introduction
 
Raspberrypi best ppt
Raspberrypi best ppt Raspberrypi best ppt
Raspberrypi best ppt
 
Raspberry-Pi
Raspberry-PiRaspberry-Pi
Raspberry-Pi
 
Esp8266 basics
Esp8266 basicsEsp8266 basics
Esp8266 basics
 
My presentation raspberry pi
My presentation raspberry piMy presentation raspberry pi
My presentation raspberry pi
 
Raspberry pi
Raspberry piRaspberry pi
Raspberry pi
 
Introduction to Arduino Hardware and Programming
Introduction to Arduino Hardware and ProgrammingIntroduction to Arduino Hardware and Programming
Introduction to Arduino Hardware and Programming
 
IoT Programming on the Raspberry Pi
IoT Programming on the Raspberry PiIoT Programming on the Raspberry Pi
IoT Programming on the Raspberry Pi
 
Lesson sample introduction to arduino
Lesson sample   introduction to arduinoLesson sample   introduction to arduino
Lesson sample introduction to arduino
 
Raspberry pi
Raspberry pi Raspberry pi
Raspberry pi
 

Similar a Introduction To Raspberry Pi with Simple GPIO pin Control

Unit 6 - PART2.pptx
Unit 6 - PART2.pptxUnit 6 - PART2.pptx
Unit 6 - PART2.pptxBLACKSPAROW
 
Raspberry Pi - Unlocking New Ideas for Your Library
Raspberry Pi - Unlocking New Ideas for Your LibraryRaspberry Pi - Unlocking New Ideas for Your Library
Raspberry Pi - Unlocking New Ideas for Your LibraryBrian Pichman
 
Raspbeery Pi : An Introduction
Raspbeery Pi : An IntroductionRaspbeery Pi : An Introduction
Raspbeery Pi : An IntroductionVatsal N Shah
 
Raspberry Pi Introductory Lecture
Raspberry Pi Introductory LectureRaspberry Pi Introductory Lecture
Raspberry Pi Introductory LectureSyed Umaid Ahmed
 
IoT for data science Module 5 - Raspberry Pi.pptx
IoT for data science Module 5 - Raspberry Pi.pptxIoT for data science Module 5 - Raspberry Pi.pptx
IoT for data science Module 5 - Raspberry Pi.pptxMadhurimaDas52
 
MPMC presentation.pptx
MPMC presentation.pptxMPMC presentation.pptx
MPMC presentation.pptxSoundharya54
 
Raspberry Pi Free Session - 20_09_2014
Raspberry Pi Free Session - 20_09_2014Raspberry Pi Free Session - 20_09_2014
Raspberry Pi Free Session - 20_09_2014Mandeesh Singh
 
Internet of things aktu lab file
Internet of things  aktu lab fileInternet of things  aktu lab file
Internet of things aktu lab fileNitesh Dubey
 
Raspberry pi intro.
Raspberry pi intro.Raspberry pi intro.
Raspberry pi intro.Saiko Saiko
 
raspberry pi (generalised)
 raspberry pi (generalised) raspberry pi (generalised)
raspberry pi (generalised)Amit Dwivedi
 
Tac Presentation October 72014- Raspberry PI
Tac Presentation October 72014- Raspberry PITac Presentation October 72014- Raspberry PI
Tac Presentation October 72014- Raspberry PICliff Samuels Jr.
 
Presentation on Raspberry Pi by Sazzad H. IIUC
Presentation on Raspberry Pi by Sazzad H. IIUCPresentation on Raspberry Pi by Sazzad H. IIUC
Presentation on Raspberry Pi by Sazzad H. IIUCshssn7
 

Similar a Introduction To Raspberry Pi with Simple GPIO pin Control (20)

Raspberry pi
Raspberry piRaspberry pi
Raspberry pi
 
Unit 6 - PART2.pptx
Unit 6 - PART2.pptxUnit 6 - PART2.pptx
Unit 6 - PART2.pptx
 
Amity Raspberry Jam
Amity Raspberry JamAmity Raspberry Jam
Amity Raspberry Jam
 
Raspberry Pi - Unlocking New Ideas for Your Library
Raspberry Pi - Unlocking New Ideas for Your LibraryRaspberry Pi - Unlocking New Ideas for Your Library
Raspberry Pi - Unlocking New Ideas for Your Library
 
RASPBERRY Pi.pptx
RASPBERRY Pi.pptxRASPBERRY Pi.pptx
RASPBERRY Pi.pptx
 
Raspbeery Pi : An Introduction
Raspbeery Pi : An IntroductionRaspbeery Pi : An Introduction
Raspbeery Pi : An Introduction
 
Raspberry Pi Introductory Lecture
Raspberry Pi Introductory LectureRaspberry Pi Introductory Lecture
Raspberry Pi Introductory Lecture
 
IoT for data science Module 5 - Raspberry Pi.pptx
IoT for data science Module 5 - Raspberry Pi.pptxIoT for data science Module 5 - Raspberry Pi.pptx
IoT for data science Module 5 - Raspberry Pi.pptx
 
MPMC presentation.pptx
MPMC presentation.pptxMPMC presentation.pptx
MPMC presentation.pptx
 
Raspberry pi
Raspberry pi Raspberry pi
Raspberry pi
 
Raspberry Pi Free Session - 20_09_2014
Raspberry Pi Free Session - 20_09_2014Raspberry Pi Free Session - 20_09_2014
Raspberry Pi Free Session - 20_09_2014
 
Raspberry pi
Raspberry pi Raspberry pi
Raspberry pi
 
Raspberry pi
Raspberry piRaspberry pi
Raspberry pi
 
Internet of things aktu lab file
Internet of things  aktu lab fileInternet of things  aktu lab file
Internet of things aktu lab file
 
Raspberry pi intro.
Raspberry pi intro.Raspberry pi intro.
Raspberry pi intro.
 
Raaaaassspberry pi
Raaaaassspberry piRaaaaassspberry pi
Raaaaassspberry pi
 
raspberry pi (generalised)
 raspberry pi (generalised) raspberry pi (generalised)
raspberry pi (generalised)
 
Rassberry pi
Rassberry piRassberry pi
Rassberry pi
 
Tac Presentation October 72014- Raspberry PI
Tac Presentation October 72014- Raspberry PITac Presentation October 72014- Raspberry PI
Tac Presentation October 72014- Raspberry PI
 
Presentation on Raspberry Pi by Sazzad H. IIUC
Presentation on Raspberry Pi by Sazzad H. IIUCPresentation on Raspberry Pi by Sazzad H. IIUC
Presentation on Raspberry Pi by Sazzad H. IIUC
 

Último

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024The Digital Insurer
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Victor Rentea
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024The Digital Insurer
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...apidays
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfOverkill Security
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 

Último (20)

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdf
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 

Introduction To Raspberry Pi with Simple GPIO pin Control

  • 1. -a 35 dollar mini computer Raspberry-pi An Introduction
  • 2. Who Am I ? I am Pradip Bhandari. Member of Robotics Club Final Year Student Electronics And Communication Engineering Familiar with Raspberry pi for more than two years I love Hardware and Software more than a girl Contact info : “masterpradipg”
  • 3. Handling the RP -The Raspberry Pi was built to be used, but not abused. Every Printed Circuit Board (PCB) should be handled with care. -Handle the RP only by the edges of the board itself. Avoid touching or holding any of the components on the board. -Rough handling can cause solder points to fail and may result in short circuits, but be careful with the GPIO pins as well.
  • 4. Agenda  Introduction To Raspberry Pi  Features  How it differs from other Board?  Applications  Setting Up Hardware Connection  Operating System choice  Demo  GPIO  Simple GPIO Python Programming  Demo
  • 5. What is the Raspberry Pi? Small single-board computer, Credit card size and costs approximately £35 Developed by Raspberry pi foundation UK with the intention of promoting the teaching of basic computer science in schools It has all possible features of modern computers Model: Rpi 1 Model A, A+, Rpi 1 Model B, Rpi 1 Model B+(2012) and Rpi 2 model B(2015) Introduction
  • 6. Raspberry Pi Features  CPU 700MHz ARM1176-JZFS  GPU Broadcom VideoCore IV @250 MHz  Memory 512MB LPDDR2-800  2 built in USB hub  Video HDMI, composite  Audio HDMI, stereo analog  Ethernet cable  5V Micro USB  Fanless  It does not include a built-in hard disk , but uses an SD card for booting and long-term storage. Features
  • 15. Raspberry Pi Micro USB Power HDMI ETHERNET 2xUSB 2.0 AUDIO VIDEO GPIO SD CARD
  • 16. Raspberry Pi Micro USB Power HDMI ETHERNET 2xUSB 2.0 AUDIO VIDEO GPIO SD CARD Camera connector
  • 17. Raspberry Pi Micro USB Power HDMI ETHERNET 2xUSB 2.0 AUDIO VIDEO GPIO SD CARD Screen Panel Connector (TFT touch Screen) Camera connector
  • 18. Micro USB power port The micro USB power port is used to power the Raspberry Pi device. HDMI port The HDMI output is used to plug into a modern television or monitor. Ethernet port The Ethernet port is used to connect the Raspberry Pi to the internet or a local network. USB ports USB 2.0 ports are used to plug in a keyboard, mouse, web cam, external hubs etc. Audio output The audio output can be used to plug into an external amplifier or an audio docking station. GPIO headers The GPIO headers are used to connect the Raspberry Pi to other hardware devices. For example, they can be used to connect to LEDs, motors and other electronic components. video output The video output is used to connect to an older type television.
  • 19. Ingredients 1 x SD Card - 4GB or above 1 x Monitor or TV with a HDMI cable 1 x Mouse 1 x Keyboard 1 x Ethernet LAN cable (optional - needed if you require a network connection) 1 x Micro USB power supply (many mobile phone chargers will work but it must supply 5V and have at least 700mA) Note: Some monitors do not have HDMI ports – in this situation you will need to have an adapter – you can get a HDMI to DVI or a HDMI to VGA.
  • 21. How it differs from other Board Low power consumption PC takes 65-250W Laptop takes 15-60W Raspberry Pi 5v,700mA=3.5W Low cost Small in size
  • 22. What Can You Do With It? Raspberry Pi is a flexible platform, there’s no single way to use it, Whether you just want to watch videos and surf the web, or you want to hack, learn, and make with the board for fun, utility, and experimentation General purpose computing • graphical desktop environment with a web browser • install a wide variety of free software like LibreOffice, Games, etc. Learning to program • Raspberry Pi is meant as an educational tool to encourage kids to experiment with computers, it comes preloaded with interpreters and compilers for many different programming languages • You can write programs for your Raspberry Pi in many different languages • programming languages like Python, C, Ruby, Java, Perl etc. Project platform • The Raspberry Pi differentiates itself from a regular computer not only in its price and size, but also because of its ability to integrate with electronics projects
  • 23. Applications Home Automation System. Home Security System. HD surveillance Camera. Media Center. We can develop what we can think using GPIO.
  • 24. Applications • Can be used for making super computers
  • 25. Applications Raspberry Pi Medical Device Input Shield
  • 27. Applications • It can make your Old TV in to a smart TV. (You can play Videos, 3D Games, Music, Browse Internet and much more. • Raspberry Pi can Act as Full HD 1080p Media Player. • You can connect a Monitor, Keyboard and Mouse and use it as a normal computer. • Its Graphics Capabilities is better than Apple Products(2012).
  • 28. Setting Up Hardware Connection Basic Setup Connect Monitor via HDMI or Video Out Connect Mouse and Keyboard Connect OS loaded Memory card Power it up
  • 29. OS choices ● Raspbian wheezy(free, based on Debian ) ● ArchLinusArm ● PiDora(Fedora remix for pi
  • 30. Loading OS in Memory Card A software called “Win32DiskImager” is needed Install and run it 1 2 3 1. Browse OS 2. Select Drive 3. Write it 4. After few minutes your memory card will be ready
  • 31. DEMO When promoted for username and password enter default value as username: pi Password: raspberry Now we will be at Default console To start Graphical User interface(GUI) type command “startx” and press enter
  • 32. • It is a generic pin on an Integrated circuit whose behavior, including wheather it is an input or output pin, can be controlled by user at the run time • GPIO pin have no special purpose defined, and go unused by default General Purpose I/p O/p(GPIO)
  • 33. General purpose digital inputs/outputs • Outputs used to control external circuits – Switch leds on/off – Switch relays on/off – Actuate solenoid • Inputs used to monitor status – Read switch status – Alarm inputs
  • 34. RPi General Purpose IO (GPIO) Pins • 17 GPIO pins brought out onto the P1 header • most have alternated functions • two pins for UART; two for I2C; six for SPI • All 17 pins can be GPIO (i.e., INPUT or OUTPUT) • all support interrupts • internal pull-ups & pull-downs for each pin • I2C pins have onboard pull-ups • using them for GPIO may not work • Pins are 3.3V not 5V like on the Arduino • They are connected directly to the Broadcom chip • Sending 5V to a pin may kill the Pi • Maximum permitted current draw from a 3.3V pin is 50mA Image credit: http://elinux.org/RPi_Low-level_peripherals
  • 35. Simple LED connection Our actual connection: Led1: cathode to Ground anode to any GPIO Led2: cathode to Ground anode to any GPIO
  • 36. Programming • By default, supporting Python as the educational language. • Any language which will compile for ARMv6 can be used with the Raspberry Pi, though; so you’re not limited to using Python.
  • 37. Python • To program the GPIO ports in Python, we need to install a very useful Python 2 library called Rpi.GPIO. This module gives us a simple to use Python library that will let us control the GPIO pins. • To install RPi.GPIO, we first need to install the Python Development toolkit that RPi.GPIO requires. • To do this enter the following command into LXTerminal: sudo apt-get install python-dev • Then to install Rpi.GPIO itself type: sudo apt-get install python-rpi.gpio • We will probably be prompted to confirm by entering 'Y'.
  • 38. Simple python program to blink LED import RPi.GPIO as GPIO #import python 2 GPIO library from time import sleep #import time library to use sleep GPIO.setmode(GPIO.BCM) #initializing BCM GPIO.setup(7,GPIO.OUT) #set up GPIO pin 7 to out GPIO.setup(8,GPIO.OUT) #set up GPIO pin 8 to out While 1: GPIO.output(7,0) #set GPIO pin 7 to level 0 GPIO.output(8,1) #set GPIO pin 8 to level 1 sleep(1) GPIO.output(7,1) #set GPIO pin 7 to level 1 GPIO.output(8,0) #set GPIO pin 8 to level 0 Sleep(1)