Ky 029 3Mm Two Color Led Module
Rs. 34.00 Rs. 41.00
- Product Code: SEN-LED
- SKU -
- Availability: In Stock
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
SPECIFICATIONS: | |
Operating Voltage | 2.0v ~ 2.5v |
Using Current(mA) | 10 |
Diameter(mm) | 3 |
Color | Red + Green |
Beam Angle | 150 |
Wavelength | 571nm + 644nm |
Luminosity Intensity (MCD) | 20-40; 40-80 |
Shipment Weight | 0.003 kg |
Shipment Dimensions | 10 × 8 × 1 cm |
OVERVIEW: | |
Operating Voltage | 2.0v ~ 2.5v |
Current | 10mA |
Diameter | 3mm |
Wavelength | 571nm + 644nm |
Beam Angle | 150 |
₹ 49.00 (inc GST) |
PACKAGE INCLUDES:
1 PCS x Ky 029 3Mm Two Color Led Module
//SOURCE CODE TAKEN FROM BELOW LINK
//https://sensorkit.en.joy-it.net/index.php?title=KY-029_2-Color_(Red%2BGreen)_3mm_LED_module
int Led_Red = 10;
int Led_Green = 11;
void setup ()
{
// Initialization of the Output pins for the LEDs
pinMode (Led_Red, OUTPUT);
pinMode (Led_Green, OUTPUT);
}
void loop () // main program loop
{
digitalWrite (Led_Red, HIGH); // LED will switch to ON
digitalWrite (Led_Green, LOW); // LED will switch to OFF
delay (3000); // Wait mode for 3 seconds
digitalWrite (Led_Red, LOW); // LED will switch to OFF
digitalWrite (Led_Green, HIGH); // LED will switch to ON
delay (3000); // Wait mode for another 3 seconds in which the LEDs will be switched
}
15 days