KEMBAR78
Intro to Arduino | KEY
Intro to Arduino
      Class
     Intro to Arduino

  Held at CRASHspace
    Taught by Quin
        8/11/12
Thank you to SparkFun for
   sharing the original
      presentation!
Schedule

•   Getting started with Arduino and electronics
•   Project 1 & 2
•   Break
•   Project 3, 4, & 5
•   Explaining More Code
•   Q&A + Project Time
Arduino Board
    “Strong Friend” Created in Ivrea, Italy
in 2005 by Massimo Banzi & David Cuartielles
           Open Source Hardware
             Atmel Processor
   Coding is accessible (C++, Processing)
Why do I want an Arduino?

Arduino is a 8-bit prototyping system
that is easy for the modern developer,
designer, hacker, kid, or someone that
has no experience in this type of genre
to use.

But why is important to all of us?
Arduino Shields

 PCB
 
   
   
   Built Shield
 
   
   Inserted
Shield
Arduino Shields


   Micro SD

   
   MP3 Trigger
                                
   
   Joystick
Components
Name          Image
   Type
           Function         Notes


                       Digital Input   Closes or       Polarized,
Button                                 opens circuit   needs resistor
                       Analog Input Variable
Trimpot                             resistor
LDR                    Analog Input Variable           Also known as
                                    resistor           photoresistor

Temp                   Analog Input Variable
                                    resistor
Sensor
Flex Sensor            Analog Input Variable
                                    resistor
                        Dig. &
                                   16,777,216          Ooh... So
RGB LED                 Analog
                        Output
                                   different           pretty.
                                   colors
Polarity

Polarity is when there are two or more
different sides (or leads) of a
component that have different
qualities that can not be reversed.

Examples: batteries, LEDs, buttons
Power (+5V) and Ground
          (GND)
Power is the current that goes through
the circuit, and ground is the current
return path (collector)

Always make sure that Power and
Ground never touch directly, or the
circuit will short.

Make sure to not use over 10V, just
5V, and 3.3V, so no shock will occur.
What’s a Breadboard?
One of the most useful tools in an engineer or
  Maker’s toolkit. The four most important things
  to remember:
• Breadboard is very easy to prototype with
• A breadboard is easier than soldering
• A lot of those little holes are connected, which
  ones?
• Breadboards can break
What’s a Breadboard?
Analog and Digital
• All Arduino signals are either Analog or
  Digital
• All computers including Arduino, only
  understand Digital
• It is important to understand the
  difference between Analog and Digital
  signals since Analog signals require an
  Analog to Digital conversion
Analog to Digital Conversion

An ADC is a device that samples a
continuous quantity of digital signals,
compares it to discrete time, then
outputs an analog signal.

The ADC (analog) compatible pins on
the Arduino are A0, A1, A2, A3, A4,
and A5
I/O, or Input/Output

Input is any signal entering an
 electrical system.

Output is any signal exiting an
electrical system.
Output
 Output is any signal exiting an electrical system

• Almost all systems that use physical computing
will have some form of output
• Outputs include LEDs, a motor, a piezo buzzer,
and an RGB LED
Output
       Output is always Digital
To Output a Digital signal (On or Off) use this
code: 
digitalWrite (pinNumber, value);
Where value is HIGH (on) or LOW (off), both in
caps

To output a signal that pretends to be Analog, use
this code:
analogWrite (pinNumber, value);
Where value is a number 0 - 255
Output

To output a signal that pretends to be
analog (anywhere in between on and
off), you will have to use a PWM pin.
All PWM pins on the Arduino are
market with a “~” on the digital side.
Output
       Output is always Digital
Using a Digital signal that pretends to be an
Analog signal is called Pulse Width Modulation

Use Pulse Width Modulation, or P.W.M., for
anything that requires a signal between HIGH and
LOW (1-254, with 0 being off and 255 being on)

P.W.M. is available on Arduino Leonardo digital
pins 3, 5, 6, 9, 10, 11, and 13
Installing Drivers for Mac
The rst time you plug a Leonardo into a Mac, the
"Keyboard Setup Assistant" will launch. There's
nothing to congure with the Leonardo, so you can
close this dialogue by clicking the red button in the
top left of the window.
Installing Drivers for Windows
This method has been tested on Windows XP and 7:

