Programming
Signals
Circuit Board
Lights
Miscellaneous
100

The unit Arduino uses to measure time. 

e.g. delay(1000); 

What is milliseconds?

100

A type of signal useful for turning a light on and off.

What is digital signal?

100

Pin ~9 is an example of this type of signal.

What is analog signal?

100

The three colors represented in RGB.

What is Red, Green, Blue?
100

The country of origin for the Arduino board?

What is Italy?

200

The main code in an Arduino Sketch to run repeatedly.

What is void loop?

200

A type of signal that can take on any number of values, useful for dimming a light?

What is analog signal?

200

A construction base that allows you to easily develop and replace an electronic circuit and wirings.

What is a breadboard?

200

A device that emits light when an electric current passes through it.

What is LED?

200

The number of analog pins present on the Arduino board?

What is 6?

300

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?

300

The unit that measures how much pressure there is in an electric circuit.

What is volts?

300

The pin(s) that serve as a reference point for 0 Volts. 

What is GND?

300

The brightness variable is an integer between these two numbers.

What is 0 and 255?

300
The number of notes used for the toneMelody sketch. 

What is 8.

400

A mode that instructs a pin to act as either an output or input.

What is pinMode?

400

The way to apply pulses in short bursts of regulated voltage. 

What is Pulse Width Modulation?

400

An electrical component that restricts the flow of an electrical current. 

What is a resistor?

400

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?

400

An electronic device used to produce a tone, alarm, or sound.

What is a Piezo buzzer?

500

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?

500

The distance between digital pulses.

What is frequency?

500

Used for uploading sketches to the board and for communication between the board and computer.

What is a USB?

500

A variable for how many points to fade the LED by.

What is fadeAmount?

500

A collection of variables that are accessed with an index name.

e.g int (animals) = {

   cat, dog, rabbit, goldfish

};

What is an array?

M
e
n
u