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
arduino
jhcid
 
PPT
Raspberrypi best ppt
SOMRAJ GAUTAM
 
PDF
Blynk presentation
Davide Meacci
 
PDF
Introduction to Raspberry PI
Chandrashekar Babu
 
PPTX
Raspberry Pi (Introduction)
Mandeesh Singh
 
PPTX
Introduction to Arduino Hardware and Programming
Emmanuel Obot
 
PPTX
Arduino vs Raspberry Pi
Jitendra Adhikari
 
PDF
Arduino vs Raspberry Pi | Which Board to Choose for IoT Projects | IoT Device...
Edureka!
 
arduino
jhcid
 
Raspberrypi best ppt
SOMRAJ GAUTAM
 
Blynk presentation
Davide Meacci
 
Introduction to Raspberry PI
Chandrashekar Babu
 
Raspberry Pi (Introduction)
Mandeesh Singh
 
Introduction to Arduino Hardware and Programming
Emmanuel Obot
 
Arduino vs Raspberry Pi
Jitendra Adhikari
 
Arduino vs Raspberry Pi | Which Board to Choose for IoT Projects | IoT Device...
Edureka!
 

What's hot (20)

PPTX
Arduino
Jerin John
 
PPT
Raspberry Pi Technology
Ravi Basil
 
PPTX
Introduction to Arduino
Yong Heui Cho
 
PPTX
Introduction To Raspberry Pi with Simple GPIO pin Control
Pradip Bhandari
 
PPT
Intro to Arduino
avikdhupar
 
PPTX
Introduction to Arduino
Omer Kilic
 
PPS
What is Arduino ?
Niket Chandrawanshi
 
PDF
Arduino Workshop Day 2 - Advance Arduino & DIY
Vishnu
 
PDF
Introduction to Raspberrypi
Iheb Ben Salem
 
PPTX
IoT Based Home Automation System Presantation
Farhan Ahmed Rahee
 
PDF
ESP32 WiFi & Bluetooth Module - Getting Started Guide
handson28
 
PPTX
Basics of arduino uno
Rahat Sood
 
PPT
Raspberry pi
Anija Nair
 
PPTX
Arduino
Paras Bhanot
 
PDF
Single Board Computers & Raspberry Pi Basics
Eueung Mulyana
 
PPTX
Raspberry pi
Pravesh Sahu
 
PPTX
Introduction to arduino ppt main
eddy royappa
 
PPTX
Home automation- An Iot application
Archana Golhar
 
PPTX
Presentation on Raspberry pi
OpenDev
 
PPTX
Raspberry pi
ABHIJITPATRA23
 
Arduino
Jerin John
 
Raspberry Pi Technology
Ravi Basil
 
Introduction to Arduino
Yong Heui Cho
 
Introduction To Raspberry Pi with Simple GPIO pin Control
Pradip Bhandari
 
Intro to Arduino
avikdhupar
 
Introduction to Arduino
Omer Kilic
 
What is Arduino ?
Niket Chandrawanshi
 
Arduino Workshop Day 2 - Advance Arduino & DIY
Vishnu
 
Introduction to Raspberrypi
Iheb Ben Salem
 
IoT Based Home Automation System Presantation
Farhan Ahmed Rahee
 
ESP32 WiFi & Bluetooth Module - Getting Started Guide
handson28
 
Basics of arduino uno
Rahat Sood
 
Raspberry pi
Anija Nair
 
Arduino
Paras Bhanot
 
Single Board Computers & Raspberry Pi Basics
Eueung Mulyana
 
Raspberry pi
Pravesh Sahu
 
Introduction to arduino ppt main
eddy royappa
 
Home automation- An Iot application
Archana Golhar
 
Presentation on Raspberry pi
OpenDev
 
Raspberry pi
ABHIJITPATRA23
 
Ad

Viewers also liked (20)

DOCX
Vehicle tracting system
UVSofts Technologies
 
PPTX
Lcd with arduino uno
Robomart India
 
PPTX
Arduino uno lcd display 16x2
Robomart India
 
PPTX
LCD Theory and Working Principles
Robo India
 
PDF
Arduino genius com display lcd 16x2 usando i2 c
Thiago Pereira
 
PDF
Gonzalez Creating a Digital Makerspace
National Information Standards Organization (NISO)
 
PDF
Burke What Library Makerspaces Need to Succeed
National Information Standards Organization (NISO)
 
PDF
Meadows Role for Library-Based Makerspace in Liberal Arts School
National Information Standards Organization (NISO)
 
ODP
Interfacing to lcd with arduino
Politeknik Elektronika Negeri Surabaya
 
PPTX
Interfacing with Arduino
Omer Kilic
 
