top of page

Interfacing Arduino uno with LDR

In this basic tutorial we are going to see how to interface Arduino uno with LDR sensor. So let's start !!!

Working of the circuit : Basically when there is darkness the led will glow and when there is sufficient light led will stop glowing. This a simple circuit for of interface Arduino uno with LDR sensor.First of all we need to knw what is LDR sensor and how it works ?LDR ( light dependent resistor ) also called photoresistors are responsive to light. Photoresistors are used to indicate the intensity or the presence or the absence of light. When there is darkness the resistance of photoresistor increases and when there is sufficient light it dramatically decreases.LDR light dependent resistorLDR ( light dependent resistor ) which has two terminals. Terminal one is the signal pin which should be connected according to the code. Another terminal is considered as the ground pin which should be connected to the ground of the system.Arduino Uno : The Arduino Uno is a microcontroller board based on the ATmega328. It has 20 digital input/output pins (of which 6 can be used as PWM outputs and 6 can be used as analog inputs), a 16 MHz resonator, a USB connection, a power jack, an in-circuit system programming (ICSP) header, and a reset button.In the simplest terms, a light-emitting diode (LED) is a semiconductor device that emits light when an electric current is passed through it. Light is produced when the particles that carry the current (known as electrons and holes) combine together within the semiconductor material. Led has two terminals : positive and negative.Now as we now what is meant by LDR and how it works we can start working on the connections :Connections of LDR sensor : First terminal should be connected to analog pin 0 (A0) of Arduino. Second terminal should be connected any one led pf the resistor. Another leg of resistor should be connected to Gnd of Arduino.Led connections : Positive pin should be connected to digital pin 5 of Arduino. Negative pin should be connected any one led pf the resistor. Another leg of resistor should be connected to Gnd of Arduino.1 / 2 •


Hardware components


Arduino UNO


LDR, 5 Mohm


LED (generic)


Resistor 10k ohm

Jumper wires (generic)


Breadboard (generic)



Here is the code :

const int ledPin = 5; // digital pin 5 
const int ldrPin = A0; // analog pin 0
void setup() { // The setup() function will only run once, after each powerup or reset of the Arduino board.
Serial.begin(9600);
pinMode(ledPin, OUTPUT); // Here LED is determined as an output or an indicator.
pinMode(ldrPin, INPUT); // Here LDR sensor is determined as input.
}
void loop() { // Void loop is ran again and again and contains main code.
int ldrStatus = analogRead(ldrPin);
if (ldrStatus <= 200) {digitalWrite(ledPin, HIGH); // If LDR senses darkness led pin high that means led will glow.
Serial.print("Darkness over here,turn on the LED :");
Serial.println(ldrStatus);
} else {
digitalWrite(ledPin, LOW); // If LDR senses light led pin low that means led will stop glowing.
Serial.print("There is sufficient light , turn off the LED : ");
Serial.println(ldrStatus);
}
}
// Interfacing Arduino uno with LDR sensor

const int ledPin = 5; // digital pin 5 
const int ldrPin = A0; // analog pin 0

void setup() { //  Void setup function will only run once, after each powerup or reset of the Arduino board.

Serial.begin(9600);

pinMode(ledPin, OUTPUT); // Here LED is determined as an ouput or an indicator.

pinMode(ldrPin, INPUT); // Here LDR sensor is determined as input.

}

void loop() { // Void loop is ran again and again and contains main code.

int ldrStatus = analogRead(ldrPin);

if (ldrStatus <= 200) {

digitalWrite(ledPin, HIGH); // If LDR senses darkness led pin high that means led will glow.

Serial.print("Darkness over here,turn on the LED : ");

Serial.println(ldrStatus);

} else {

digitalWrite(ledPin, LOW); // If LDR senses light led pin low that means led will stop glowing.

Serial.print("There is sufficeint light , turn off the LED : ");

Serial.println(ldrStatus);

}

}

Power in Numbers

Programs

Locations

Volunteers

Project Gallery

ESRO IT

With our innovative and insightful technology, we strive to enhance our users’ every day experiences. Founded in 2011, our incredible team of engineers, programmers, designers and marketers have worked tirelessly to bring ESRO IT to the forefront of the industry. We will continue to work relentlessly to become the technological standard, providing big picture insights and solutions for companies of all sizes. Get in touch to learn more.

Feedback

Rate Us
PoorFairGoodVery goodExcellent

Thanks for submitting!

Our Working  Location

ESRO IT

 

34, Ram Nagar Lane No.2 Tuljbhavani Mangalm, Shegaon Rahatgaon Road Amravati 444604

Copyright © 2011 - All Rights Reserved - ESRO-IT

bottom of page