1. In this video we explained about Software Installation for Arduino microcontroller in the
personal computer and laptop
2. We explained about Sample Experiment with Coding
3. This Channel does not promote or encourage any illegal activities
4. All software and circuit diagram link are below this Image
ARDUINO IDE SOFTWARE
Press below button to download
SAMPLE EXPERIMENT WITH CIRCUIT DIAGRAM
AND
REQUIRED COMPONENTS
REQUIRED COMPONENTS
1. Arduino UNO (orginal) or Other clone Arduino
2. BreadBoard
3.Jumper Wire
4.LED Light
5. USB A to USB B Cable
6. 1Kohm Resistor
CONNECTIONS
First connect the LED in Breadboard and connect 1k resistor series to negative terminal of LED
Connect the positive terminal to the arduino 13 pin as per program indication.
connect one end for the resistor to the Ground pin of the Arduino.
CODING
void setup() {
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(13, HIGH);
delay(1000);
digitalWrite(13, LOW);
delay(1000);
}
COMPONENTS PURCHASE OPTION
1.ARDUINO UNO (ORGINAL)....................................................
2.ARDUINO UNO(CLONE).........................................................3.ARDUINO CHINESE REMAKE...............................................4. CABLE.......................................................................................5.UNO CASE..........................................................................................
Comments
Post a Comment