2nd fact sheet programming Flashcards
1
Q
integrated development environment
A
asoftware applicationthat provides comprehensive facilities tocomputer programmersforsoftware development. An IDE normally consists of asource code editor,build automationtools and a debugger
2
Q
sketch
A
an Arduino program is called a sketch
3
Q
void setup()
A
The void setup() part of a sketch runs once and is the first set of commands that the Arduino runs.
4
Q
void loop()
A
The void loop() part of a sketch runs continuously after the void setup instructions have been followed.