Difference between revisions of "Arduino"
Jump to navigation
Jump to search
Line 3: | Line 3: | ||
− | = | + | =Getting Started= |
− | + | The Arduino platform is mature and well understood. To get started, follow one of these guides: | |
− | + | * [http://arduino.cc/en/Guide/Windows (Windows)] | |
− | + | * [http://arduino.cc/en/Guide/MacOSX (OSX)] | |
− | |||
− | |||
− | |||
=Code= | =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. | ||
==Examples== | ==Examples== | ||
==Snippets== | ==Snippets== |
Latest revision as of 14:33, 13 May 2014
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.