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
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