So I thought I would do a quick post about Arduino boards. The following links that takes you to the open-source website. http://www.arduino.cc/.
“Arduino is an open-source electronics prototyping platform based on flexible, easy-to-use hardware and software. It's intended for artists, designers, hobbyists, and anyone interested in creating interactive objects or environments.”
“Arduino is a hardware device and software used to program it. An Arduino is used for the design and development of embedded computer systems. An Arduino consists of a simple open hardware design for a single-board microcontroller, with embedded I/O support and a standard programming language. An Arduino is programmed using the Wiring language, which is essentially C++ with a few simplifications. The Processing programming language is often used to interface a computer with an Arduino, often to create unorthodox interfaces.”
A typical first program for an Arduino board.
#define LED_PIN 13
void setup () {
pinMode (LED_PIN, OUTPUT); // enable pin 13 for digital output
}
void loop () {
digitalWrite (LED_PIN, HIGH); // turn on the LED
delay (1000); // wait one second (1000 milliseconds)
digitalWrite (LED_PIN, LOW); // turn off the LED
delay (1000); // wait one second
}