Arduino
This article includes a list of general references, but it lacks sufficient corresponding inline citations. (January 2013) |
Arduino is a single-board microcontroller to make using electronics in multidisciplinary projects more accessible. The hardware consists of a simple open source hardware board designed around an 8-bit Atmel AVR microcontroller, or a 32-bit Atmel ARM. The software consists of a standard programming language compiler and a boot loader that executes on the microcontroller.
Arduino boards can be purchased pre-assembled or as do-it-yourself kits. Hardware design information is available for those who would like to assemble an Arduino by hand. It was estimated in mid-2011 that over 300,000 official Arduinos had been commercially produced.[1]
History
Arduino started in 2005 as a project for students at the Design Institute of Ivrea, Italy. At that time program students used a "BASIC Stamp" at a cost of $100, considered expensive for students. Casey Reas, one of the founders, taught at Ivrea.
A hardware thesis was contributed for a wiring design by Colombian student Hernando Barragan. After the wiring platform was complete, researchers worked to make it cheaper, lighter, less expensive, and available to the open source community. The school eventually closed down, so these researchers, one of them David Cuartielles promoted the idea.
Hardware
This section needs additional citations for verification. (May 2013) |
An Arduino board consists of an Atmel 8-bit AVR microcontroller with complementary components to facilitate programming and incorporation into other circuits. An important aspect of the Arduino is the standard way that connectors are exposed, allowing the CPU board to be connected to a variety of interchangeable add-on modules known as shields. Some shields communicate with the Arduino board directly over various pins, but many shields are individually addressable via an I²C serial bus, allowing many shields to be stacked and used in parallel. Official Arduinos have used the megaAVR series of chips, specifically the ATmega8, ATmega168, ATmega328, ATmega1280, and ATmega2560. A handful of other processors have been used by Arduino compatibles. Most boards include a 5 volt linear regulator and a 16 MHz crystal oscillator (or ceramic resonator in some variants), although some designs such as the LilyPad run at 8 MHz and dispense with the onboard voltage regulator due to specific form-factor restrictions. An Arduino's microcontroller is also pre-programmed with a boot loader that simplifies uploading of programs to the on-chip flash memory, compared with other devices that typically need an external programmer.
At a conceptual level, when using the Arduino software stack, all boards are programmed over an RS-232 serial connection, but the way this is implemented varies by hardware version. Serial Arduino boards contain a simple level shifter circuit to convert between RS-232-level and TTL-level signals. Current Arduino boards are programmed via USB, implemented using USB-to-serial adapter chips such as the FTDI FT232. Some variants, such as the Arduino Mini and the unofficial Boarduino, use a detachable USB-to-serial adapter board or cable, Bluetooth or other methods. (When used with traditional microcontroller tools instead of the Arduino IDE, standard AVR ISP programming is used.)
The Arduino board exposes most of the microcontroller's I/O pins for use by other circuits. The Diecimila, Duemilanove, and current Uno provide 14 digital I/O pins, six of which can produce pulse-width modulated signals, and six analog inputs. These pins are on the top of the board, via female 0.1-inch (2.5 mm) headers. Several plug-in application shields are also commercially available.
The Arduino Nano, and Arduino-compatible Bare Bones Board and Boarduino boards may provide male header pins on the underside of the board to be plugged into solderless breadboards.
There are a great many Arduino-compatible and Arduino-derived boards. Some are functionally equivalent to an Arduino and may be used interchangeably. Many are the basic Arduino with the addition of commonplace output drivers, often for use in school-level education to simplify the construction of buggies and small robots. Others are electrically equivalent but change the form factor, sometimes permitting the continued use of Shields, sometimes not. Some variants use completely different processors, with varying levels of compatibility.
Official boards
The original Arduino hardware is manufactured by the Italian company Smart Projects.[2] Some Arduino-branded boards have been designed by the American company SparkFun Electronics.[3]
Sixteen versions of the Arduino hardware have been commercially produced to date:
- The Serial Arduino, programmed with a DE-9 serial connection and using an ATmega8
- The Arduino Extreme, with a USB interface for programming and using an ATmega8
- The Arduino Mini, a miniature version of the Arduino using a surface-mounted ATmega168
- The Arduino Nano, an even smaller, USB powered version of the Arduino using a surface-mounted ATmega168 (ATmega328 for newer version)
- The LilyPad Arduino, a minimalist design for wearable applications and E-textiles using a surface-mounted ATmega328
- The Arduino NG, with a USB interface for programming and using an ATmega8
- The Arduino NG plus, with a USB interface for programming and using an ATmega168
- The Arduino Bluetooth, with a Bluetooth interface for programming using an ATmega168
- The Arduino Diecimila, with a USB interface and utilizes an ATmega168 in a DIP28 package (pictured)
- The Arduino Duemilanove ("2009"), using the ATmega168 (ATmega328 for newer version) and powered via USB/DC power, switching automatically
- The Arduino Mega, using a surface-mounted ATmega1280 for additional I/O and memory.[4]
- The Arduino Uno, uses the same ATmega328 as late-model Duemilanove, but whereas the Duemilanove used an FTDI chipset for USB, the Uno uses an ATmega8U2 programmed as a serial converter.
- The Arduino Mega2560, uses a surface-mounted ATmega2560, bringing the total memory to 256 kB. It also incorporates the new ATmega8U2 (ATmega16U2 in revision 3) USB chipset.
- The Arduino Leonardo, with an ATmega32U4 chip that eliminates the need for USB connection and can be used as a virtual keyboard or mouse. It was released at the Maker Faire Bay Area 2012.
- The Arduino Esplora, resembling a video game controller, with a joystick and built-in sensors for sound, light, temperature, and acceleration.
- The Arduino Due is a microcontroller board based on the Atmel SAM3X8E ARM Cortex-M3 CPU. It is the first Arduino board based on a 32-bit ARM core microcontroller.[5][6]
- The Arduino YÚN (not yet available) is a microcontroller board combining a classic Arduino Leonardo with a system-on-chip running Linux.[7]
-
Arduino Diecimila
-
Arduino Duemilanove (rev 2009b)
-
Arduino UNO
-
Arduino Leonardo
-
Arduino Mega
-
Arduino Nano
-
Arduino Due (ARM-based)
-
LilyPad Arduino (rev 2007)
Shields
Arduino and Arduino-compatible boards make use of shields, printed circuit expansion boards that plug into the normally supplied Arduino pin-headers. Shields can provide motor controls, GPS, ethernet, LCD display, or breadboarding (prototyping). A number of shields can also be made DIY.[8][9][10]
-
Multiple shields can be stacked. In this example the top shield contains a solderless breadboard
-
Screw-terminal breakout shield in a wing-type format
-
Adafruit Motor Shield with screw terminals for connection to motors
-
Adafruit Datalogging Shield with a SD slot and Real-Time Clock chip
Software
Developer(s) | Arduino Software |
---|---|
Stable release | 1.0.5
/ May 15, 2013[11] |
Preview release | 1.5.2 BETA
/ February 6, 2013 |
Written in | Java, C and C++ |
Operating system | Cross-platform |
Type | Integrated development environment |
License | LGPL or GPL license |
Website | arduino.cc |
The Arduino integrated development environment (IDE) is a cross-platform application written in Java, and is derived from the IDE for the Processing programming language and the Wiring projects. It is designed to introduce programming to artists and other newcomers unfamiliar with software development. It includes a code editor with features such as syntax highlighting, brace matching, and automatic indentation, and is also capable of compiling and uploading programs to the board with a single click. A program or code written for Arduino is called a sketch.[12]
Arduino programs are written in C or C++. The Arduino IDE comes with a software library called "Wiring" from the original Wiring project, which makes many common input/output operations much easier. Users only need define two functions to make a runnable cyclic executive program:
setup()
: a function run once at the start of a program that can initialize settingsloop()
: a function called repeatedly until the board powers off
A typical first program for a microcontroller simply blinks an LED on and off. In the Arduino environment, the user might write a program like this:[13]
#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
}
It is a feature of most Arduino boards that they have an LED and load resistor connected between pin 13 and ground, a convenient feature for many simple tests.[13] The previous code would not be seen by a standard C++ compiler as a valid program, so when the user clicks the "Upload to I/O board" button in the IDE, a copy of the code is written to a temporary file with an extra include header at the top and a very simple main() function at the bottom, to make it a valid C++ program.
The Arduino IDE uses the GNU toolchain and AVR Libc to compile programs, and uses avrdude to upload programs to the board.
As the Arduino platform uses Atmel microcontrollers, Atmel's development environment, AVR Studio or the newer Atmel Studio, may also be used to develop software for the Arduino.[14][15]
Development
The core Arduino developer team is composed of Massimo Banzi, David Cuartielles, Tom Igoe, Gianluca Martino, David Mellis and Nicholas Zambetti. Massimo Banzi was interviewed on the March 21st, 2009 episode (Episode 61) of FLOSS Weekly on the TWiT.tv network, in which he discussed the history and goals of the Arduino project.[16] He also gave a talk at TEDGlobal 2012 Conference, where he outlined various uses of Arduino boards around the world.[17]
Arduino is open source hardware: the Arduino hardware reference designs are distributed under a Creative Commons Attribution Share-Alike 2.5 license and are available on the Arduino Web site. Layout and production files for some versions of the Arduino hardware are also available. The source code for the IDE is available and released under the GNU General Public License, version 2.[18]
Although the hardware and software designs are freely available under copyleft licenses, the developers have requested that the name "Arduino" be exclusive to the official product and not be used for derivative works without permission. The official policy document on the use of the Arduino name emphasizes that the project is open to incorporating work by others into the official product.[19] Several Arduino-compatible products commercially released have avoided the "Arduino" name by using "-duino" name variants.[20]
Applications
This section needs expansion. You can help by adding to it. (January 2013) |
- Xoscillo: open-source oscilloscope[21]
- Scientific equipment[22]
- Arduinome: a MIDI controller device that mimics the Monome
- OBDuino: a trip computer that uses the on-board diagnostics interface found in most modern cars
- The Humane Reader and Humane PC from Humane Informatics: low-cost electronic devices with TV-out that can hold a five thousand book library (e.g. offline Wikipedia compilations) on a microSD card
- Ardupilot: drone software / hardware
- ArduinoPhone[23]
Reception
The Arduino project received an honorary mention in the Digital Communities category at the 2006 Prix Ars Electronica.[24][25]
See also
- ARM express
- BASIC Stamp
- Fritzing
- Gadgeteer
- Gumstix
- ioBridge
- Make Controller Kit
- Maximite
- mbed microcontroller
- Minibloq
- Netduino
- OOPic
- Parallax Propeller
- PICAXE
- Raspberry Pi
- ROBOTC
- Simplecortex
- Tinkerforge
References
- ^ "How many Arduinos are "in the wild?" About 300,000". Adafruit Industries. May 15, 2011. Retrieved 2013-05-26.
- ^ Smart Projects
- ^ Schmidt, M. ["Arduino: A Quick Start Guide"], Pragmatic Bookshelf, January 22, 2011, Pg. 201
- ^ "Arduino Board Mega". Arduino.cc. Archived from the original on 30 March 2009. Retrieved 2009-03-26.
{{cite web}}
: Unknown parameter|deadurl=
ignored (|url-status=
suggested) (help) - ^ First look: Arduino Due (review).
- ^ Arduino Due Released; Arduino.cc
- ^ Arduino YÚN.
- ^ "Shields fuer Arduino wenig Aufwand Selbst Bauen". web.de [dead link]
- ^ "Arduino breadboard shield: US$10 & 10 mins". todbot.com
- ^ Igoe, Tom (April 4, 2006). "Arduino Shields for Prototyping". tigoe.net
- ^ "Arduino Software Release Notes". Arduino Project. Retrieved May 31, 2013.
- ^ "Programming Arduino Getting Started with Sketches". McGraw-Hill. Nov 8, 2011. Retrieved 2013-03-28.
- ^ a b "Blink Tutorial". Arduino.cc.
- ^ "Using Atmel Studio for Arduino development". Megunolink.com. Retrieved 2013-01-18.
- ^ "Using AVR Studio for Arduino development". Engblaze.com. Retrieved 2013-01-18.
- ^ "FLOSS Weekly Episode 61 – Arduino" (audio, MP3). Twit.tv. March 21, 2009
- ^ Banzi, Massimo. "How Arduino is open-sourcing imagination". TED.
- ^ "The arduino source code". The arduino source code.
- ^ "Policy". Arduino.cc. Retrieved 2013-01-18.
- ^ "Freeduino Open Designs". Freeduino.org. Retrieved 2008-03-03.
- ^ "xoscillo – A software oscilloscope that acquires data using an arduino or a parallax (more platforms to come). – Google Project Hosting". Code.google.com. Retrieved 2013-01-18.
- ^ Pearce, Joshua M. 2012. "Building Research Equipment with Free, Open-Source Hardware". Science 337 (6100): 1303–1304. (open access)
- ^ ArduinoPhone. Instructables.com (2013-07-17). Retrieved on 2013-08-04.
- ^ "Prix Ars Electronica 2006 – Digital Communities – ANERKENNUNGEN – listing" (in German). Retrieved 2009-02-18.
- ^ "Prix Ars Electronica 2006 – Digital Communities – ANERKENNUNGEN – description" (in German). Retrieved 2009-02-18.
External links
- Official website
- Arduino The Documentary at IMDb, YouTube, Vimeo
- Basic Arduino temperature web monitor Simple Arduino setup process.
- Documentary about Arduino, Wired Magazine (in Italian)
- Arduino Shield list
- How to install additional Arduino libraries?
- Arduino Cheat Sheet
- Arduino Board Pinout Diagrams: Due, Esplora, Leonardo, Mega, Micro, Mini, Uno