0% found this document useful (0 votes)
3 views3 pages

Blink Pinled

The document outlines a project to interface an Arduino Uno with an LED, detailing the necessary hardware and software components. It explains the function of the LED as a semiconductor light source and provides a step-by-step procedure for connecting the LED to the Arduino, including the code for blinking the LED. The conclusion confirms the successful operation of the LED blinking as intended.

Uploaded by

shaikh javed
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views3 pages

Blink Pinled

The document outlines a project to interface an Arduino Uno with an LED, detailing the necessary hardware and software components. It explains the function of the LED as a semiconductor light source and provides a step-by-step procedure for connecting the LED to the Arduino, including the code for blinking the LED. The conclusion confirms the successful operation of the LED blinking as intended.

Uploaded by

shaikh javed
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

Aim: To interface Arduino Uno with LED.

Apparatus:
Hardware: LED, Arduino UNO, Computer or Laptop

Software: Arduino IDE


Theory:
LED Description:

The LED is a two-terminal semiconductor light source that emits light when current flows through it.
The word LED meaning or LED full form is Light Emitting Diode. The Light Emitting Diode is a
special type of p-n junction diode which is made of special type doped semiconductor materials. The
LED or Light Emitting Diode allows the flow of current in the forward direction and blocks the
current in the reverse direction. When the current flow in the forward direction then LED releases
energy in the form of photons. LED Consists of two terminals. These are one is positive or anode and
another one is negative or cathode. The Long terminal of the LED is the positive or anode (+) terminal
and the short terminal of the LED is the negative or cathode (-) terminal.

Figure 1. LED

Connection Diagram:
Procedure:
1. Make a circuit as shown in the schematic or LED can be directly mounted on Arduino.
2. Arduino’s pin 13 is connected to the positive terminal of LED through resister.
3. Arduino’s GND connected to negative terminal of the LED.
4. Write code and upload it on Arduino. To upload code into Arduino, need to attach Arduino
with pc using USB cable which comes with Arduino board.
5. Observe the output.

Conclusion:

LED turns on and off i.e. blinking of LED Light was successfully observed.

Code:

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

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy