Intro To Arduino: Zero To Prototyping in A Flash!
Intro To Arduino: Zero To Prototyping in A Flash!
Zero to Prototyping
in a Flash!
Overview of Class
Getting Started:
Installation, Applications and Materials
Electrical:
Components, Ohm's Law, Input and Output, Analog and
Digital
----------------------------Programming:
Split into groups depending on experience
Serial Communication Basics:
Troubleshooting and Debugging
Virtual Prototyping:
Schematics and PCB Layout in Fritzing
Arduino Board
Strong Friend Created in Ivrea, Italy
in 2005 by Massimo Banzi & David Cuartielles
Open Source Hardware
Processor
Coding is accessible & transferrable (C++, Processing,
java)
Arduino
is the go-to gear for artists, hobbyists,
students, and anyone with a
gadgetry dream.
rose out of anotherformidable
challenge: how to teach students to
create electronics, fast.
http://spectrum.ieee.org/geek-life/hands-on/the-making-of-arduino
Getting Started
SW Installation: Arduino (v.1.0+)
Fritzing
SIK Guide Code
Drivers (FTDI)
Materials:
SIK Guide
Analog I/O, Digital I/O, Serial,
& Fritzing handouts
Arduino CheatSheet
USB
(to Computer)
PWR IN
RESET
SCL\SDA
(I2C Bus)
POWER
5V / 3.3V / GND
Digital I\O
PWM(3, 5, 6, 9, 10, 11)
Analog
INPUTS
USB
(to Computer)
PWR IN
RESET
SCL\SDA
(I2C Bus)
POWER
5V / 3.3V / GND
Digital I\O
PWM(3, 5, 6, 9, 10, 11)
Analog
INPUTS
Arduino Shields
PCB
Built Shield
Inserted Shield
Arduino Shields
Micro SD
MP3 Trigger
LCD
SIK Components
Type
Function
Notes
Push Button
Digital Input
Switch - Closes
or opens circuit
Polarized, needs
resistor
Trim
potentiometer
Analog Input
Variable resistor
Also called a
Trimpot.
Photoresistor
Analog Input
Light Dependent
Resistor (LDR)
Resistance varies
with light.
Relay
Digital Output
Switch driven by
a small signal
Used to control
larger voltages
Temp Sensor
Analog Input
Temp Dependent
Resistor
Flex Sensor
Analog Input
Variable resistor
Soft Trimpot
Analog Input
Variable resistor
Careful of shorts
RGB LED
16,777,216
different colors
Ooh... So pretty.
Name
Image
SIK Components
SIK Components
SIK Components
Ohms Law
Voltage
Current
Resistance
Using a Multi-meter
Ohms Law
Electrical Properties
Voltage
V
Current
I
Defined as
the
amount of
potential
energy in a
circuit.
The rate of
charge
flow in a
circuit.
Units: Amperes
(A)
Resistance
R
High Current
Low Current
Voltage Analogy
Water
Tower
Water
Tower
Resistance Analogy
Water
Tower
Water
Tower
Continuity Is it a Circuit?
The word circuit is derived from the circle. An
Electrical Circuit must have a continuous LOOP
from Power (Vcc) to Ground (GND).
Continuity is important to make portions of
circuits are connect. Continuity is the simplest
and possibly the most important setting on
your multi-meter. Sometimes we call this
ringing out a circuit.
Prototyping Circuits
Solderless Breadboard
One of the most useful tools in an
engineer or Makers toolkit. The three
most important things:
A breadboard is easier than soldering
A lot of those little holes are connected, which ones?
Sometimes breadboards break
Whats a Breadboard?
Solderless Breadboard
Inputs is a signal /
Inputs is a signal /
5V
0V
0V
Open up Arduino
Hints:
For PC Users
2. Resist the
temptation to run
these from your
desktop.
Arduino
Integrated Development Environment (IDE)
Two required functions
/ methods / routines:
void setup()
{
// runs once
}
void loop()
{
// repeats
}
BIG 6 CONCEPTS
digitalWrite()
analogWrite()
digitalRead()
if() statements /
Boolean
analogRead()
Serial
communication
Turn
LED
OFF
Wait
Wait
Rinse &
Repeat
comments
delay???
Global
---
Functionlevel
8 bits
byte
char
16 bits
int
unsigned int
32 bits
long
unsigned long
float
Project #2 Fading
Introducing a new command
analogWrite(pin, val);
pin refers to the OUTPUT
pin (limited to pins 3, 5, 6, 9,
10, 11.) denoted by a ~
symbol
val 8 bit value (0 255).
0 => 0V
255 => 5V
Project# 2 -- Fading
Challenge 2a Change the rate of the
fading in and out. There are at least
two different ways to do this can
you figure them out?
Challenge 2b Use 2 (or more) LEDs
so that one fades in as the other
one fades out.
R G B
Color Mixing
Tri-color LED
Note: The
longest leg of
the RGB LED
is the
Common
Cathode. This
goes to GND.
Use pins 5, 6, &
9
Use Colorpicker.com or
experiment on your
own.
Pick out a few colors
that you want to try
re-creating for a
lamp or lighting
display...
void loop()
{
analogWrite(redPin, 255);
analogWrite (greenPin, 255);
analogWrite (bluePin, 255);
}
Napkin
Schematics
Emphasize the
engineering
design process
with students. We
like to skirt the
line between
formal and
informal with a
tool called
Napkin
Schematics.
Napkin
Schematics
Emphasize the
engineering
design process
with students. We
like to skirt the
line between
formal and
informal with a
tool called
Napkin
Schematics.
to Digital
Pin 9
Input
Input is any signal entering an electrical system
.
Both digital and analog sensors are forms of
input
Input can also take many other forms:
Keyboards, a mouse, infrared sensors,
biometric sensors, or just plain voltage from a
circuit
to Digital Pin 2
Digital Input
Connect digital input to your Arduino using Pins # 0
13 (Although pins # 0 & 1 are also used for
programming)
Digital Input needs a pinMode command:
pinMode (pinNumber, INPUT);
Make sure to use ALL CAPS for INPUT
To get a digital reading:
int buttonState = digitalRead (pinNumber);
Digital Input values are only HIGH (On) or LOW
(Off)
Digital Sensors
Digital sensors are more straight forward than
Analog
No matter what the sensor there are only two
settings: On and Off
Signal is always either HIGH (On) or LOW (Off)
Voltage signal for HIGH will be a little less than
5V on your Uno
Voltage signal for LOW will be 0V on most
systems
http://opensourcehardwarejunkies.com/tutorial-03-digitalread-and
Programming: Conditional
Statements
if()
Programming: Conditional
Statements
if()
void loop()
{
int buttonState = digitalRead(5);
if(buttonState == LOW)
{ // do something
}
else
{
// do something else
}
}
DIG
INPUT
Boolean Operators
(
(
(
(
(
(
<Boolean>
Description
)
)
)
)
)
)
is equal?
is not equal?
greater than
greater than or equal
less than
less than or equal
==
!=
>
>=
<
<=
(
(
(
(
(
(
)
)
)
)
)
)
Trimpot (Potentiometer)
Variable Resistor
fixed
end
wiper
fixed
end
Analog Sensors
3 Pin Potentiometer = var. resistor (circuit
)
a.k.a. Voltage Divider Circuit
wiper
fixed
ends
1.0 V
1.0 V
analogRead()
Arduino uses a 10-bit A/D Converter:
this means that you get input values
from 0 to 1023
0V0
5 V 1023
Ex:
int sensorValue = analogRead(A0);
Analog Sensors
2 Pin Analog Sensors = var. resistor
Take two sensors -- Use
the Serial Monitor and
find the range of input
values you get for each
sensor.
MaxAnalogRead = _________
MinAnalogRead = _________
Analog Sensors
Examples:
Sensors
Mic
Photoresistor
Potentiometer
Temp Sensor
Flex Sensor
Accelerometer
Variables
soundVolume
lightLevel
dialPosition
temperature
bend
tilt/acceleration
Serial Communication:
Serial Debugging
void loop()
{
int xVar = 10;
Serial.print ( Variable xVar is ) ;
Serial.println ( xVar ) ;
}
Serial Communication:
Serial Troubleshooting
void loop ( )
{
Serial.print (Digital pin 9: );
Serial.println (digitalRead(9));
}
Free Time
The rest of the class is dedicated to free
pursuit
Experiment with the various circuits and
lessons in the SIK.
Explore the additional tutorials available on
learn.sparkfun.com
Thank you for attending our Intro to Arduino
class
Questions?
www.sparkfun.com
6175 Longbow Drive, Suite 200
Boulder, Colorado 80301