Skip to main content

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 
  1. arduino UNO
  2. arduino Mega
  3. arduino Leonardo
  4. arduino due
  5. arduino yum
  6. arduino zero arduino robot
  7. arduino micro
  8. arduino mini
  9. 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





 now start write the program on program editor .


Now am writing the the first program

1.LED blinking program 

// In arduino UNO there is inbuilt led is connected to the  13 digital output pin.
this is the program is blink the inbuilt led //

 void setup() 
{
pinMode(13,output);
}
voidloop()
{
digitalWrite(13,high);
delay(1000);
digitalWrite(13,high);
delay(1000);
}








Comments

Dhanu shetty said…
write your comment hear plese

Popular posts from this blog

CAN INTERVIEW QUESTIONS

Qualifiers and Modifier in C

RTOS Real time operating system interview questions

CAN INTERVIEW QUESTIONS 2

What is UDS protocol

Memory mapping in c

TOP IOT PLATFORMS