Arduino

Arduino
Arduino Software
Arduino Uno logo.png
Arduino IDE - v0011 Alpha.png
A screenshot of the Arduino IDE showing the "Blink" program, the Arduino "Hello World" for programmers.
Developer(s) Arduino Software
Stable release 0023 / November 9, 2011; 14 days ago (2011-11-09)
Written in Java
Operating system Cross-platform
Type Integrated development environment
License LGPL or GPL license
Website http://arduino.cc
Arduino microcontroller size comparison

Arduino is an open-source single-board microcontroller, descendant of the open-source Wiring platform,[1][2] designed to make the process of using electronics in multidisciplinary projects more accessible. The hardware consists of a simple open hardware design for the Arduino board with an Atmel AVR processor and on-board input/output support. The software consists of a standard programming language compiler and the boot loader that runs on the board.[3]

Arduino hardware is programmed using a Wiring-based language (syntax and libraries), similar to C++ with some simplifications and modifications, and a Processing-based integrated development environment.[3]

Current versions can be purchased pre-assembled; hardware design information is available for those who would like to assemble an Arduino by hand. Additionally, variations of the Italian-made Arduino—with varying levels of compatibility—have been released by third parties; some of them are programmed using the Arduino software.

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

Contents

History

The project began in Ivrea, Italy (the site of the computer company Olivetti), in 2005 to make a device for controlling student-built interaction design projects less expensive than other prototyping systems available at the time. As of February 2010 more than 120,000 Arduino boards had been shipped.[6] Founders Massimo Banzi and David Cuartielles named the project after Arduin of Ivrea, the main historical character of the town.[7] "Arduino" is an Italian masculine first name, meaning "strong friend". The English version of the name is "Hardwin".[8]

The Arduino project is a fork of the open-source Wiring Platform. Wiring was created by Colombian artist and programmer Hernando Barragán as a master's thesis at the Interaction Design Institute Ivrea along with co-creator Diego Gonzalez Joven a Mexican electrical engineer, under the supervision of Massimo Banzi and Casey Reas. Futhermore, Wiring is based on Processing and its integrated development environment created by Casey Reas and Ben Fry.[9]

Arduino was built around the Wiring project of Hernando Barragan. Wiring was Hernando's thesis project at the Interaction Design Institute Ivrea. It was intended to be an electronics version of Processing that used our programming environment and was patterned after the Processing syntax. It was supervised by myself and Massimo Banzi, an Arduino founder. I don't think Arduino would exist without Wiring and I don't think Wiring would exist without Processing. And I know Processing would certainly not exist without Design By Numbers and John Maeda.[1]

Platform

Hardware

An official Arduino Duemilanove (rev 2009b).

An Arduino board consists of an 8-bit Atmel 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). 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 inverter 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, now superseded by the Duemilanove, for example, provides 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 headers. Several plug-in application "shields" are also commercially available.

The Arduino Nano, and Arduino-compatible Bare Bones Board and Boarduino boards provide male header pins on the underside of the board to be plugged into solderless breadboards.

Arduino board models

Arduino Processor Flash
KiB
EEPROM
KiB
SRAM
KiB
Digital I/O
pins
...with
PWM
Analog input
pins
USB Interface
type
Dimensions
inches
Dimensions
mm
Diecimila ATmega168 16 0.5 1 14 6 6 FTDI 2.7 in × 2.1 in 68.6 mm × 53.3 mm
Due[10] ATMEL SAM3U 256 0[11] 50 54 4[12] 16
Duemilanove ATmega168/328P 16/32 0.5/1 1/2 14 6 6 FTDI 2.7 in × 2.1 in 68.6 mm × 53.3 mm
Uno ATmega328P 32 1 2 14 6 6 ATmega8U2 2.7 in × 2.1 in 68.6 mm × 53.3 mm
Leonardo Atmega32u4 32 1 2 14 6 12 Atmega32u4 integrated 2.7 in × 2.1 in 68.6 mm × 53.3 mm
Mega ATmega1280 128 4 8 54 14 16 FTDI 4 in × 2.1 in 101.6 mm × 53.3 mm
Mega2560 ATmega2560 256 4 8 54 14 16 ATmega8U2 4 in × 2.1 in 101.6 mm × 53.3 mm
Fio ATmega328P 32 1 2 14 6 8 None 1.6 in × 1.1 in 40.6 mm × 27.9 mm
Nano ATmega168 or ATmega328 16/32 0.5/1 1/2 14 6 8 FTDI 1.70 in × 0.73 in 43 mm × 18 mm
LilyPad ATmega168V or ATmega328V 16 0.5 1 14 6 6 None 2 in ⌀ 50 mm ⌀

