Wish List 0

Ky 011 5Mm Two Color Led Module

Rs. 18.00 Rs. 22.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
-5mm Two-color LED module for Arduino emits red and green light.
-You can adjust the amount of each color using PWM.
-Products are widely used in many areas, electronic dictionary, PDA, MP3, headphones, digital cameras, VCD, DVD, car audio, communication, computer, charger, power amplifier, instrumentation, gifts, electronic toys, mobile phones and so on.

Features:
-Diameter:5mm
-Package-Type:Diffusion
-Color:Red + Green
-Luminosity Intensity (MCD)
SPECIFICATIONS:
Operating Voltage            2.0v ~ 2.5v
Using Current(mA)            10
Diameter(mm)                 5
Color                        Red + Green
Beam Angle                   150
Wavelength                   571nm + 644nm
Luminosity Intensity (MCD)   20-40; 40-80
Shipment Weight              0.003 kg
Shipment Dimensions          9 × 8 × 1 cm
OVERVIEW:
Operating Voltage  2.0v 2.5v
Current            10mA
Diameter           5mm
Color              Red + Green
Beam Angle         150
₹ 55.00 (inc GST)

PACKAGE INCLUDES:

1 PCS x Ky 011 5Mm Two Color Led Module


//SOURCE CODE TAKEN FORM BELOW LINK

//https://arduinomodules.info/ky-011-two-color-led-module-3mm/

int redpin = 11; // pin for red signal

int greenpin = 10; // pin for green signal

int val;


void setup() {

pinMode(redpin, OUTPUT);

pinMode(greenpin, OUTPUT);

}


void loop() {

for(val = 255; val > 0; val--) { 

analogWrite(redpin, val); //dim red

analogWrite(greenpin, 255 - val); // brighten green

delay(15);

}

for(val = 0; val < 255; val++) { 

analogWrite(redpin, val); //brighten red

analogWrite(greenpin, 255 - val); //dim green

delay(15);

}

}

15 days

Write a review

Please login or register to review