Wish List 0

Ky 018 Photosensitive Resistor Sensor Module For Arduino

Rs. 14.00 Rs. 17.00

  • Product Code: SEN-LDR
  • SKU -
  • Availability: In Stock
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
-This is a High-quality photosensitive sensor module/light module detects the photosensitive resistor for Arduino.
-The photoresistor module detects light intensity.
-As the intensity of light on the photoresistor increases, so the resistance of the photoresistor decreases.
-A built-in 10k resistor on the module can be used to build a divider circuit for measuring changes in light intensity from the photoresistor.
-A device such as an Arduino can be used to read the light intensity using an analog input pin.

Photo Resistor Module Connections to Arduino:
-Pin 1 (S) of the module connects to an Arduino analog input pin. Arduino analog input A0 is used in the sketches below, but can be changed.
-Pin 2 of the module connects to the Arduino GND pin.
-Pin 3 (-) of the module connects to the Arduino 5V pin

Features:
-The photosensitive device, its photocurrent increases with the applied voltage.
-the temperature coefficient. Photoelectric effect photoresistor influenced by temperature, partial photoresistor optoelectronic at low temperatures
-Higher sensitivity, whereas the sensitivity at high temperatures, are lower.
-rated power. Refers to the rated power for a certain line photoresistor allowed power consumed when the temperature rises.
-High, its power consumption is reduced.
-According to the spectral characteristics of the photoresistor has three photoresistors: Ultraviolet photosensitive resistance, infrared light-sensitive resistors, Visible photosensitive resistance.
SPECIFICATIONS:
Resistance of the photoresistor(in full light)  less than 80 Ohms
Dark resistance(in full darkness)               > 20MΩ
Weight(g)                                       4
Shipment Weight                                 0.01 kg
Shipment Dimensions                             3 × 2 × 1 cm

OVERVIEW:

-This is a High-quality photosensitive sensor module/light module detects the photosensitive resistor for Arduino

-Resistance of the photoresistor is typically less than 80 Ohms (in full light)

-Dark resistance is typically greater than 20 Meg Ohms (in full darkness)

PACKAGE INCLUDES:

1 PCS x Ky 018 Photosensitive Resistor Sensor Module


//SOURCE CODE TAKEN FROM BELOW LINK

//https://create.arduino.cc/projecthub/vandenbrande/arduino-photo-resistor-example-ky-018-4d2724

/*

Author: Danny van den Brande, Arduinosensors.nl. BlueCore Tech.

In this example we use the Photoresistor as a switch.

Its just some basic code, you can adjust the value at the if statement between 0 and 1023.

 */

int Relay = 2;

int BlueLed = 3;

int Sensor = A0;

int sensorValue;


void setup() {

  pinMode(BlueLed, OUTPUT);

  pinMode(Relay, OUTPUT);

  pinMode(Sensor, INPUT);

  Serial.begin(9600);


}


void loop() {

  sensorValue = analogRead(Sensor);

  if(analogRead(1)>200 && analogRead(1)< 1023)

  {

    digitalWrite (BlueLed, LOW);

    digitalWrite (Relay, LOW);

    Serial.println(sensorValue, DEC);

  }

  else

  {

    digitalWrite (BlueLed, HIGH);

    digitalWrite (Relay, HIGH);

    Serial.println(sensorValue, DEC);

  }

  

}

15 days

Write a review

Please login or register to review