Microprocessor (Mod 4) Flashcards
What is being done with this code
digitalWrite(13, HIGH);
LED (13) is turned ON
What is being done with this code
digitalWrite(13, LOW);
LED (13) is turned OFF
delay(500)
wait for 500 milliseconds
It is being passed to a function when it is called
Arguments
The parameters for a function must be enclosed in ___ and separated by ___
- parentheses
- commas
This takes the code you have written and translates it into machine code—the binary language that the Arduino understands.
compilation
you have to have some “___” code, as it is called, before you can add your own code into a sketch.
boilerplate
Arduino programming the “boilerplate” code takes the form of the “___” and “___” functions that must always be present in a sketch.
- setup
- loop
Maximum file size according to the IDE
32,256 bytes
The line ___ means that you are defining a function called ___
- void setup()
- setup
___ and ___ are two functions that you must define for yourself in every sketch that you write
- setup
- loop
is used as a function return type, it indicates that the function does not return a value
void