Arduino, Raspberry Pi, and Making

Post on 28-Jan-2015

124 Views

Category:

Technology

3 Downloads

Preview:

Click to see full reader

DESCRIPTION

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

Transcript

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

What is an Arduino?

How are Arduinos being used?

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.comhttp://ladyada.nethttp://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?

How do I get started with Raspberry Pi?

How do I get started with Raspberry Pi?

Raspberry Pi Demo

Let’s try it!

top related