SlideShare a Scribd company logo
Raspberry Pi
Arduino
Getting Started with …
http://www.slideshare.net/chadmairn
@cmairn
Agenda
• Learn what an Arduino and Raspberry Pi are and what they can do
• Explore the Arduino and Raspberry Pi Development Environments
• See innovative Arduino and Raspberry Pi projects
• Start a resource kit for future project ideas
What’s the difference?
• A mini-computer
• Requires an operating system
• Has a micro-SD card for storage
• Built-in Ethernet
• Plug in a keyboard and monitor
• Can run Linux
• Is very cool!
Raspberry Pi
• A microcontroller (i.e., a single component of a computer)
• It is an “open-source electronics prototyping platform”,
that is intended for people interested in “creating
interactive objects or environments.”
• You build the circuits and interfaces for interaction
• USB port used to upload and communicate with Arduino
sketches (i.e., software programs that communicate with
the outside world. Sketches are the logic behind Arduino
projects)
• Networking requires an add-on “shield”
• It is also very cool!
Arduino
Source: http://goo.gl/ed8sxS
Which one should you get?
Why not both? AlaMode for Raspberry Pi
More info: http://goo.gl/6B2Pnk
http://www.arduino.cc/en/Main/ArduinoStarterKit
is about $85.
15 projects included in the kit:
01 GET TO KNOW YOUR TOOLS an introduction to the concepts you'll need to use this kit
02 SPACESHIP INTERFACE design to control panel for your startship
03 LOVE-O-METER measure how hot-blooded you are
04 COLOR MIXING LAMP produce any color with a lamp that uses light as an input
05 MOOD CUE clue people in to how you're doing
06 LIGHT THEREMIN create a musical instrument you play by waving your hands
07 KEYBOARD INSTRUMENT play music and make some noise with this keyboard
08 DIGITAL HOURGLASS a light-up hourglass that can stop you from working too much
09 MOTORIZED PINWHEEL a color wheel that will have your head spinning
10 ZOETROPE create a mechanical animation you can play forward or reverse
11 CRYSTAL BALL a mystical tour to answer all your tough question
12 KNOCK LOCK tap out the secret code to open the door
13 TOUCHY-FEEL LAMP a lamp that responds to your touch
14 TWEAK THE ARDUINO LOGO control your personal computer from your Arduino
15 HACKING BUTTONS create a master control for all your devices!
More info: http://goo.gl/Rz5ZaU
The Arduino Uno Board
Image source: http://goo.gl/bzIvDY
Other Arduino hardware
Image source: www.adafruit.com/product/64
Use a breadboard
to build an
electronic circuit
without any
soldering.
Electronic Components
Battery Snap
Capacitors
Diode
Gels
H-bridge
Jumper wires
Light Emitting Diodes
Male Header Pins
Optocoupler
Piezo
Photoresistor
Potentiometer
Pushbuttons
Resistors
Tilt sensor
Temperature Sensor
Transistor
CanaKit Raspberry Pi 2 Ultimate Starter Kit is $80 or so.
More info: http://goo.gl/CAuK7p
Raspberry Pi Board
Image source: http://goo.gl/4q3GdM
Slotting the micro SD card on the Raspberry Pi.
Flip it!
NOOBS (New Out of Box Software)
Image source: http://goo.gl/3zqKmb
Need help setting up NOOBS? Visit: https://www.raspberrypi.org/help/noobs-setup/
Integrated Development Environment (IDE)
An IDE is a software application that provides
comprehensive facilities to computer programmers for
software development. An IDE normally consists of a source
code editor, build automation tools and a debugger.
Arduino IDE download: http://www.arduino.cc/en/Main/Software
Raspberry Pi Operating System downloads: https://www.raspberrypi.org/downloads/
Top 8 IDE’s for Programmers, Coders and Beginners on the Raspberry Pi: http://goo.gl/kP8uci
Arduino IDE
Download: http://www.arduino.cc/en/Main/Software
Arduino Sketch
/*
Blink
Turns on an LED on for one second, then off for one second, repeatedly. Most Arduinos have an on-board LED you can control. On the Uno and
Leonardo, it is attached to digital pin 13. If you're unsure what pin the on-board LED is connected to on your Arduino model, check the documentation
at http://arduino.cc. This example code is in the public domain. modified 8 May 2014 by Scott Fitzgerald
*/
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin 13 as an output.
pinMode(13, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(13, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
More info: http://www.arduino.cc/en/Tutorial/Sketch
Check out “Arduino Lecture 1 - Introducing the Arduino” by Eoin Brazil
Introducing Dylan Harvey, an SPC iLab
Volunteer.
Alarm clock
Breadboard layout of the alarm clock
Getting Started with Raspberry Pi and Arduino
Getting Started with Raspberry Pi and Arduino
The hard part is keeping
track of what is hooked
into what …
Getting Started with Raspberry Pi and Arduino
Potentiometer used for controlling the
LCD contrast
Some important tips from Dylan
1. Keep track of your power rails on
the bread board. I kept having to
unplug and plug power wires into the
correct connections.
2. You will need a 9v power source
to power both the LCD and speaker.
3. It if at first it doesn't work check
your power rails, then your pin
connections on the Arduino.
4. LCD's are tricky, make sure to
properly connect them.
More info: http://goo.gl/FLMQ3O
The Innovation Lab [Makerspace @ SPC] built a retro video game console!
Select Arduino Projects
• Live Electronics Systems with Maxuino
• Create Interactive Electronic Instruments with MaxMSP
• How Arduino And Raspberry Pi Can Enhance Your Connected Home
• Burglar/Fire alarm
• LCD AC Thermostat
• Internet of Things Camera
• Hanging Garden
Select Raspberry Pi Projects
• BrewPi is a fermentation temperature controller.
• How Arduino And Raspberry Pi Can Enhance Your Connected Home
• Pet Feeder
• Automated Sprinkler System
• Home Automation
• 12 Cool Projects For Your Raspberry Pi
Resource Kit
• Arduino YouTube Channel
• Raspberry Pi IV Beginners YouTube Channel
• Adafruit Industries, Unique & fun DIY electronics and kits
• Adafruit Learning System
• Arduino Development Tools
• Raspberry Pi Tools and Resources
• Scratch + Arduino = S4A
Raspberry Pi Resources
• The Raspberry Pi Foundation — FAQs
• The Raspberry Pi Foundation — Project Forums
• Learn Raspberry Pi with Adafruit
• Element 14 (Pi’s manufacturer) Raspberry Pi Community
• The Raspberry Pi Wiki
• Raspberry Pi Downloads
Arduino Resources
• Arduino’s Official Getting Started Guide
• Arduino Playground
• Arduino Official Forums
• Learn Arduino with Adafruit
• r/arduino on Reddit
spcilab. .com
Connect with the iLab …
iLab@spcollege.edu
/groups/spcilab
spcilab. .com
.com/innovation-lab-makerspace-spc
What are you doing?
http://www.slideshare.net/chadmairn
@cmairn
Let’s
Hangout!
gplus.to/chadmairn

More Related Content

PPT
Raspberrypi best ppt
PPTX
My arduino presentation
PDF
Introduction to Raspberry PI
PPTX
Arduino vs Raspberry Pi
PDF
Introduction to Raspberrypi
PPTX
Introduction to raspberry pi
PPT
Raspberry Pi Presentation
PDF
Automation using RaspberryPi and Arduino
Raspberrypi best ppt
My arduino presentation
Introduction to Raspberry PI
Arduino vs Raspberry Pi
Introduction to Raspberrypi
Introduction to raspberry pi
Raspberry Pi Presentation
Automation using RaspberryPi and Arduino

What's hot (20)

PPTX
Arduino
PPTX
Raspberry pi
PPTX
Simple Presentation On Raspberry pi
PDF
Arduino vs Raspberry Pi | Which Board to Choose for IoT Projects | IoT Device...
PDF
Arduino Workshop Day 2 - Advance Arduino & DIY
PDF
Single Board Computers & Raspberry Pi Basics
PPT
Raspberry pi
PPTX
Raspberry pi
PPT
Raspberry-Pi
PPTX
Internet of Things Using Arduino
PPTX
Raspberry Pi (Introduction)
PPTX
Door lock-using-rfid-technology
PPTX
Raspberry pi
PPTX
Presentation on Raspberry pi
PPT
Arduino
PPTX
Nodemcu - introduction
PPTX
Using arduino and raspberry pi for internet of things
PPT
Seminar Presentation on raspberry pi
PDF
Interfacing the Raspberry Pi to the World
PPT
Raspberry Pi Technology
Arduino
Raspberry pi
Simple Presentation On Raspberry pi
Arduino vs Raspberry Pi | Which Board to Choose for IoT Projects | IoT Device...
Arduino Workshop Day 2 - Advance Arduino & DIY
Single Board Computers & Raspberry Pi Basics
Raspberry pi
Raspberry pi
Raspberry-Pi
Internet of Things Using Arduino
Raspberry Pi (Introduction)
Door lock-using-rfid-technology
Raspberry pi
Presentation on Raspberry pi
Arduino
Nodemcu - introduction
Using arduino and raspberry pi for internet of things
Seminar Presentation on raspberry pi
Interfacing the Raspberry Pi to the World
Raspberry Pi Technology
Ad

Viewers also liked (20)

DOCX
Vehicle tracting system
PPTX
Lcd with arduino uno
PPTX
Arduino uno lcd display 16x2
PPTX
LCD Theory and Working Principles
PDF
Arduino genius com display lcd 16x2 usando i2 c
PDF
Gonzalez Creating a Digital Makerspace
PDF
Burke What Library Makerspaces Need to Succeed
PDF
Meadows Role for Library-Based Makerspace in Liberal Arts School
ODP
Interfacing to lcd with arduino
PPTX
Interfacing with Arduino
PPTX
Led Theory and Working Principles
PPT
WATER LEVEL MEASURE AND CONTROL WITH ULTRASONIK SENSOR AND ARDUINO UNO
DOCX
Arduino lcd display
DOCX
Design Development of Water Monitoring Systems by Using Arduino and Sensors
PPTX
Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
PPTX
Soil Moisture Sensor and Arduino
PDF
Arduino uno
PPTX
Vehicle accident detection and messaging system using GSM and arduino
PPTX
Liquid Crystal Display (LCD)
PPTX
liquid crystal display
Vehicle tracting system
Lcd with arduino uno
Arduino uno lcd display 16x2
LCD Theory and Working Principles
Arduino genius com display lcd 16x2 usando i2 c
Gonzalez Creating a Digital Makerspace
Burke What Library Makerspaces Need to Succeed
Meadows Role for Library-Based Makerspace in Liberal Arts School
Interfacing to lcd with arduino
Interfacing with Arduino
Led Theory and Working Principles
WATER LEVEL MEASURE AND CONTROL WITH ULTRASONIK SENSOR AND ARDUINO UNO
Arduino lcd display
Design Development of Water Monitoring Systems by Using Arduino and Sensors
Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
Soil Moisture Sensor and Arduino
Arduino uno
Vehicle accident detection and messaging system using GSM and arduino
Liquid Crystal Display (LCD)
liquid crystal display
Ad

Similar to Getting Started with Raspberry Pi and Arduino (20)

PPTX
Fun with Circuitry and Electronics
PPTX
Introduction to Arduino
PPTX
small electronics for your makerspace 2 (clc trendspotting - 26 march 2014)
PPTX
Arduino overview - introducing
PDF
Get your hands dirty with Arduino
PDF
Advanced view arduino projects list part 4 use arduino for projects
PDF
Advanced View Arduino Projects List - Use Arduino for Projects 5.pdf
PDF
The Arduino Projects Book 2012th Edition Scott Fitzgerald Michael Shiloh
PPTX
An Hour of Arduino and Ardublock
PPTX
Introduction to Arduino
PDF
Small Electronics for Your Makerspace (CLC Trendspotting - September 2014)
ODP
Introduction to Arduino
PPS
What is Arduino ?
PPTX
ARDUINO OVERVIEW HARDWARE SOFTWARE AND INSTALLATION.pptx
PDF
Arduino spooky projects_class1
PPTX
Introduction to Arduino (Parts of Arduino Microcontroller) .pptx
PPTX
What are the different types of arduino boards
DOCX
Interoperability in Internet of Things (IOT)
PDF
ARDUINO OVERVIEW HARDWARE SOFTWARE AND INSTALLATION.pdf
PDF
Practicas con arduino
Fun with Circuitry and Electronics
Introduction to Arduino
small electronics for your makerspace 2 (clc trendspotting - 26 march 2014)
Arduino overview - introducing
Get your hands dirty with Arduino
Advanced view arduino projects list part 4 use arduino for projects
Advanced View Arduino Projects List - Use Arduino for Projects 5.pdf
The Arduino Projects Book 2012th Edition Scott Fitzgerald Michael Shiloh
An Hour of Arduino and Ardublock
Introduction to Arduino
Small Electronics for Your Makerspace (CLC Trendspotting - September 2014)
Introduction to Arduino
What is Arduino ?
ARDUINO OVERVIEW HARDWARE SOFTWARE AND INSTALLATION.pptx
Arduino spooky projects_class1
Introduction to Arduino (Parts of Arduino Microcontroller) .pptx
What are the different types of arduino boards
Interoperability in Internet of Things (IOT)
ARDUINO OVERVIEW HARDWARE SOFTWARE AND INSTALLATION.pdf
Practicas con arduino

More from Chad Mairn (18)

PPTX
STEAM @ Your Library
PPTX
Build an Analog Synthesizer with littleBits
PPTX
Introduction to Robots
PPTX
2015 Technology Trends to Watch
PPTX
Organizing a Successful Comic Con at Your Library
PPTX
Introducing Google Glass
PPTX
Introducing Google Glass
PPTX
Inspiring Kids to Code Using Scratch and Other Tools
PPTX
Introducing Chrome
PPTX
2014 Tech Trends to Watch
PPTX
Introducing Chromebooks
PPTX
Gamification: How it can be used to Engage Library Users
PPTX
Developing Library Staff Skills for Mobile Technology
PPTX
Makerspaces
PPTX
Self Publishing 101
PPTX
Google Indoor Mapping Project
PPTX
iOS Basics: Introducing the iPad, iPhone, and iCloud.
PPTX
Social Applications To Watch
STEAM @ Your Library
Build an Analog Synthesizer with littleBits
Introduction to Robots
2015 Technology Trends to Watch
Organizing a Successful Comic Con at Your Library
Introducing Google Glass
Introducing Google Glass
Inspiring Kids to Code Using Scratch and Other Tools
Introducing Chrome
2014 Tech Trends to Watch
Introducing Chromebooks
Gamification: How it can be used to Engage Library Users
Developing Library Staff Skills for Mobile Technology
Makerspaces
Self Publishing 101
Google Indoor Mapping Project
iOS Basics: Introducing the iPad, iPhone, and iCloud.
Social Applications To Watch

Recently uploaded (20)

PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Electronic commerce courselecture one. Pdf
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Modernizing your data center with Dell and AMD
PPTX
A Presentation on Artificial Intelligence
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PPT
Teaching material agriculture food technology
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PDF
Approach and Philosophy of On baking technology
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
NewMind AI Monthly Chronicles - July 2025
20250228 LYD VKU AI Blended-Learning.pptx
Spectral efficient network and resource selection model in 5G networks
The Rise and Fall of 3GPP – Time for a Sabbatical?
Electronic commerce courselecture one. Pdf
Encapsulation_ Review paper, used for researhc scholars
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Network Security Unit 5.pdf for BCA BBA.
NewMind AI Weekly Chronicles - August'25 Week I
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Modernizing your data center with Dell and AMD
A Presentation on Artificial Intelligence
Building Integrated photovoltaic BIPV_UPV.pdf
Teaching material agriculture food technology
“AI and Expert System Decision Support & Business Intelligence Systems”
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
Approach and Philosophy of On baking technology
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
The AUB Centre for AI in Media Proposal.docx
NewMind AI Monthly Chronicles - July 2025

Getting Started with Raspberry Pi and Arduino

  • 3. Agenda • Learn what an Arduino and Raspberry Pi are and what they can do • Explore the Arduino and Raspberry Pi Development Environments • See innovative Arduino and Raspberry Pi projects • Start a resource kit for future project ideas
  • 5. • A mini-computer • Requires an operating system • Has a micro-SD card for storage • Built-in Ethernet • Plug in a keyboard and monitor • Can run Linux • Is very cool! Raspberry Pi
  • 6. • A microcontroller (i.e., a single component of a computer) • It is an “open-source electronics prototyping platform”, that is intended for people interested in “creating interactive objects or environments.” • You build the circuits and interfaces for interaction • USB port used to upload and communicate with Arduino sketches (i.e., software programs that communicate with the outside world. Sketches are the logic behind Arduino projects) • Networking requires an add-on “shield” • It is also very cool! Arduino
  • 8. Which one should you get?
  • 9. Why not both? AlaMode for Raspberry Pi More info: http://goo.gl/6B2Pnk
  • 11. 15 projects included in the kit: 01 GET TO KNOW YOUR TOOLS an introduction to the concepts you'll need to use this kit 02 SPACESHIP INTERFACE design to control panel for your startship 03 LOVE-O-METER measure how hot-blooded you are 04 COLOR MIXING LAMP produce any color with a lamp that uses light as an input 05 MOOD CUE clue people in to how you're doing 06 LIGHT THEREMIN create a musical instrument you play by waving your hands 07 KEYBOARD INSTRUMENT play music and make some noise with this keyboard 08 DIGITAL HOURGLASS a light-up hourglass that can stop you from working too much 09 MOTORIZED PINWHEEL a color wheel that will have your head spinning 10 ZOETROPE create a mechanical animation you can play forward or reverse 11 CRYSTAL BALL a mystical tour to answer all your tough question 12 KNOCK LOCK tap out the secret code to open the door 13 TOUCHY-FEEL LAMP a lamp that responds to your touch 14 TWEAK THE ARDUINO LOGO control your personal computer from your Arduino 15 HACKING BUTTONS create a master control for all your devices! More info: http://goo.gl/Rz5ZaU
  • 12. The Arduino Uno Board Image source: http://goo.gl/bzIvDY Other Arduino hardware
  • 13. Image source: www.adafruit.com/product/64 Use a breadboard to build an electronic circuit without any soldering.
  • 14. Electronic Components Battery Snap Capacitors Diode Gels H-bridge Jumper wires Light Emitting Diodes Male Header Pins Optocoupler Piezo Photoresistor Potentiometer Pushbuttons Resistors Tilt sensor Temperature Sensor Transistor
  • 15. CanaKit Raspberry Pi 2 Ultimate Starter Kit is $80 or so. More info: http://goo.gl/CAuK7p
  • 16. Raspberry Pi Board Image source: http://goo.gl/4q3GdM
  • 17. Slotting the micro SD card on the Raspberry Pi. Flip it!
  • 18. NOOBS (New Out of Box Software) Image source: http://goo.gl/3zqKmb Need help setting up NOOBS? Visit: https://www.raspberrypi.org/help/noobs-setup/
  • 19. Integrated Development Environment (IDE) An IDE is a software application that provides comprehensive facilities to computer programmers for software development. An IDE normally consists of a source code editor, build automation tools and a debugger. Arduino IDE download: http://www.arduino.cc/en/Main/Software Raspberry Pi Operating System downloads: https://www.raspberrypi.org/downloads/ Top 8 IDE’s for Programmers, Coders and Beginners on the Raspberry Pi: http://goo.gl/kP8uci
  • 21. Arduino Sketch /* Blink Turns on an LED on for one second, then off for one second, repeatedly. Most Arduinos have an on-board LED you can control. On the Uno and Leonardo, it is attached to digital pin 13. If you're unsure what pin the on-board LED is connected to on your Arduino model, check the documentation at http://arduino.cc. This example code is in the public domain. modified 8 May 2014 by Scott Fitzgerald */ // the setup function runs once when you press reset or power the board void setup() { // initialize digital pin 13 as an output. pinMode(13, OUTPUT); } // the loop function runs over and over again forever void loop() { digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); // wait for a second digitalWrite(13, LOW); // turn the LED off by making the voltage LOW delay(1000); // wait for a second } More info: http://www.arduino.cc/en/Tutorial/Sketch
  • 22. Check out “Arduino Lecture 1 - Introducing the Arduino” by Eoin Brazil
  • 23. Introducing Dylan Harvey, an SPC iLab Volunteer.
  • 25. Breadboard layout of the alarm clock
  • 28. The hard part is keeping track of what is hooked into what …
  • 30. Potentiometer used for controlling the LCD contrast Some important tips from Dylan 1. Keep track of your power rails on the bread board. I kept having to unplug and plug power wires into the correct connections. 2. You will need a 9v power source to power both the LCD and speaker. 3. It if at first it doesn't work check your power rails, then your pin connections on the Arduino. 4. LCD's are tricky, make sure to properly connect them.
  • 31. More info: http://goo.gl/FLMQ3O The Innovation Lab [Makerspace @ SPC] built a retro video game console!
  • 32. Select Arduino Projects • Live Electronics Systems with Maxuino • Create Interactive Electronic Instruments with MaxMSP • How Arduino And Raspberry Pi Can Enhance Your Connected Home • Burglar/Fire alarm • LCD AC Thermostat • Internet of Things Camera • Hanging Garden
  • 33. Select Raspberry Pi Projects • BrewPi is a fermentation temperature controller. • How Arduino And Raspberry Pi Can Enhance Your Connected Home • Pet Feeder • Automated Sprinkler System • Home Automation • 12 Cool Projects For Your Raspberry Pi
  • 34. Resource Kit • Arduino YouTube Channel • Raspberry Pi IV Beginners YouTube Channel • Adafruit Industries, Unique & fun DIY electronics and kits • Adafruit Learning System • Arduino Development Tools • Raspberry Pi Tools and Resources • Scratch + Arduino = S4A
  • 35. Raspberry Pi Resources • The Raspberry Pi Foundation — FAQs • The Raspberry Pi Foundation — Project Forums • Learn Raspberry Pi with Adafruit • Element 14 (Pi’s manufacturer) Raspberry Pi Community • The Raspberry Pi Wiki • Raspberry Pi Downloads
  • 36. Arduino Resources • Arduino’s Official Getting Started Guide • Arduino Playground • Arduino Official Forums • Learn Arduino with Adafruit • r/arduino on Reddit
  • 37. spcilab. .com Connect with the iLab … iLab@spcollege.edu /groups/spcilab spcilab. .com .com/innovation-lab-makerspace-spc
  • 38. What are you doing?