first fact sheet Flashcards
Arduino program
called a sketch
integrated development environment
asoftware applicationthat provides comprehensive facilities tocomputer programmersforsoftware development.
The void setup
part of a sketch runs once and is the first set of commands that the Arduino runs.
The void loop
part of a sketch runs continuously after the void setup instructions have been followed.
debugger
searching for syntax errors, bugs, and other issues that might prevent the sketch from running successfully
upload
compile the sketch and upload it onto the Arduino microprocessor.
Serial command
creates a link to the serial monitor at a specified rate of data transmission.
Serial Monitor
window in the Arduino IDE that can receive messages or data from the Arduino and show them on the computer screen.
function
container for statements (lines of code) that tell the Arduino to do certain jobs.”
library
a file or set of files that contains a set of values, variables, functions, drivers, etc
Hardware
physical components or pieces of a computer, such as a keyboard, monitor, hard disk drive, motherboard, or USB port.
Software
is the electronic or digital programs and instructions a computer uses to operate.
Source code
is another name for the lines of code or written instructions that tell a computer or microprocessor what to do.
compiler
takes source code and converts it into machine language (and eventually binary) which the computer can actually read and understand.
argument
is a value or parameter used by a command or piece of code in a program