Arduino | Details - LBM4

Recent Post

Monday 10 June 2019

Arduino | Details

Arduino

Introduction to Arduino

Arduino is an open-source platform used for building electronics projects.
  1. consists of both physical programmable circuit board(microcontroller) and a piece of software.
  2. was introduced back in 2005 in Italy by Massimo Banzi.
  3. contains microcontroller which is able to be programmed to sense and control objects in the physical world.
  4. able to interact with a large array of outputs such as LEDs, motors, and displays.
  5. Arduino Uno is one of the more popular boards in the Arduino family and great choice for beginners due to its low cost and flexibility.

What does Arduino do?

The Arduino hardware and software was designed for artists, designers, hobbyists, hackers, newbies, and anyone interested in creating interactive objects or environments.
led lighting diagram
  1. interact with buttons, LEDs, motors,  speakers, GPS units, cameras, the internet, and  even your smart- phone or your TV.
  2. For everything from robots and a heating pad   hand warming blanket to honest fortune-telling machines, and even a Dungeons and   Dragons dice-throwing gauntlet, the  Arduino can be used as the brains behind almost any electronics project.



Arduino Uno

One of the most popular Arduino boards out there is the Arduino Uno. While it was not actually the first board to be released, it remains to be the most actively used and most widely documented on the market.  Because of its extreme popularity, the Arduino Uno has a ton of project tutorials and forums around the web that can help you get started or out of a jam. We’re big fans of the Uno because of it’s great features and ease of use.

arduino pin diagram

Here are the components that make up an Arduino board and what each of their functions are:
  1. Reset Button – This will restart any code that is loaded to the Arduino board.
  2. AREF – Stands for “Analog Reference” and is used to set an external reference voltage.
  3. Ground Pin – There are a few ground pins on the Arduino and they all work the same.
  4. Digital Input/Output – Pins 0-13 can be used for digital input or output.
  5. PWM – The pins marked with the (~) symbol can simulate analog output.
  6. USB Connection – Used for powering up your Arduino and uploading sketches.
  7. TX/RX – Transmit and receive data indication LEDs.
  8. ATmega Microcontroller – This is the brains and is where the programs are stored.
  9. Power LED Indicator – This LED lights up anytime the board is plugged in a power source.
  10. Voltage Regulator – This controls the amount of voltage going into the Arduino board.
  11. DC Power Barrel Jack – This is used for powering your Arduino with a power supply.
  12. 3.3V Pin – This pin supplies 3.3 volts of power to your projects.
  13. 5V Pin – This pin supplies 5 volts of power to your projects.
  14. Ground Pins – There are a few ground pins on the Arduino and they all work the same.
  15. Analog Pins – These pins can read the signal from an analog sensor and convert it to digital.

How to program on Arduino? 

Once the circuit has been created on the breadboard, you’ll need to upload the program (known as a sketch) to the Arduino. The sketch is a set of instructions that tells the board what functions it needs to perform.  An Arduino board can only hold and perform one sketch at a time. The software used to create Arduino sketches is called the IDE which stands for Integrated Development Environment.  The software is free to download and can be found. https://www.arduino.cc/en/Main/Software


coding in arduino


     Every Arduino sketch has two main parts to the program:
void setup() – Sets things up that have to be done once and then don’t happen again.
void loop()  – Contains the instructions that get repeated over and over until the board is turned off.


Application Area:


  • Robotics and Control Systems:                                                                                               robotics control system

  • Home and Industry Automation:                                                                                                     automation application

  • Hacking:
  • hacking diagram

  • Agriculture:

  • agriculture application of arduino

No comments:

Post a Comment