Wish List 0

Ky 016 Dip 3 Color Led Module

Rs. 22.00 Rs. 27.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
-This module consists of a 5mm RGB LED and three 150Ω limiting resistors to prevent burnout.
-Adjusting the PWM signal on each color pin will result in different colors.
-This is a DIP 3 Color LED Module.
-Through the PWM adjusting, three primary colors can be mixed to obtain different colors.
-Connect the red pin (R) on the KY-016 to pin 11 on the Arduino.
-Blue (B) to pin 10, green (G) to pin 9 and ground (-) to GND.
-Notice that you do not need to use limiting resistors since they are already included on the board.

Connection Diagram:
-DIP 3 Color LED Module Pin Connection with Arduino:
-LED module Arduino
-R Pin 11
-B Pin 10
-G Pin 9
 - GND
 
Features:
-The use of plug-in full-color LED.
-RGB trichromatic limiting resistor to prevent burnout.
-With a variety of single-chip interface.
-Through the PWM adjusting, three primary colors can be mixed to -obtain different colors
-The working voltage: 5V
SPECIFICATIONS:
Operating Voltage(VDC)   5
LED Type and Size        RGB 5 mm
LED drive mode           Common Cathode Driver
PCB Width                1.5mm
Shipment Weight          0.085 kg
Shipment Dimensions      3 × 3 × 3 cm

OVERVIEW:

-The use of plug-in full-color LED.

-RGB trichromatic limiting resistor to prevent burnout.

-Through the PWM adjusting, three primary colors can be mixed to obtain different colors.

-With a variety of single-chip interface.

-The working voltage: 5V.

-LED drive mode: common cathode driver

-₹ 90.00 (inc GST)

-₹ 76.27 (+18% GST extra)

PACKAGE INCLUDES:

1 PCS x Ky 016 Dip 3 Color Led Module


//SOURCE CODE TAKEN FROM BELOW LINK

//https://arduinomodules.info/ky-016-rgb-full-color-led-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(11, val);

    analogWrite(10, 255 - val);

    analogWrite(9, 128 - val);


    Serial.println(val, DEC);

    delay(5); 

  }

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

  {

    analogWrite(11, val);

    analogWrite(10, 255 - val);

    analogWrite(9, 128 - val);

    

    Serial.println(val, DEC);

    delay(5); 

  }

}

15 days

Write a review

Please login or register to review