Wish List 0

Ky 009 Smd 3 Color Led Module

Rs. 19.00 Rs. 23.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
-SMD RGB LED module consists of a full-color LED made by R, G, B three-pin PWM voltage input can be adjusted.
-Primary colors (red/blue/green) strength in order to achieve a full-color mixing effect.
-Control of the module with the Arduino can be achieved Cool lighting effects.
-The RGB Full Color LED SMD Module consists of a 5050 SMD LED, use with limiting resistors to prevent burnout.
-Compatible with popular electronics platforms like Arduino, Raspberry Pi, and ESP8266.

Features:
-RGB trichromatic limiting resistor to prevent burnout
-PWM adjusted color mixing
-Working voltage: 5V
-LED drive mode: Common cathode driver
SPECIFICATIONS:
Operating Voltage(V)        5V max
Forward Current(mA)         20 ~ 30
Operating Temperature(°C)   -25°C to 85°C
Shipment Weight             0.020 kg
Shipment Dimensions         10 × 8 × 2 cm

OVERVIEW:

-RGB trichromatic limiting resistor to prevent burnout

-PWM adjusted color mixing

-Working voltage: 5V

-LED drive mode: Common cathode driver

-₹ 59.00 (inc GST)

PACKAGE INCLUDES:

1 PCS x Ky 009 Smd 3 Color Led Module


//SOURCE CODE TAKEN FROM BELOW LINK

//https://arduinomodules.info/ky-009-rgb-full-color-led-smd-module/

int redpin = 11; //select the pin for the red LED

int bluepin =10; // select the pin for the  blue LED

int greenpin = 9;// select the pin for the green LED


int val;


void setup() {

  pinMode(redpin, OUTPUT);

  pinMode(bluepin, OUTPUT);

  pinMode(greenpin, OUTPUT);

  Serial.begin(9600);

}


void loop() 

{

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

  {

    analogWrite(redpin, val);  //set PWM value for red

    analogWrite(bluepin, 255 - val); //set PWM value for blue

    analogWrite(greenpin, 128 - val); //set PWM value for green

    Serial.println(val); //print current value 

    delay(1); 

  }

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

  {

    analogWrite(redpin, val);

    analogWrite(bluepin, 255 - val);

    analogWrite(greenpin, 128 - val);

    Serial.println(val);

    delay(1); 

  }

}


https://youtu.be/YgNzKj7K1-Y

15 days

Write a review

Please login or register to review