Arduino
Jump to navigation
Jump to search
I am a page. Edit me.
Contents
Getting Started
The Arduino platform is mature and well understood. To get started, follow one of these guides:
Code
Every Arduino program is composed of two parts. The first part is the Setup() function, which runs once when the board is powered on, and the main() function, which loops continuously for as long as the board is powered. Note that these two functions are in separate scopes, so any globals must be declared outside of either one.