Followers

Getting Started Arduino....

Getting Started Arduino....




Get Arduino Software,




See Arduino Programming Language page for easy...



Arduino Basic Tools...

Arduino Uno Board   Buy Here

USB Cable 

Jumper Wires Female to Female    Buy Here


Jumper Wires Male to Male Buy Here

Jumper Wires Male to Female

Bread Board

Get Start Simple Project....

Fritzing Project – Red LED Output


Connect all the components as above circuit.
We will do blink this LED.

If you finished connect components, The code is below,

..........................................................//Start of the Code//.....................................................................


void setup() {
    pinMode(13,OUTPUT);
}

void loop() {
    
    digitalWrite(13,HIGH);        //Give high voltage to the LED (Switch on the LED)
    delay(1000);              //Wait a Second
    digitalWrite(13,LOW);        //Give low voltage to the LED (Switch off the LED)
    delay(1000);              //Wait a second
}

..........................................................//End of the Code//.....................................................................

No comments:

Post a Comment