Arduino Step by Step Guide Basic Level

Arduino Step by Step Guide Basic Level

Requirements

  • Basic use of Computer and Internet
  • Basic of Electronic
  • Good if you have little knowledge of C and C++ programing language

Description

Arduino is an open source platform used for building electronics projects. Arduino consists of both a physical programmable circuit board or microcontroller and a software, IDE (Integrated Development Environment) that runs on the computer. It is used to write and upload computer code to the physical board.

The boards are equipped with sets of digital and analog input/output pins, USB connection which is used for loading programs from computers, power jack, reset button etc. A program written with the IDE for Arduino is called a sketch. The Arduino IDE supports the languages C and C++ using special rules of code structuring.

It consists of only two functions, setup and loop. The setup function is used to initialize variables, input and output pin modes and other libraries needed in the sketch.

Leave a Reply