Arduino and
Raspberry Pi
An introduction to making and the make
movement.
What is an Arduino?
How are Arduinos being used?
Arduino Starter Kit
Getting started with Arduino
http://www.ladyada.net/learn/arduino/lesson1.html
/*
Blink
Turns on an LED on for one second, then off for one
second, repeatedly.
This example code is in the public domain.
*/
// Pin 13 has an LED connected on most Arduino boards.
// give it a name:
int led = 13;
// the setup routine runs once when you press reset:
void setup() {
// initialize the digital pin as an output.
pinMode(led, OUTPUT);
}
// the loop routine runs over and over again forever:
void loop() {
digitalWrite(led, HIGH); // turn the LED on (HIGH
is the voltage level)
delay(1000); // wait for a second
digitalWrite(led, LOW); // turn the LED off by
making the voltage LOW
delay(1000); // wait for a second
}
Arduino demo
Let’s try it!
Resources for Arduino
http://youtube.com
http://ladyada.net
http://arduino.cc
What is a Raspberry Pi?
How are Raspberry Pis being used?
How are Raspberry Pis being used?
How are Raspberry Pis being used?
Take a look at this
http://makezine.com/2013/04/14/47-raspberry-
pi-projects-to-inspire-your-next-build/
How do I get started with Raspberry
Pi?
How do I get started with Raspberry
Pi?
Resources for Raspberry Pi
http://www.raspberrypi.org/faqs
http://en.wikipedia.org/wiki/Raspberry_Pi
http://ivanx.com/raspberrypi/
Raspberry Pi Demo
Let’s try it!
Thanks!
lemasney@gmail.com
http://lemasney.com
John LeMasney

Arduino, Raspberry Pi, and Making