Software

The Arduino IDE is a cross-platform application written in Java, and is derived from the IDE for the Processing programming language and the Wiring project. 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. There is typically no need to edit makefiles or run programs on a command-line interface.

The Arduino IDE comes with a C/C++ library called "Wiring" (from the project of the same name), which makes many common input/output operations much easier. Arduino programs are written in C/C++, although users only need define two functions to make a runnable program:

  • setup() – a function run once at the start of a program that can initialize settings
  • loop() – a function called repeatedly until the board powers off

A typical first program for a microcontroller simply blinks a LED (light-emitting diode) 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
}

For the above code to work correctly, the positive side of the LED must be connected to pin 13 and the negative side of the LED must be connected to ground. The above 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.

For educational purposes there is third party graphical development environment called Minibloq available under a different open source license.

Official hardware

The LilyPad Arduino is designed for flexibility so that it is easier to wear

The original Arduino hardware is manufactured by the Italian company Smart Projects. Some Arduino-branded boards have been designed by the American company SparkFun Electronics.

Thirteen versions of the Arduino hardware have been commercially produced to date:[3]

  1. The Serial Arduino, programmed with a DE-9 serial connection and using an ATmega8
  2. The Arduino Extreme, with a USB interface for programming and using an ATmega8
  3. The Arduino Mini, a miniature version of the Arduino using a surface-mounted ATmega168
  4. The Arduino Nano, an even smaller, USB powered version of the Arduino using a surface-mounted ATmega168 (ATmega328 for newer version)
  5. The LilyPad Arduino, a minimalist design for wearable application using a surface-mounted ATmega168
  6. The Arduino NG, with a USB interface for programming and using an ATmega8
  7. The Arduino NG plus, with a USB interface for programming and using an ATmega168
  8. The Arduino Bluetooth, with a Bluetooth interface for programming using an ATmega168
  9. The Arduino Diecimila, with a USB interface and utilizes an ATmega168 in a DIL28 package (pictured)
  10. The Arduino Duemilanove ("2009"), using the ATmega168 (ATmega328 for newer version) and powered via USB/DC power, switching automatically
  11. The Arduino Mega, using a surface-mounted ATmega1280 for additional I/O and memory.[14]
  12. 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.
  13. The Arduino Mega2560, uses a surface-mounted ATmega2560, bringing the total memory to 256 kB. It also incorporates the new ATmega8U2 USB chipset.

Open hardware and open source

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 and the on-board library are available and released under the GPLv2 license.[3]

Accessory hardware

A prototyping shield, mounted on an Arduino

Arduino and Arduino-compatible boards make use of shields, which are printed circuit boards that sit atop an Arduino, and plug into the normally supplied pin-headers. These are expansions to the base Arduino. There are many functions of shields, from motor controls, to breadboarding (prototyping).[3]

For example:

A list of Arduino-compatible shields is maintained at the Arduino Shield List website. A number of shields can also be made DIY.[15][16][17]

Arduino-compatible boards

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 even use completely different processors, with varying levels of compatibility.

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.[3] Several Arduino-compatible products commercially released have avoided the "Arduino" name by using "-duino" name variants.[18]

Development team

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.[19]

See also