PPTX
Led Theory and Working Principles
Robo India
 
PPT
WATER LEVEL MEASURE AND CONTROL WITH ULTRASONIK SENSOR AND ARDUINO UNO
Sri Adhiyani Sunaryo
 
DOCX
Arduino lcd display
Makers of India
 
DOCX
Design Development of Water Monitoring Systems by Using Arduino and Sensors
Sai Bhaskar Reddy Nakka
 
PPTX
Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
Abhishekvb
 
PPTX
Soil Moisture Sensor and Arduino
Parvesh Taneja
 
PDF
Arduino uno
Muhammad Khan
 
PPTX
Vehicle accident detection and messaging system using GSM and arduino
Ramesh Reddy
 
PPTX
Liquid Crystal Display (LCD)
Bhaskar Jyoti Sarma
 
PPTX
liquid crystal display
Dinesh Pasi
 
Vehicle tracting system
UVSofts Technologies
 
Lcd with arduino uno
Robomart India
 
Arduino uno lcd display 16x2
Robomart India
 
LCD Theory and Working Principles
Robo India
 
Arduino genius com display lcd 16x2 usando i2 c
Thiago Pereira
 
Gonzalez Creating a Digital Makerspace
National Information Standards Organization (NISO)
 
Burke What Library Makerspaces Need to Succeed
National Information Standards Organization (NISO)
 
Meadows Role for Library-Based Makerspace in Liberal Arts School
National Information Standards Organization (NISO)
 
Interfacing to lcd with arduino
Politeknik Elektronika Negeri Surabaya
 
Interfacing with Arduino
Omer Kilic
 
Led Theory and Working Principles
Robo India
 
WATER LEVEL MEASURE AND CONTROL WITH ULTRASONIK SENSOR AND ARDUINO UNO
Sri Adhiyani Sunaryo
 
Arduino lcd display
Makers of India
 
Design Development of Water Monitoring Systems by Using Arduino and Sensors
Sai Bhaskar Reddy Nakka
 
Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
Abhishekvb
 
Soil Moisture Sensor and Arduino
Parvesh Taneja
 
Arduino uno
Muhammad Khan
 
Vehicle accident detection and messaging system using GSM and arduino
Ramesh Reddy
 
Liquid Crystal Display (LCD)
Bhaskar Jyoti Sarma
 
liquid crystal display
Dinesh Pasi
 
Ad

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

PPTX
Fun with Circuitry and Electronics
St. Petersburg College
 
PPTX
Introduction to Arduino
Green Moon Solutions
 
PPTX
small electronics for your makerspace 2 (clc trendspotting - 26 march 2014)
ariannaschlegel
 
PPTX
Arduino overview - introducing
ajiew
 
PDF
Get your hands dirty with Arduino
Savio Dimatteo
 
PDF
Advanced view arduino projects list part 4 use arduino for projects
WiseNaeem
 
PDF
Advanced View Arduino Projects List - Use Arduino for Projects 5.pdf
WiseNaeem
 
PDF
The Arduino Projects Book 2012th Edition Scott Fitzgerald Michael Shiloh
mekishiestyn
 
PPTX
An Hour of Arduino and Ardublock
Things Lab
 
PPTX
Introduction to Arduino
Dennis Espiritu
 
PDF
Small Electronics for Your Makerspace (CLC Trendspotting - September 2014)
ariannaschlegel
 
ODP
Introduction to Arduino
Richard Rixham
 
PPTX
Using arduino and raspberry pi for internet of things
Sudar Muthu
 
PPTX
ARDUINO OVERVIEW HARDWARE SOFTWARE AND INSTALLATION.pptx
menchc1207
 
PDF
Arduino spooky projects_class1
Felipe Belarmino
 
PPTX
Introduction to Arduino (Parts of Arduino Microcontroller) .pptx
JhonatanGarciaMendez
 
PPTX
What are the different types of arduino boards
elprocus
 
DOCX
Interoperability in Internet of Things (IOT)
manditalaskar123
 
PDF
ARDUINO OVERVIEW HARDWARE SOFTWARE AND INSTALLATION.pdf
Ruby Hermano
 
PPT
Arduino
vipin7vj
 
Fun with Circuitry and Electronics
St. Petersburg College
 
Introduction to Arduino
Green Moon Solutions
 
small electronics for your makerspace 2 (clc trendspotting - 26 march 2014)
ariannaschlegel
 
Arduino overview - introducing
ajiew
 
Get your hands dirty with Arduino
Savio Dimatteo
 
Advanced view arduino projects list part 4 use arduino for projects
WiseNaeem
 
Advanced View Arduino Projects List - Use Arduino for Projects 5.pdf
WiseNaeem
 
