Quiz Q3 Flashcards
Where do you set the Arduino Board and the Port you are going to use?
Tools
The other term for an Arduino File?
A sketch
3 main parts of Arduino IDE
Editor, Message, Console
the language used by a program
syntax
descriptive statements that the programmer writes to help explain the code
comment
ignored by the compiler, you may write anything you want
comment
with “ // “ symbol
single line comment
/*
this
is
a
comment
*/
multiline comment
this tells the compiler that a chunk of code is finished and are moving on to the next code
semicolon
signifies a complete statement, equivalent to a period in a sentence
; semicolon
what happens when you forgot a semicolon
an error occur
used to enclose further instructions carried out by a function
curly brace { }
pieces of code that are used so often that they are encapsulated in a certain keywords so that you can use them more easily
function
the name of the function will appear
orange
information the function uses when it runs
arguments
how to you write a function?
pinMode ( );
to easily organized the codes, spaces are made
indention
where arduino code type in
editor