0% found this document useful (0 votes)
471 views

Arduino

The document discusses Arduino, an open-source hardware and software platform for building electronics projects. It provides an overview of the Arduino system, including common Arduino boards like the Uno and Mega, the Arduino IDE software, and the Arduino programming language which is based on C/C++. It also mentions the Bascom AVR alternative and shows examples of shields and modules that can connect to Arduino boards.

Uploaded by

surendersuri
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
471 views

Arduino

The document discusses Arduino, an open-source hardware and software platform for building electronics projects. It provides an overview of the Arduino system, including common Arduino boards like the Uno and Mega, the Arduino IDE software, and the Arduino programming language which is based on C/C++. It also mentions the Bascom AVR alternative and shows examples of shields and modules that can connect to Arduino boards.

Uploaded by

surendersuri
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
You are on page 1/ 33

Arduino

A free development system based on Atmel AVR 8 bit microcontrollers. LB8X Tom

What is AVR
RISC architecture microcontroller Designed for high level languages, developed in Trondheim, Norway in 1996 Classic: AT90S1200, AT90S2343, AT90S2313, AT90S4433, AT90S8515, AT90S8535 ATtiny22, ATtiny25-85, ATtiny2313 ... ATmega8, ATmega16, ATmega 48-328 ... Flash programmable memory ATmega self programming RAM, EEPROM and peripherals

What is Arduino
Open Source Hardware, you can make your own board, or buy one. Cheap, easily available. Open Source Software. Very widespread, many projects openly available. Extra HW (shields) available.

Arduino Duemilanove (2009)

Arduino Uno

Arduino Mega 2560

Original Arduino with RS-232

Arduino on breadboard

Arduino Nano

Ardweeny

Arduino IDE

Arduino Language
C like syntax, but simplified Abstracts the pin naming to numbers Trades efficience for ease of use Easy to learn, yet powerful Lots of example code Easy to reuse C-code from other projects Libraries can be written in C++ Lots of libraries available

int ledPin = 13; // LED connected to digital pin 13

// The setup() method runs once, when the sketch starts void setup() { // initialize the digital pin as an output:

pinMode(ledPin, OUTPUT);
}

// the loop() method runs over and over again, // as long as the Arduino has powervoid loop() { digitalWrite(ledPin, HIGH); // set the LED on delay(500); // wait for half a second digitalWrite(ledPin, LOW); // set the LED off

delay(500); // wait for half a second

BascomAVR IDE

BascomAVR Language
Structured basic Uses AVR pin naming Easy to learn, yet powerful Very efficience, and compact Can use inline assembly code Built in simulator Lots of example code Must have paid version to make libraries Lots of libraries available

BascomAVR advantages
Free demo version, up to 4kB code Supports most AVRs Commercial version is inexpensive Excellent support Active community Supports bootloaders Supports many programmers Can work with AVR Studio

$regfile = "m8def.dat" $crystal = 16000000 Led Alias Portb.5 'Arduino digital pin 13

Config Led = Output Reset Led


' Main program Do Waitms 500 Toggle Led Waitms 500 Toggle Led Loop

'Turn off LED

End

'End program

Prototype shield

Proto shield w/mini breadboard

Ethernet shield w/micro-SD reader

Argentdata radio shield for APRS

Extreme shield stacking

Bluetooth to TTL 5V module

USB to TTL module

RS-232 to TTL module

Approximate pricing eBay


Arduino Duemilanove $25 Proto shield from $5 Ethernet shield $18 Bluetooth module $17 USB to TTL module $5 RS-232 to TTL module $6

Resources
www.atmel.com/avr www.avrfreaks.net www.arduino.cc en.wikipedia.org/wiki/Arduino www.mcselec.com (BascomAVR) www.argentdata.com www.ebay.com www.sparkfun.com

You might also like