Skip to product information
NaN of -Infinity

vendor-unknown

Interfacing LDR Module with Arduino uno - KT756

Interfacing LDR Module with Arduino uno - KT756

SKU:KT756

1000 in stock

Regular price Rs. 750.00
Regular price Sale price Rs. 750.00
Sale Sold out
Shipping calculated at checkout.

Pickup available at REES52 OFFICE

Usually ready in 24 hours

For refund/return/replacement, call us at +91 95995 94524 , +91 95995 94520 or mail us at support@rees52.com

  • Delivery time with the Express Shipping option is 2-3 working days, and with the Standard Shipping option is 5-6 working days. It varies based on location, reliant on courier services.

  • Delivery time if the order item is on Preorder Status is 15-20 working days.
  • For COD you have to pay extra charges of Rs 350/- before the shipment. (We will share the company QR Code, UPI ID or Account details for the same)
View full details

KIT INCLUDES:


HARDWARE REQUIRED

SOFTWARE REQUIRED

Arduino IDE 1.8.5 (programmable platform for Arduino)

Click To Download :https://www.arduino.cc/en/Main/Software

SPECIFICATIONS

LDR MODULE

  • Input Voltage: DC 3.3V to 5V
  • Output: Analog and Digital
  • Sensitivity adjustable



PIN DESCRIPTION

LDR MODULE





CIRCUIT CONNECTION

CODE



void setup()

{

Serial.begin(9600);

}

void loop()

{

unsigned int AnalogValue;

AnalogValue = analogRead(A0);

Serial.println(AnalogValue);

}

WORKING

You can also download the sample source code attached below and upload it into Arduino. After that open "Serial Monitor" to see the result.