Skip to main content

Posts

Showing posts from 2014

How to program arduino for beginner's 2

How to program arduino for beginner's part 2 Analog  signal read: Today am going to write the program to read  analog signal serially using analog inputs . first we have to connect the any one analog sensor or potentiometer to the one of analog input A0 to A5. In this program am going to connect the potentiometer to A0 pin. program: void setup() { serial.begin(9600); } void loop() { int sensorValue = analodRead(A0); Serial.println(sensorValue); delay(1); }   

How to program arduino for beginner's

How to program arduino for beginner's Hi,   today am going explain about arduino controller and its programming . Arduino is the one of the most popular micro controller board in the world.It is the open source electronic prototyping platform and it is easy use hardware and software.   In arduino different type of controller are there like  arduino UNO arduino Mega arduino Leonardo arduino due arduino yum arduino zero  arduino robot arduino micro arduino mini arduino nano  etc. This controller are programmed by using Arduino IDE or sketch it is the free software we can download it from arduino official web site  arduino.com . Hear am going to show you how to initialize the arduino taking the example of arduino UNO  To program the arduino UNO we have to download the arduino sketch  after download install that  it will open like this  next select the board  next select the programming tool