February 2009
Beginner
128 pages
2h 45m
English
Here is a quick explanation of all the standard instructions supported by the Arduino language.
For a more detailed reference, see: arduino.cc/en/Reference/HomePage
An Arduino sketch runs in two parts:
void setup()
This is where you place the initialisation code—the instructions that set up the board before the main loop of the sketch starts.
void loop()
This contains the main code of your sketch. It contains a set of instructions that get repeated over and over until the board is switched off.
Read now
Unlock full access