Arduino Programming 1 Flashcards
A program you write to run on an Arduino Board
Sketch
An input or output connected to something e.g. output to an LED, input for a knob.
pin
Value is either HIGH or LOW.
(a.k.a. on/off, one/zero)
e.g. switch state.
digital
Value ranges, usually from 0-255.
e.g. LED brightness, motor speed, etc.
analog
Is a signal / information
going into the board.
Inputs
Is any signal exiting the
board
Output
Almost all systems that use physical computing will have some form of output.
True/False
True
5 Examples of Inputs:
Buttons Switches,
Light Sensors,
Flex Sensors,
Humidity Sensors,
Temperature Sensors
6 Examples of Outputs:
LEDs,
DC motor,
servo motor,
piezo buzzer,
relay,
RGB LED
Are digital devices – ON or OFF.
Also called – discrete
Microcontrollers
Are anything that can be a full range of values
Analog signals
Sets pin to either INPUT or OUTPUT
pinMode(pin, mode)
Reads HIGH or LOW from a pin
digitalRead(pin)
Writes HIGH or LOW to a pin
digitalWrite(pin, value)
Pauses for a few milliseconds
delay(ms)
Pauses for a few microseconds
delayMicroseconds(us)
What are two basic sections that Arduino programs run on
void setup() {
//setup motors, sensors etc
}
void loop() {
// get information from sensors
// send commands to motors
}
Is used for assigning input and outputs (Examples: motors, LED’s, sensors etc) to ports on the Arduino. It also specifies whether the device is OUTPUT or INPUT
setup()
A pin on arduino can be set as input or output by using
pinMode function
Makes the output voltage on pin 13 , 0V
digitalWrite(13, LOW);
Makes the output voltage on pin 13 , 5V
digitalWrite(13, HIGH);
reads the value of pin 2 in buttonState
int buttonState = digitalRead(2);
It is like “bucket”. It holds numbers or other values temporarily
Variables
Are for you – the programmer and
your friends…or anyone else human that
might read your code.
Comments
Is used for single line comments
//
Is used for multi-line
comments
/* */
“Hello World” of Physical Computing
Blink
Are sensor that are more straight forward than Analog. Signal is always either HIGH (On) or LOW (Off)
Digital sensors