Wish List 0

Ky 010 Broken Light Module

Rs. 28.00 Rs. 34.00

  • Product Code: SEN-SPEED
  • SKU -
  • Availability: In Stock
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
-Broken Light Module uses digital interface 13 with LED to build a light-shielding module and simple circuit, making a light-shielding warning light.
-Using 13 built-in LEDs in the digital interface to connect a light saver sensor to the digital interface 3.
-When the light protector sensor detects a signal button, the LED will turn on; otherwise, it will be closed.
-The photo interruption module triggers a signal when light is blocked between the opening of the sensor.
-The photo interrupter module consists of an optical emitter/detector on the front and two resistors (1 kΩ and 33 Ω) on the back.

Connection:
–(left) GND
+(center) 5V
S (right) Pin 3

Features:
-Small size
-Low Cost
-good performance
SPECIFICATIONS:
Voltage           5V
Dimensions(mm)    19 x 15 x 8
Weight(g)         3

OVERVIEW:

-Voltage 5V

-Photo interruption module triggers a signal when light is blocked between the opening of the sensor.

PACKAGE INCLUDES:

1 PCS x Ky 010 Broken Light Module


//SOURCE CODE TAKEN FROM BELOW LINK

//https://arduinomodules.info/ky-010-photo-interrupter-module/

int Led = 13; // define LED pin

int buttonpin = 3; // define photo interrupter signal pin

int val; //define a numeric variable


void setup()

{

pinMode(Led, OUTPUT); // LED pin as output

pinMode(buttonpin, INPUT); //photo interrupter pin as input

}


void loop()

{

val=digitalRead(buttonpin); //read the value of the sensor 

if(val == HIGH) // turn on LED when sensor is blocked 

{

digitalWrite(Led,HIGH);

}

else

{

digitalWrite(Led,LOW);

}

}

15 days

Write a review

Please login or register to review