• Plug in your board and wait for Windows to begin
  its driver installation process. If the installer does
  not launch automatically, Navigate to the
  Windows Device Manager (Start>Control
  Panel>Hardware) and nd the Arduino Leonardo
  listing. Right click and choose Update driver.

• If prompted to search for drivers online, choose
  "No, not this time". And click Next
Installing Drivers for Windows
Installing Drivers for Windows
• When asked to install automatically or from a
  specic location, select "Install from a list or
  specic location" and press Next
Installing Drivers for Windows
• Choose "Search for the best driver in these
  locations", and check the box "incude this
  location in the search". Click the Browse button
  and navigate to your Arduino 1.0.1 or later
  installation. Select the drivers folder an click OK
Installing Drivers for Windows
Installing Drivers for Windows
Click Next. You will receive a notication that the
  Leonardo has not passed Windows Logo testing.
  Click on the button Continue Anyway
Installing Drivers for Windows
• After a few moments, a window will tell you the
  wizard has nished installing software for
  Arduino Leonardo. Press the Finish button

(from arduino.cc)
Board Type
Serial Port / COM Port
Circuit 1: Basic Blink




                         33
34
Parts of the Sketch
void setup() {}




                  36
void loop ( ) { }
Why do I make a comment?

• Comments are great ways to
  remind you what you did,
  teach other people what that
  code means, or to make a
  long description for your
  whole piece of code for
  licenses, date, and author
Comments

• Comments are ignored by
  the compiler
• Comments can be anywhere
• Comments can start with
  a // for a one-line comment
• Another type of comment is
  multiple lines and starts with
  a /* and ends with a */
Example of Comment:
Output
      Output is always Digital, even when it’s P.W.M.

 For P.W.M. the Arduino pin turns on, then off very fast



P.W.M. Signal @ 25%
   
   
   P.W.M. Signal @ 75%
                                                  
   P.W.M. Signal
rising
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, buttons, light sensors, or just plain
voltage from a circuit
Analog Input
• To connect an analog Input to your Arduino, use
  Analog Pins # 0 - 5

• To get an analog reading:

 analogRead (pinNumber);

• Analog Input varies from 0 to 1023 on an
  Arduino
Downloading Code

https://github.com/Qtechknow/
  Arduino-Code/zipball/master/
Circuit 2: Analog Reading
Digital Sensors/Digital Input
• Digital Input could be a switch or a button

• To connect digital input to your Arduino use
  Digital Pins # 0 – 13 (Although pins # 0 & 1 are
  also used for serial)

• Digital Input needs a pinMode command (in
  setup):

 pinMode ( pinNumber, INPUT );

 Make sure to use caps for INPUT

• To get a digital reading: digitalRead
  ( pinNumber );
Digital Sensors/Digital Input
• Digital sensors are more straight forward than
  Analog

• No matter what the sensor, there are only two
  settings: On and Off (for buttons, pressed, or
  not)
• Signal is always either HIGH (On) or LOW (Off)

• Voltage signal for HIGH will be a little less than
  5V on your Leonardo

• Voltage signal for LOW will be 0V on most
  systems
Parts for Circuit 3:

Arduino Leonardo
Breadboard
Pushbutton (2)
LED (2)
Resistor - 10K Ohm (2)
Resistor - 330 Ohm (2)
Jumper Wire
Circuit 3: Buttons
Semicolons

Semicolons are needed after every line
of code, except for void setup(), void
loop(), and a few others
Operators

      The equals sign

 = is used to assign a value

== is used to compare values
Operators


&& is “and”

 || is “or”
Variables

Basic variable types:

Boolean (on or off)
Integer (a number)
Character (a letter)
Declaring Variables

  Boolean: boolean
   variableName;
Declaring Variables

    Boolean: boolean
     variableName;

Integer: int variableName;
Declaring Variables

      Boolean: boolean
       variableName;

  Integer: int variableName;

