Arduino Interfacing LED

647 views 6 slides Apr 12, 2020
Slide 1
Slide 1 of 6
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6

About This Presentation

content: circuit diagram, LED interfacing with arduino connection and its program.


Slide Content

Arduino interfacing with LED
-- by Prof. M.K.Deshkar

Components Used
1.Arduino
2.Breadboard
3.Resistor
4.LED
5.Red & Black
Wire

Circuit Diagram

1.Connect the Arduino to your
computer using the USB cable
2.Red wire----Vin
3.black wire-------Gnd
4. resistor------- red row to the
blue row
5. LED------- long wire in the
blue row and short wire in the
black row
Make the circuit
Connection with Arduino

void setup () {
pinMode (13, OUTPUT);
}
void loop () {
digitalWrite (13, HIGH);
delay (1000);
digitalWrite (13, LOW);
delay (1000);
}
Program

Thank you
Tags