Difference between revisions of "Arduino"

From Earlham CS Department
Jump to navigation Jump to search
 
Line 3: Line 3:
  
  
=Sensors=
+
=Getting Started=
==photoresistor==
+
The Arduino platform is mature and well understood. To get started, follow one of these guides:
==temperature==
+
* [http://arduino.cc/en/Guide/Windows (Windows)]
==servo==
+
* [http://arduino.cc/en/Guide/MacOSX (OSX)]
==LCD==
 
 
 
 
 
 
=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 15:33, 13 May 2014

I am a page. Edit me.


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.

Examples

Snippets