You are on page 1of 6

10/28/13

Arduino - Wikipedia, the free encyclopedia

Arduino
From Wikipedia, the free encyclopedia

Arduino is a single-board microcontroller to make using electronics in multidisciplinary projects more accessible. The hardware consists of an 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 doit-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]

Arduino

Contents
1 History 2 Hardware 2.1 Official boards 2.2 Shields 3 Software 4 Development 5 Applications 6 Reception 7 See also 8 References 9 External links

"Arduino Uno" Revision 3 Type Website Single-board microcontroller w w w .arduino.cc (http://w w w .arduino.cc)

History
Arduino started in 2005 as a project for students at the Interaction Design Institute Ivrea in 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.[2] 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 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.[2]

Hardware
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 IC 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.
en.wikipedia.org/wiki/Arduino 1/6

10/28/13

Arduino - Wikipedia, the free encyclopedia

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 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.10-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 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.
An official Arduino Uno w ith descriptions of the I/O locations

Official boards
Further information: List of Arduino boards and compatible systems

A 3rd-party Arduino board w ith a RS-232 serial interface (upper left) and an Atmel ATmega8 microcontroller chip (black, low er right); the 14 digital I/O pins are located at the top and the six analog input pins at the low er right.

The original Arduino hardware is manufactured by the Italian company Smart Projects.[3] Some Arduino-branded boards have been designed by the American company SparkFun Electronics.[4] Sixteen versions of the Arduino hardware have been commercially produced to date. Example Arduino boards

Arduino Diecimila

Arduino Duemilanove (rev 2009b)

Arduino UNO

Arduino Leonardo

en.wikipedia.org/wiki/Arduino

2/6

10/28/13

Arduino - Wikipedia, the free encyclopedia

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.[5][6][7] Example Arduino shields

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
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".[9] 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:
s e t u p ( ) :

Arduino Software IDE

a function run once at the start of a program


A screenshot of the Arduino IDE show ing the "Blink" program, a simple beginner program Developer(s) Arduino Softw are
3/6

that can initialize settings l o o p ( ) : a function called repeatedly until the board powers off

en.wikipedia.org/wiki/Arduino

10/28/13

Arduino - Wikipedia, the free encyclopedia

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:[10]

Stable release Preview release Written in

1.0.5 / May 15, 2013[8] 1.5.4 Beta / September 10, 2013 Java, C and C++

Operating system Cross-platform Type # d e f i n eL E D _ P I N1 3 License v o i ds e t u p( ){ Website p i n M o d e( L E D _ P I N ,O U T P U T ) ;/ /E n a b l ep i n1 3f o rd i g i t a lo u t p u t } v o i dl o o p( ){ d i g i t a l W r i t e( L E D _ P I N ,H I G H ) ;/ /T u r no nt h eL E D d e l a y( 1 0 0 0 ) ;/ /W a i to n es e c o n d( 1 0 0 0m i l l i s e c o n d s ) d i g i t a l W r i t e( L E D _ P I N ,L O W ) ;/ /T u r no f ft h eL E D d e l a y( 1 0 0 0 ) ;/ /W a i to n es e c o n d } Integrated development environment LGPL or GPL license arduino.cc (http://arduino.cc/en/Main/Softw are)

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.[10] 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 integrated pin 13 LED

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.[11][12]

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.[13] He also gave a talk at TEDGlobal 2012 Conference, where he outlined various uses of Arduino boards around the world.[14] 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.[15] 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.[16] Several Arduino-compatible products commercially released have avoided the "Arduino" name by using "-duino" name variants.[17]

Applications
Xoscillo: open-source oscilloscope[18] Scientific equipment[19] 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
en.wikipedia.org/wiki/Arduino 4/6

10/28/13

Arduino - Wikipedia, the free encyclopedia

ArduinoPhone[20]

Reception
The Arduino project received an honorary mention in the Digital Communities category at the 2006 Prix Ars Electronica.[21][22]

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 Microduino UDOO

References
1. ^ "How many Arduinos are "in the wild?" About 300,000" (http://www.adafruit.com/blog/2011/05/15/how-manyarduinos-are-in-the-wild-about-300000/). Adafruit Industries. May 15, 2011. Retrieved 2013-05-26. 2. ^ a b http://spectrum.ieee.org/geek-life/hands-on/the-making-of-arduino 3. ^ Smart Projects (http://smartprj.com/) 4. ^ Schmidt, M. ["Arduino: A Quick Start Guide"], Pragmatic Bookshelf, January 22, 2011, Pg. 201 5. ^ "Shields fuer Arduino wenig Aufwand Selbst Bauen". web.de (http://web.de/elo/mikrocontroller-undprogrammierung/arduino/shields-fuer-arduino-mit-wenig-aufwand-selbst-bauen) 6. ^ "Arduino breadboard shield: US$10 & 10 mins". todbot.com (http://todbot.com/blog/2006/07/11/arduinobreadboard-shield/) 7. ^ Igoe, Tom (April 4, 2006). "Arduino Shields for Prototyping". tigoe.net (http://www.tigoe.net/pcomp/code/arduinowiring/26) 8. ^ "Arduino Software Release Notes" (http://arduino.cc/en/Main/ReleaseNotes). Arduino Project. Retrieved May 31, 2013. 9. ^ "Programming Arduino Getting Started with Sketches" (http://www.amazon.com/Programming-Arduino-GettingStarted-Sketches/dp/0071784225/ref=sr_1_1?s=books&ie=UTF8&qid=1364494138&sr=11&keywords=arduino+sketches). McGraw-Hill. Nov 8, 2011. Retrieved 2013-03-28. 10. ^ a b "Blink Tutorial" (http://arduino.cc/en/Tutorial/Blink). Arduino.cc. 11. ^ "Using Atmel Studio for Arduino development" (http://www.megunolink.com/Building_an_Arduino_project_with_MegunoLink_and_Atmel_Studio_(Blink_Tutorial)). Megunolink.com. Retrieved 2013-01-18. 12. ^ "Using AVR Studio for Arduino development" (http://www.engblaze.com/tutorial-using-avr-studio-5-with-arduinoen.wikipedia.org/wiki/Arduino 5/6

10/28/13

12. ^ "Using AVR Studio for Arduino development" (http://www.engblaze.com/tutorial-using-avr-studio-5-with-arduinoprojects/). Engblaze.com. Retrieved 2013-01-18. 13. ^ "FLOSS Weekly Episode 61 Arduino" (audio, MP3). Twit.tv. March 21, 2009 (http://twit.tv/floss61) 14. ^ Banzi, Massimo. "How Arduino is open-sourcing imagination" (http://www.ted.com/talks/massimo_banzi_how_arduino_is_open_sourcing_imagination.html). TED. 15. ^ "The arduino source code" (https://github.com/arduino/Arduino). The arduino source code. 16. ^ "Policy" (http://arduino.cc/en/Main/Policy). Arduino.cc. Retrieved 2013-01-18. 17. ^ "Freeduino Open Designs" (http://www.freeduino.org/freeduino_open_designs.html). Freeduino.org. Retrieved 2008-03-03. 18. ^ "xoscillo A software oscilloscope that acquires data using an arduino or a parallax (more platforms to come). Google Project Hosting" (http://code.google.com/p/xoscillo/). Code.google.com. Retrieved 2013-01-18. 19. ^ Pearce, Joshua M. 2012. "Building Research Equipment with Free, Open-Source Hardware". Science 337 (6100): 13031304. (http://www.sciencemag.org/content/337/6100/1303.summary) (open access) (http://mtu.academia.edu/JoshuaPearce/Papers/1867941/Open_Source_Research_in_Sustainability) 20. ^ ArduinoPhone (http://www.instructables.com/id/ArduinoPhone/). Instructables.com (2013-07-17). Retrieved on 2013-08-04. 21. ^ "Prix Ars Electronica 2006 Digital Communities ANERKENNUNGEN listing" (http://90.146.8.18/de/archives/prix_archive/prix_year_cat.asp?iProjectID=13638&iCategoryID=12420) (in German). Retrieved 2009-02-18. 22. ^ "Prix Ars Electronica 2006 Digital Communities ANERKENNUNGEN description" (http://90.146.8.18/de/archives/prix_archive/prix_projekt.asp?iProjectID=13789#) (in German). Retrieved 2009-02-18.

Arduino - Wikipedia, the free encyclopedia

External links
Official website (http://arduino.cc/) Arduino The Documentary (http://www.imdb.com/title/tt1869268/) at the Internet Movie Database, YouTube (https://www.youtube.com/watch?v=8zB2KIm4EEQ), Vimeo (http://vimeo.com/18539129) Basic Arduino temperature web monitor (http://exosite.com/project/basic-arduino-temperature-web-monitor) Simple Arduino setup process. Documentary about Arduino (http://tv.wired.it/entertainment/2012/12/06/arduino-creare-e-un-gioco-da-ragazzieng-sub.html), Wired Magazine (in Italian) Arduino Shield list (http://shieldlist.org/) How to install additional Arduino libraries? (http://arduino.cc/en/Guide/Libraries) Arduino Cheat Sheet (http://robodino.org/resources/arduino) Arduino Board Pinout Diagrams: Due (http://arduino.cc/forum/index.php?/topic,132130.0.html), Esplora (http://www.flickr.com/photos/28521811@N04/8469564216/sizes/l/in/photostream/), Leonardo (http://www.flickr.com/photos/28521811@N04/8466547410/sizes/l/in/photostream/), Mega (http://www.flickr.com/photos/28521811@N04/8451024820/sizes/l/in/photostream/), Micro (http://www.flickr.com/photos/28521811@N04/8471357492/sizes/l/in/photostream/), Mini (http://www.flickr.com/photos/28521811@N04/8453583648/sizes/l/in/photostream/), Uno (http://www.flickr.com/photos/28521811@N04/8449936925/sizes/l/in/photostream/) Retrieved from "http://en.wikipedia.org/w/index.php?title=Arduino&oldid=579050036" Categories: Arduino Open hardware electronic devices Microcontrollers 2005 introductions Internet of Things Robotics hardware
This page w as last modified on 28 October 2013 at 03:05. Text is available under the Creative Commons Attribution-ShareAlike License; additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy. Wikipedia is a registered trademark of the Wikimedia Foundation, Inc., a non-profit organization.

en.wikipedia.org/wiki/Arduino

6/6

You might also like