Character: char variableName;
Declaring Variables

      Boolean: boolean
       variableName;

  Integer: int variableName;

Character: char variableName;
   String: stringName [ ];
Assigning Variables

Boolean: variableName = true;
  or variableName = false;
Assigning Variables

Boolean: variableName = true;
  or variableName = false;
   Integer: variableName =
            32767;
 or variableName = -32768;
Assigning Variables

Boolean: variableName = true;
  or variableName = false;
   Integer: variableName =
            32767;
 or variableName = -32768;
Character: variableName = ‘A’;
       or stringName =
        “Crashspace”;
Variable Scope
Where you declare your variables
           matters
Circuit 4: ArduSensor + LED
Circuit 4: ArduSensor+LED
Common Functions

pinMode(pin, kind); (declares pins)
analogRead(pin); (reads an analog pin)
digitalWrite(pin, state); (tells a pin to
   turn on (5V), or turn off (0V)
if() {} (tells something to do a function,
   when something else happens
for() {} (tells something to do a function
   over and over)
Setup
           void setup ( ) {




Inputs & Outputs are declared in
  setup, this is done by using the
         pinMode function
This particular example declares digital pin # 13
       as an output, remember to use CAPS
If Statements
if ( this is true ) { do this; }
If
if ( this is true ) { do this; }
Conditional
if ( this is true ) { do this; }
Action
if ( this is true ) { do this; }
Else
else { do this; }
Basic Repetition

for (int count = 0; count<10; count++)
{
//for action code goes here
//this could be anything
}
Basic Repetition

for (int count = 0; count<10; count++)
{
//for action code goes here
}
Basic Repetition

for (int count = 0; count<10; count++)
{
//for action code goes here
}
Basic Repetition

for (int count = 0; count<10; count++)
{
//for action code goes here
}
Basic Repetition

for (int count = 0; count<10; count++)
{
//for action code goes here
}
Basic Repetition

for (int count = 0; count<10; count++)
{
//for action code goes here
}
Basic Repetition

for (int count = 0; count<10; count++)
{
//for action code goes here
}
Circuit 5: Meter
Q&A and Project time

Intro to Arduino

  • 1.
    Intro to Arduino Class Intro to Arduino Held at CRASHspace Taught by Quin 8/11/12
  • 2.
    Thank you toSparkFun for sharing the original presentation!
  • 3.
    Schedule • Getting started with Arduino and electronics • Project 1 & 2 • Break • Project 3, 4, & 5 • Explaining More Code • Q&A + Project Time
  • 4.
    Arduino Board “Strong Friend” Created in Ivrea, Italy in 2005 by Massimo Banzi & David Cuartielles Open Source Hardware Atmel Processor Coding is accessible (C++, Processing)
  • 5.
    Why do Iwant an Arduino? Arduino is a 8-bit prototyping system that is easy for the modern developer, designer, hacker, kid, or someone that has no experience in this type of genre to use. But why is important to all of us?
  • 7.
    Arduino Shields PCB Built Shield Inserted Shield
  • 8.
    Arduino Shields Micro SD MP3 Trigger Joystick
  • 9.
    Components Name Image Type Function Notes Digital Input Closes or Polarized, Button opens circuit needs resistor Analog Input Variable Trimpot resistor LDR Analog Input Variable Also known as resistor photoresistor Temp Analog Input Variable resistor Sensor Flex Sensor Analog Input Variable resistor Dig. & 16,777,216 Ooh... So RGB LED Analog Output different pretty. colors
  • 10.
    Polarity Polarity is whenthere are two or more different sides (or leads) of a component that have different qualities that can not be reversed. Examples: batteries, LEDs, buttons
  • 11.
    Power (+5V) andGround (GND) Power is the current that goes through the circuit, and ground is the current return path (collector) Always make sure that Power and Ground never touch directly, or the circuit will short. Make sure to not use over 10V, just 5V, and 3.3V, so no shock will occur.
  • 12.
    What’s a Breadboard? Oneof the most useful tools in an engineer or Maker’s toolkit. The four most important things to remember: • Breadboard is very easy to prototype with • A breadboard is easier than soldering • A lot of those little holes are connected, which ones? • Breadboards can break
  • 13.
  • 14.
    Analog and Digital •All Arduino signals are either Analog or Digital • All computers including Arduino, only understand Digital • It is important to understand the difference between Analog and Digital signals since Analog signals require an Analog to Digital conversion
  • 15.
    Analog to DigitalConversion An ADC is a device that samples a continuous quantity of digital signals, compares it to discrete time, then outputs an analog signal. The ADC (analog) compatible pins on the Arduino are A0, A1, A2, A3, A4, and A5
  • 16.
    I/O, or Input/Output Inputis any signal entering an electrical system. Output is any signal exiting an electrical system.
  • 17.
    Output Output isany signal exiting an electrical system • Almost all systems that use physical computing will have some form of output • Outputs include LEDs, a motor, a piezo buzzer, and an RGB LED
  • 18.
    Output Output is always Digital To Output a Digital signal (On or Off) use this code: digitalWrite (pinNumber, value); Where value is HIGH (on) or LOW (off), both in caps To output a signal that pretends to be Analog, use this code: analogWrite (pinNumber, value); Where value is a number 0 - 255
  • 19.
    Output To output asignal that pretends to be analog (anywhere in between on and off), you will have to use a PWM pin. All PWM pins on the Arduino are market with a “~” on the digital side.
  • 20.
    Output Output is always Digital Using a Digital signal that pretends to be an Analog signal is called Pulse Width Modulation Use Pulse Width Modulation, or P.W.M., for anything that requires a signal between HIGH and LOW (1-254, with 0 being off and 255 being on) P.W.M. is available on Arduino Leonardo digital pins 3, 5, 6, 9, 10, 11, and 13
  • 21.
    Installing Drivers forMac The rst time you plug a Leonardo into a Mac, the "Keyboard Setup Assistant" will launch. There's nothing to congure with the Leonardo, so you can close this dialogue by clicking the red button in the top left of the window.
  • 22.
    Installing Drivers forWindows This method has been tested on Windows XP and 7: • Plug in your board and wait for Windows to begin its driver installation process. If the installer does not launch automatically, Navigate to the Windows Device Manager (Start>Control Panel>Hardware) and find the Arduino Leonardo listing. Right click and choose Update driver. • If prompted to search for drivers online, choose "No, not this time". And click Next
  • 23.
  • 24.
    Installing Drivers forWindows • When asked to install automatically or from a specific location, select "Install from a list or specific location" and press Next
  • 25.
    Installing Drivers forWindows • Choose "Search for the best driver in these locations", and check the box "incude this location in the search". Click the Browse button and navigate to your Arduino 1.0.1 or later installation. Select the drivers folder an click OK
  • 26.
  • 27.
    Installing Drivers forWindows Click Next. You will receive a notication that the Leonardo has not passed Windows Logo testing. Click on the button Continue Anyway
  • 28.
    Installing Drivers forWindows • After a few moments, a window will tell you the wizard has finished installing software for Arduino Leonardo. Press the Finish button (from arduino.cc)
  • 31.
  • 32.
    Serial Port /COM Port
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
    Why do Imake a comment? • Comments are great ways to remind you what you did, teach other people what that code means, or to make a long description for your whole piece of code for licenses, date, and author
  • 39.
    Comments • Comments areignored by the compiler • Comments can be anywhere • Comments can start with a // for a one-line comment • Another type of comment is multiple lines and starts with a /* and ends with a */
  • 40.
  • 41.
    Output Output is always Digital, even when it’s P.W.M. For P.W.M. the Arduino pin turns on, then off very fast P.W.M. Signal @ 25% P.W.M. Signal @ 75% P.W.M. Signal rising
  • 42.
    Input Inputis 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, buttons, light sensors, or just plain voltage from a circuit
  • 43.
    Analog Input • Toconnect an analog Input to your Arduino, use Analog Pins # 0 - 5 • To get an analog reading: analogRead (pinNumber); • Analog Input varies from 0 to 1023 on an Arduino
  • 44.
  • 45.
  • 48.
    Digital Sensors/Digital Input •Digital Input could be a switch or a button • To connect digital input to your Arduino use Digital Pins # 0 – 13 (Although pins # 0 & 1 are also used for serial) • Digital Input needs a pinMode command (in setup): pinMode ( pinNumber, INPUT ); Make sure to use caps for INPUT • To get a digital reading: digitalRead ( pinNumber );
  • 49.
    Digital Sensors/Digital Input •Digital sensors are more straight forward than Analog • No matter what the sensor, there are only two settings: On and Off (for buttons, pressed, or not) • Signal is always either HIGH (On) or LOW (Off) • Voltage signal for HIGH will be a little less than 5V on your Leonardo • Voltage signal for LOW will be 0V on most systems
  • 50.
    Parts for Circuit3: Arduino Leonardo Breadboard Pushbutton (2) LED (2) Resistor - 10K Ohm (2) Resistor - 330 Ohm (2) Jumper Wire
  • 51.
  • 54.
    Semicolons Semicolons are neededafter every line of code, except for void setup(), void loop(), and a few others
  • 55.
    Operators The equals sign = is used to assign a value == is used to compare values
  • 56.
  • 57.
    Variables Basic variable types: Boolean(on or off) Integer (a number) Character (a letter)
  • 58.
    Declaring Variables Boolean: boolean variableName;
  • 59.
    Declaring Variables Boolean: boolean variableName; Integer: int variableName;
  • 60.
    Declaring Variables Boolean: boolean variableName; Integer: int variableName; Character: char variableName;
  • 61.
    Declaring Variables Boolean: boolean variableName; Integer: int variableName; Character: char variableName; String: stringName [ ];
  • 62.
    Assigning Variables Boolean: variableName= true; or variableName = false;
  • 63.
    Assigning Variables Boolean: variableName= true; or variableName = false; Integer: variableName = 32767; or variableName = -32768;
  • 64.
    Assigning Variables Boolean: variableName= true; or variableName = false; Integer: variableName = 32767; or variableName = -32768; Character: variableName = ‘A’; or stringName = “Crashspace”;
  • 65.
    Variable Scope Where youdeclare your variables matters
  • 66.
  • 67.
  • 69.
    Common Functions pinMode(pin, kind);(declares pins) analogRead(pin); (reads an analog pin) digitalWrite(pin, state); (tells a pin to turn on (5V), or turn off (0V) if() {} (tells something to do a function, when something else happens for() {} (tells something to do a function over and over)
  • 70.
    Setup void setup ( ) { Inputs & Outputs are declared in setup, this is done by using the pinMode function This particular example declares digital pin # 13 as an output, remember to use CAPS
  • 71.
    If Statements if (this is true ) { do this; }
  • 72.
    If if ( thisis true ) { do this; }
  • 73.
    Conditional if ( thisis true ) { do this; }
  • 74.
    Action if ( thisis true ) { do this; }
  • 75.
  • 76.
    Basic Repetition for (intcount = 0; count<10; count++) { //for action code goes here //this could be anything }
  • 77.
    Basic Repetition for (intcount = 0; count<10; count++) { //for action code goes here }
  • 78.
    Basic Repetition for (intcount = 0; count<10; count++) { //for action code goes here }
  • 79.
    Basic Repetition for (intcount = 0; count<10; count++) { //for action code goes here }
  • 80.
    Basic Repetition for (intcount = 0; count<10; count++) { //for action code goes here }
  • 81.
    Basic Repetition for (intcount = 0; count<10; count++) { //for action code goes here }
  • 82.
    Basic Repetition for (intcount = 0; count<10; count++) { //for action code goes here }
  • 83.
  • 86.

Editor's Notes

  • #2 Ask What their name is, and why they took this class, what they dream of making\n
  • #3 \n
  • #4 Hopefully, everyone has. If not, give them the download drive, download to desktop, and then retrieve from them.\n
  • #5 Original Arduino team is 5.\n
  • #6 Projects.\n
  • #7 Explain everything, and have everybody look at theirs. We&amp;#x2019;re going to use these later.\n
  • #8 These are soldered Joystick Shields. Shields are used to expand the possibilities of the Arduino.\n
  • #9 \n
  • #10 These are commonly used components.\n
  • #11 Take a look at the LEDs, talk about cathode and anode.\n
  • #12 \n
  • #13 \n
  • #14 Look on your Breadboards. On the back, there is some adhesive covering the back, but here&amp;#x2019;s what&amp;#x2019;s inside.\n
  • #15 Key concept.\n
  • #16 Look at your Arduino. The bottom right of the Arduino should be all analog pins.\n
  • #17 \n
  • #18 \n
  • #19 Code is a different language than english.\n
  • #20 Have them look at their Arduino and identify the PWM pins.\n
  • #21 \n
  • #22 They have handouts on this.\n
  • #23 \n
  • #24 \n
  • #25 \n
  • #26 \n
  • #27 \n
  • #28 \n
  • #29 \n
  • #30 Now open up Arduino 1.0.1. Sketches are programs filled with code.\n
  • #31 \n
  • #32 \n
  • #33 Click on Find Arduino...\nNow, plug the USB cable into the Arduino, then into your computer.\nThe correct Serial/COM port should appear. \nRemember this port name.\nPress OK, and you should be done.\n\nFor Macs, this should be something like /dev/tty.usbserialft/\nFor Windows, this should be something above COM 3. COM 1 and 2 are usually reserved for Windows hardware ports.\n
  • #34 This sketch will blink the built in LED.\n
  • #35 File examples basic blink\nOpen arduino\nEncourage delay change\nChange blink to analog write.\n
  • #36 \n
  • #37 \n
  • #38 \n
  • #39 \n
  • #40 \n
  • #41 If you look back at the Blink sketch that we just made, you will see some comments up at the top.\n
  • #42 \n
  • #43 \n
  • #44 \n
  • #45 \n
  • #46 To get the code, go into the folder that you just downloaded, open the ArduSensorPotRead folder, and double click on the file named ArduSensorPotRead.ino.\n
  • #47 Once opening the Serial Monitor (pressing the magnifying glass in the upper right hand corner), you will see that there will be a constant value between 1 and 1000. Now tell them about how to turn it. Once code has been explained, have them change the 1000 to 100 or 10 or 5 or something.\n
  • #48 \n
  • #49 \n
  • #50 \n
  • #51 \n
  • #52 To get this code, go into the previous folder that we downloaded, open up the DigitalinputEx folder, and double click on DigitalinputEx.ino. Write connections on whiteboard.\n
  • #53 When you press one of the buttons, it will light one of the LEDs. When you press the other button, it will light the other LED.\n
  • #54 \n
  • #55 Take a look at the last example. This uses semicolons\n
  • #56 \n
  • #57 \n
  • #58 \n
  • #59 \n
  • #60 \n
  • #61 \n
  • #62 \n
  • #63 True=On\nFalse=Off\n
  • #64 anywhere in between those numbers for integers\n
  • #65 A string is a bunch of characters put together, or as we know it, words.\n
  • #66 \n
  • #67 Just plug in your ArduSensor Pot like you did before. This is the same circuit as #2, but a different sketch has been written for a different project.\n
  • #68 This will make the built in LED blink at a certain rate depending on how much you turn the potentiometer.\n
  • #69 \n
  • #70 \n
  • #71 This sets pin 13 as an output. \n
  • #72 This basically says that if the button is pressed, turn the LED on.\n
  • #73 \n
  • #74 \n
  • #75 \n
  • #76 Else means that if the if doesn&amp;#x2019;t run (basically the if isn&amp;#x2019;t true), the next function will work. This means that at least one piece of the code will run all of the time.\n
  • #77 If this is zero, and this is ten, this piece of code will run 10 times before moving on to the rest of the code.\n
  • #78 \n
  • #79 \n
  • #80 \n
  • #81 \n
  • #82 \n
  • #83 \n
  • #84 This project makes the QBar Graph light up proportionally to the value of the potentiometer, making a simple meter.\n
  • #85 \n
  • #86 \n
  • #87 \n