The Arduino Projects Book 2012th Edition Scott Fitzgerald Michael Shiloh
mekishiestyn
 
An Hour of Arduino and Ardublock
Things Lab
 
Introduction to Arduino
Dennis Espiritu
 
Small Electronics for Your Makerspace (CLC Trendspotting - September 2014)
ariannaschlegel
 
Introduction to Arduino
Richard Rixham
 
Using arduino and raspberry pi for internet of things
Sudar Muthu
 
ARDUINO OVERVIEW HARDWARE SOFTWARE AND INSTALLATION.pptx
menchc1207
 
Arduino spooky projects_class1
Felipe Belarmino
 
Introduction to Arduino (Parts of Arduino Microcontroller) .pptx
JhonatanGarciaMendez
 
What are the different types of arduino boards
elprocus
 
Interoperability in Internet of Things (IOT)
manditalaskar123
 
ARDUINO OVERVIEW HARDWARE SOFTWARE AND INSTALLATION.pdf
Ruby Hermano
 
Arduino
vipin7vj
 

More from Chad Mairn (18)

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

Recently uploaded (20)

PDF
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
PDF
Building High-Performance Oracle Teams: Strategic Staffing for Database Manag...
SMACT Works
 
PDF
Revolutionize Operations with Intelligent IoT Monitoring and Control
Rejig Digital
 
PDF
Shreyas_Phanse_Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
SHREYAS PHANSE
 
PDF
BLW VOCATIONAL TRAINING SUMMER INTERNSHIP REPORT
codernjn73
 
PDF
NewMind AI Monthly Chronicles - July 2025
NewMind AI
 
PPTX
How to Build a Scalable Micro-Investing Platform in 2025 - A Founder’s Guide ...
Third Rock Techkno
 
PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
AVTRON Technologies LLC
 
PDF
Event Presentation Google Cloud Next Extended 2025
minhtrietgect
 
PDF
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
PDF
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
Artjoker Software Development Company
 
PDF
NewMind AI Weekly Chronicles - July'25 - Week IV
NewMind AI
 
PDF
CIFDAQ's Teaching Thursday: Moving Averages Made Simple
CIFDAQ
 
PDF
madgavkar20181017ppt McKinsey Presentation.pdf
georgschmitzdoerner
 
PDF
REPORT: Heating appliances market in Poland 2024
SPIUG
 
PDF
Chapter 2 Digital Image Fundamentals.pdf
Getnet Tigabie Askale -(GM)
 
PDF
Why Your AI & Cybersecurity Hiring Still Misses the Mark in 2025
Virtual Employee Pvt. Ltd.
 
PPTX
The-Ethical-Hackers-Imperative-Safeguarding-the-Digital-Frontier.pptx
sujalchauhan1305
 
PDF
Enable Enterprise-Ready Security on IBM i Systems.pdf
Precisely
 
PDF
The Evolution of KM Roles (Presented at Knowledge Summit Dublin 2025)
Enterprise Knowledge
 
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
Building High-Performance Oracle Teams: Strategic Staffing for Database Manag...
SMACT Works
 
Revolutionize Operations with Intelligent IoT Monitoring and Control
Rejig Digital
 
Shreyas_Phanse_Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
SHREYAS PHANSE
 
BLW VOCATIONAL TRAINING SUMMER INTERNSHIP REPORT
codernjn73
 
NewMind AI Monthly Chronicles - July 2025
NewMind AI
 
How to Build a Scalable Micro-Investing Platform in 2025 - A Founder’s Guide ...
Third Rock Techkno
 
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
AVTRON Technologies LLC
 
Event Presentation Google Cloud Next Extended 2025
minhtrietgect
 
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
Artjoker Software Development Company
 
NewMind AI Weekly Chronicles - July'25 - Week IV
NewMind AI
 
CIFDAQ's Teaching Thursday: Moving Averages Made Simple
CIFDAQ
 
madgavkar20181017ppt McKinsey Presentation.pdf
georgschmitzdoerner
 
REPORT: Heating appliances market in Poland 2024
SPIUG
 
Chapter 2 Digital Image Fundamentals.pdf
Getnet Tigabie Askale -(GM)
 
Why Your AI & Cybersecurity Hiring Still Misses the Mark in 2025
Virtual Employee Pvt. Ltd.
 
The-Ethical-Hackers-Imperative-Safeguarding-the-Digital-Frontier.pptx
sujalchauhan1305
 
Enable Enterprise-Ready Security on IBM i Systems.pdf
Precisely
 
The Evolution of KM Roles (Presented at Knowledge Summit Dublin 2025)
Enterprise Knowledge
 

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 … [email protected] /groups/spcilab spcilab. .com .com/innovation-lab-makerspace-spc
  • 38. What are you doing?