Skip to product information
1 of 7

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.

For refund/return/replacement, call us at +91 95995 94524 For bulk and B2B enquiries kindly mail us at support@rees52.com

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.