References

  1. ^ a b Shiffman, Daniel (September 23, 2009). "Interview with Casey Reas and Ben Fry". Rhizome.org. http://rhizome.org/editorial/2009/sep/23/interview-with-casey-reas-and-ben-fry/. 
  2. ^ "Wiring". wiring.org.co
  3. ^ a b c d e f "Project homepage". arduino.cc. http://arduino.cc. 
  4. ^ "Prix Ars Electronica 2006 — Digital Communities — ANERKENNUNGEN — listing" (in German). http://90.146.8.18/de/archives/prix_archive/prix_year_cat.asp?iProjectID=13638&iCategoryID=12420. Retrieved 2009-02-18. 
  5. ^ "Prix Ars Electronica 2006 — Digital Communities — ANERKENNUNGEN — description" (in German). http://90.146.8.18/de/archives/prix_archive/prix_projekt.asp?iProjectID=13789#. Retrieved 2009-02-18. 
  6. ^ Cuartielles, David (2010-02-17). "Öppnade hårdvaran och skapade Arduino". Metro Teknik: 10. http://www.flickr.com/photos/dcuartielles/4381919054/sizes/l/. Retrieved 2010-06-20. 
  7. ^ Lahart, Justin (Novembere 27, 2009). "Taking an Open-Source Approach to Hardware". The Wall Street Journal. http://online.wsj.com/article/SB1000142405274870349940457455996021468066.html. Retrieved 2011-05-11. 
  8. ^ "Italian Baby Names". About.com. http://italian.about.com/library/name/blname_arduino.htm. Retrieved 2010-09-26. 
  9. ^ Reas, Casey; Fry, Ben (2010). Getting Started With Processing. Sebastopol: O'Reilly. ISBN 978-1-449-37980-3. 
  10. ^ Chirgwin, Richard (2011-09-20). "Arduino to add ARM board this year". The Register. http://www.theregister.co.uk/2011/09/20/arduino_goes_arm/. Retrieved September 20, 2011. "Arduino [...] showed off the new version in time for the New York Maker’s Faire, with a 96 MHz clock speed, 256 KB of flash memory, 50 KB of SRAM, five SPI buses, two I2C interfaces, five UARTs and 16 12-bit analog interfaces." 
  11. ^ http://www.atmel.com/dyn/products/param_table.asp?category_id=163&family_id=605&subfamily_id=2086&OrderBy=part_no&Direction=ASC
  12. ^ http://www.atmel.com/dyn/products/param_table.asp?category_id=163&family_id=605&subfamily_id=2086&OrderBy=part_no&Direction=ASC
  13. ^ "Blink Tutorial". Arduino.cc.
  14. ^ "ArduinoBoardMega". Arduino.cc. http://arduino.cc/en/Main/ArduinoBoardMega. Retrieved 2009-03-26. 
  15. ^ "Shields fuer Arduino wenig Aufwand Selbst Bauen". web.de.[dead link]
  16. ^ "Arduino breadboard shield: $10 & 10 mins". todbot.com.
  17. ^ Igoe, Tom (April 4, 2006). "Arduino Shields for Prototyping". tigoe.net
  18. ^ "Freeduino Open Designs". Freeduino.org. http://www.freeduino.org/freeduino_open_designs.html. Retrieved 2008-03-03. 
  19. ^ "FLOSS Weekly Episode 61 - Arduino" (audio, MP3). Twit.tv. March 21, 2009.

Further reading

External links


Wikimedia Foundation. 2010.

Игры ⚽ Поможем сделать НИР

Look at other dictionaries:

  • Arduino — Développeur Arduino Software Dernière version 0022 (24 décembre 2010) [ …   Wikipédia en Français

  • Arduino — Software …   Википедия

  • Arduino — Saltar a navegación, búsqueda Arduino es una plataforma de hardware libre basada en una sencilla placa de entradas y salidas simple y un entorno de desarrollo que implementa el lenguaje de programación Processing/Wiring. Arduino se puede utilizar …   Wikipedia Español

  • Arduino — ist der Nachname folgender Personen: Giovanni Arduino (1714–1795), italienischer Geologe Ludwig Arduino (1759–1833), italienischer Landwirt und Hochschullehrer Pietro Arduino (1728–1805), italienischer Botaniker Arduino: Arduino Plattform,… …   Deutsch Wikipedia

  • Arduino — m Italian form of HARTWIN (SEE Hartwin) …   First names dictionary

  • Arduino — Arduino,   Giovanni, italienischer Geologe, * Caprino Veronese 16. 10. 1714, ✝ Venedig 21. 10. 1795; unterschied primäre, sekundäre, tertiäre und quartäre Gebirge, von denen sich Tertiär und Quartär als Bezeichnung für geologische Zeiteinheiten… …   Universal-Lexikon

  • Arduino-Plattform — Basisdaten Aktuelle Version 0023 (9. November 2011) …   Deutsch Wikipedia

  • Arduino (disambiguation) — Arduino is an Italian masculine name, with variants including Ardovino , Ardoino , Ardolino , Arduilio , Arduo and the feminine Arduina . It derives from the Germanic Hrduwin or Hardwin and has been found in Italy in the forms Ardovinus ,… …   Wikipedia

  • Arduino della Padule — was the military tutor of Matilda of Tuscany in the late eleventh century. He taught her to ride a horse, carry a lance and pike, and wield an axe and sword. In her adulthood he was the commander of her armies. In 1061 Rome was enveloped in a… …   Wikipedia

  • Arduino Bertoldo — (* 30. Dezember 1932 in Castelnovo di Isola Vicentina, Provinz Vicenza, Italien) ist emeritierter Bischof von Foligno. Leben Arduino Bertoldo empfing am 22. März 1958 die Priesterweihe. Papst Johannes Paul II. ernannte ihn am 10. Oktober 1992 zum …   Deutsch Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”