1introduction to arduino thinnkware

Upload: lodtopo

Post on 03-Jun-2018

238 views

Category:

Documents


0 download

TRANSCRIPT

  • 8/12/2019 1Introduction to Arduino Thinnkware

    1/17

    ARDUINO lod topo

    3/20/2014 www.thinnkware.com

    A venture of KC Robotics & Embedded Pvt. Ltd.

    1

    http://www.thinnkware.com/http://www.thinnkware.com/
  • 8/12/2019 1Introduction to Arduino Thinnkware

    2/17

    WHAT IS ARDUINO? Arduino : is an open hardware platform, based on a board with

    a microcontroller and a development environment designed tofacilitate the use of relatively simple electronic projects.

    3/20/2014 www.thinnkware.com

    A venture of KC Robotics & Embedded Pvt. Ltd.

    2

    http://www.thinnkware.com/http://www.thinnkware.com/
  • 8/12/2019 1Introduction to Arduino Thinnkware

    3/17

    HISTORY ARDUINO

    Arduino was born in the Italian Institute of Interaction Design Ivrea, aschool where students focused their experiments on the interaction with

    devices, many based on microcontrollers. Arduino comes from a need, to have a device to use in class, it was low

    cost, which would work under any operating system and adapteddocumentation that would tell people who would start from scratch.

    When I was thinking design use only for student use at present is also

    designed for personal use or large scale, for example the most powerfulmodel today is the "mega" with a greater number of pins, which meansmore things at once running.

    3/20/2014 www.thinnkware.com

    A venture of KC Robotics & Embedded Pvt. Ltd.

    3

    http://www.thinnkware.com/http://www.thinnkware.com/
  • 8/12/2019 1Introduction to Arduino Thinnkware

    4/17

    COMPONENTS FOR ARDUINO 28 pins, four of them for voltage the other four for ground,

    fourteen digital inputs and six analog pins. The ATMEGA microcontroller USB or serial input A button to reset. Several resistors for the LEDs which indicate the arrival of the

    information. A connector to a power source

    3/20/2014 www.thinnkware.com

    A venture of KC Robotics & Embedded Pvt. Ltd.

    4

    http://www.thinnkware.com/http://www.thinnkware.com/
  • 8/12/2019 1Introduction to Arduino Thinnkware

    5/17

    OPERATION OF ARDUINO Arduino works by a particular IDE called " Arduino 1.0 ". This program is

    a basic programming. This is an example of flash an LED.int led = 13;void setup(){

    pinMode(led, OUTPUT);}void loop() {

    digitalWrite(led, HIGH);delay(1000);digitalWrite(led, LOW);delay(1000);

    }3/20/2014 www.thinnkware.com

    A venture of KC Robotics & Embedded Pvt. Ltd.

    5

    http://www.thinnkware.com/http://www.thinnkware.com/
  • 8/12/2019 1Introduction to Arduino Thinnkware

    6/17

    TYPES OF ARDUINO There are 18 types of cards, some are

    adaptations of other, ie has been reduced to basics, others have expanded.

    3/20/2014 www.thinnkware.com

    A venture of KC Robotics & Embedded Pvt. Ltd.

    6

    http://www.thinnkware.com/http://www.thinnkware.com/
  • 8/12/2019 1Introduction to Arduino Thinnkware

    7/17

    ARDUINO DUEMILANOVE

    The Arduino Duemilanove board is based on the ATmega328ATmega168 microcontroller . It has 14-pin digital I / O, 6analog inputs, a crystal oscillator of 16Mhz, USB, power

    input, an ICSP header, and a reset button.

    3/20/2014 www.thinnkware.com

    A venture of KC Robotics & Embedded Pvt. Ltd.

    7

    http://www.thinnkware.com/http://www.thinnkware.com/
  • 8/12/2019 1Introduction to Arduino Thinnkware

    8/17

    3/20/2014 www.thinnkware.com 8

    A venture of KC Robotics & Embedded Pvt. Ltd.

  • 8/12/2019 1Introduction to Arduino Thinnkware

    9/17

    ARDUINO DIECIMILA

    The Arduino Diecimila is a micro controller board based onthe ATmega168 chip. It has 14 digital I/O, 6 analog inputs, a16MHz crystal, USB connection and reset button.

    3/20/2014 9www.thinnkware.com

    A venture of KC Robotics & Embedded Pvt. Ltd.

  • 8/12/2019 1Introduction to Arduino Thinnkware

    10/17

    ARDUINO NANO

    The Arduino Nano is a small, full board based on theATmega328 (Arduino Nano 3.0) or ATmega168 (Arduino

    Nano 2.x) used by connecting it to a protoboard. It has more or

    less the same functionality as the Arduino Duemilanove, butwith a different presentation.

    3/20/2014 www.thinnkware.com

    A venture of KC Robotics & Embedded Pvt. Ltd.

    10

    http://www.thinnkware.com/http://www.thinnkware.com/
  • 8/12/2019 1Introduction to Arduino Thinnkware

    11/17

    ARDUINO MEGA

    The Arduino Mega is a microcontroller board basedATmeg1280. It has 54 digital inputs / outputs, 16 analoginputs, 4 UARTs (hardware serial ports), a 16MHz crystaloscillator, USB, DC power input connector, ICSP and reset

    button.

    3/20/2014 www.thinnkware.com

    A venture of KC Robotics & Embedded Pvt. Ltd.

    11

    http://www.thinnkware.com/http://www.thinnkware.com/
  • 8/12/2019 1Introduction to Arduino Thinnkware

    12/17

    ARDUINO LYLYPAD

    The LilyPad Arduino is a microcontroller board designed fore-textiles and garments. You can use similar supplements suchas power supplies, sensors, actuators connected by wire. The

    plate is based on the ATmega168V (version ATmega168 lowconsumption), or the ATmega328V.

    3/20/2014 www.thinnkware.com

    A venture of KC Robotics & Embedded Pvt. Ltd.

    12

    http://www.thinnkware.com/http://www.thinnkware.com/
  • 8/12/2019 1Introduction to Arduino Thinnkware

    13/17

    ARDUINO FIO

    The Fio Arduino is a microcontroller-based board for theATmega328P operates at 3.3V and 8 MHz having 14 pinDigital inputs / outputs, 8 analog inputs, a reset button, andholes for mounting pin connectors. It has connections for alithium polymer battery and includes a charging circuit viaUSB.

    3/20/2014 www.thinnkware.com

    A venture of KC Robotics & Embedded Pvt. Ltd.

    13

    http://www.thinnkware.com/http://www.thinnkware.com/
  • 8/12/2019 1Introduction to Arduino Thinnkware

    14/17

    ARDUINO MINI Arduino Mini is a plate with a small microcontroller based on

    the ATmega168, designed for use in prototype boards andwhere space is at a premium. It has 14 digital inputs / outputs,8 analog inputs and a crystal of 16 MHz.

    3/20/2014 www.thinnkware.com

    A venture of KC Robotics & Embedded Pvt. Ltd.

    14

    http://www.thinnkware.com/http://www.thinnkware.com/
  • 8/12/2019 1Introduction to Arduino Thinnkware

    15/17

    ARDUINO PRO The Arduino Pro comes with ATmega168 or ATmega328microconroller . The Pro comes in versions of 3.3v / 5v 8 MHz/ 16 MHz has 14 digital inputs / outputs, 6 analog inputs, aninternal oscillator, reset button and holes for mounting pinstrips

    3/20/2014 www.thinnkware.com

    A venture of KC Robotics & Embedded Pvt. Ltd.

    15

    http://www.thinnkware.com/http://www.thinnkware.com/
  • 8/12/2019 1Introduction to Arduino Thinnkware

    16/17

    ARDUINO SERIAL This card is like the Diecimila, but instead of having a USB

    input it has a standard communication port.

    3/20/2014 www.thinnkware.com

    A venture of KC Robotics & Embedded Pvt. Ltd.

    16

    http://www.thinnkware.com/http://www.thinnkware.com/
  • 8/12/2019 1Introduction to Arduino Thinnkware

    17/17

    PROJECT MADE BY ARDUINOS

    3/20/2014 www.thinnkware.com

    A venture of KC Robotics & Embedded Pvt. Ltd.

    17

    http://www.thinnkware.com/http://www.thinnkware.com/