The unit Arduino uses to measure time.
e.g. delay(1000);
What is milliseconds?
A type of signal useful for turning a light on and off.
What is digital signal?
Pin ~9 is an example of this type of signal.
What is analog signal?
The three colors represented in RGB.
The country of origin for the Arduino board?
What is Italy?
The main code in an Arduino Sketch to run repeatedly.
What is void loop?
A type of signal that can take on any number of values, useful for dimming a light?
What is analog signal?
A construction base that allows you to easily develop and replace an electronic circuit and wirings.
What is a breadboard?
A device that emits light when an electric current passes through it.
What is LED?
The number of analog pins present on the Arduino board?
What is 6?
The use of a capital letter to begin the second word in a compound phrase when it is not separated from the first word by a space.
e.g. digitalWrite
What is camel case?
The unit that measures how much pressure there is in an electric circuit.
What is volts?
The pin(s) that serve as a reference point for 0 Volts.
What is GND?
The brightness variable is an integer between these two numbers.
What is 0 and 255?
What is 8.
A mode that instructs a pin to act as either an output or input.
What is pinMode?
The way to apply pulses in short bursts of regulated voltage.
What is Pulse Width Modulation?
An electrical component that restricts the flow of an electrical current.
What is a resistor?
int ledPin = 13; // LED connected to digital pin 13
void setup () {
pinMode (ledPin, OUTPUT)
}
void loop (){
digitalWrite (ledPin, High);
delay (1000);
digitalWrite (ledPin, Low);
delay (1000);
}
What is blink?
An electronic device used to produce a tone, alarm, or sound.
What is a Piezo buzzer?
A place to store a piece of data. It has a name, a value, and a type.
e.g. int pin = 13
What is a variable?
The distance between digital pulses.
What is frequency?
Used for uploading sketches to the board and for communication between the board and computer.
What is a USB?
A variable for how many points to fade the LED by.
What is fadeAmount?
A collection of variables that are accessed with an index name.
e.g int (animals) = {
cat, dog, rabbit, goldfish
};
What is an array?