arduino, raspberry pi, and making

17
Arduino and Raspberry Pi An introduction to making and the make movement.

Upload: lemasney-consulting

Post on 28-Jan-2015

133 views

Category:

Technology


3 download

DESCRIPTION

This is a presentation giving a light introduction to open source hardware and the Make movement.

TRANSCRIPT

Page 1: Arduino, Raspberry Pi, and Making

Arduino and Raspberry PiAn introduction to making and the make movement.

Page 2: Arduino, Raspberry Pi, and Making

What is an Arduino?

Page 3: Arduino, Raspberry Pi, and Making

How are Arduinos being used?

Page 5: Arduino, Raspberry Pi, and Making

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}

Page 6: Arduino, Raspberry Pi, and Making

Arduino demo

Let’s try it!

Page 7: Arduino, Raspberry Pi, and Making

Resources for Arduino

http://youtube.comhttp://ladyada.nethttp://arduino.cc

Page 8: Arduino, Raspberry Pi, and Making

What is a Raspberry Pi?

Page 9: Arduino, Raspberry Pi, and Making

How are Raspberry Pis being used?

Page 10: Arduino, Raspberry Pi, and Making

How are Raspberry Pis being used?

Page 11: Arduino, Raspberry Pi, and Making

How are Raspberry Pis being used?

Page 13: Arduino, Raspberry Pi, and Making

How do I get started with Raspberry Pi?

Page 14: Arduino, Raspberry Pi, and Making

How do I get started with Raspberry Pi?

Page 16: Arduino, Raspberry Pi, and Making

Raspberry Pi Demo

Let’s try it!