Arduino Basic Programming - SW Flashcards
What is the default analog reference voltage of your Arduino Uno
5
Arduino need additional programmer or burner hardware required for programming board
False
What command would you use to tell the Arduino that there is an assign variable in port 9
a. 9;
b. 9;
c. char pinOut;
d. digitalWrite(9,LOW)
e. pinMode(9, OUTPUT)
f. int pinout
digitalWrite(9, LOW)
Which of these can an Arduino NOT used for
a. All of these
b. Controlling servos
c. Displaying analog inputs
d. Building hybrid humanoid robot
d. Building hybrid humanoid robots
How many analog ports does Arduino Uno have
6
Software written using Arduino are called
sketch
This function in Arduino pauses the program for the amount of time (in milliseconds)as specified as parameter
delay
What are the two arduino’s main program structures/.
setup and loop
This function in Arduino is used to write a HIGH or LOW value to a digital pin
digitalWrite
It is a function in Arduino that will execute repeatedly
void loop()
One of the basic structure of any Arduino program that is called once when the program starts
void setup()
This function configures the specified pin to behave either as an input or an output
pinMode
Arduino uses a 5V to 6.6V of power supply
False
The program/code written by your Arduino IDE are stored in what format?
.ino
When using the delay function in Arduino, one can perform other task like reading another input pin before the delay time expires
False