A function is a series of programming statements that can be called by name. Which command is called repetitively over and over again as long as the Arduino has power.
loop()
setup()
output()
input()
A function is a series of programming statements that can be called by name. Which command delays the LED by a number of milliseconds is _______.
delay()
stop()
What does this sketch do ?
This sets up the pin that our LED is connected to as an OUTPUT pin.
This sets up the pin that our LED is connected to as an INPUT pin
This sets up and LED to turn off
Turns the LED off by writing LOW out on the pin.
If we start by writing HIGH out on the pin connected to the LED. What will it make the LED do? (HIGH means putting 5V out on the pin)
Turn the LED on
Turn the LED off
If we start by writing LOW out on the pin connected to the LED. What will it make the LED do? (LOW means putting 0V out on the pin)
It starts with a /* and continues until a */ What does this do ?
Loads a sketch
Makes comments
Compiles quicker
Makes stars appear
How many digital pins are there on the UNO board?
12
14
16
20