• RGB Full Colour Module

RGB Full Colour Module

The KY-009 is a small breadboard friendly RGB LED module mounted on a small PCB making it very versatile. Using Arduino PWM function almost any colour can be created. Limiting resistors are required when connecting to Arduino pins.

Product Video

Quick Spec

  • Operating voltage: 5V
  • LED drive mode: Common Cathode
  • Max current: 20mA

Limiting Resistors for each Colour

  • R - Red : 180 Ohm resistor
  • G - Green : 100 Ohm resistor
  • B - Blue : 100 Ohm resistor

Arduino Code Example


int redPin = 11;
int greenPin = 10;
int bluePin = 9;
 
//uncomment this line if using a Common Anode LED
//#define COMMON_ANODE
 
void setup()
{
  pinMode(redPin, OUTPUT);
  pinMode(greenPin, OUTPUT);
  pinMode(bluePin, OUTPUT);  
}
 
void loop()
{
  setColor(255, 0, 0);  // red
  delay(1000);
  setColor(0, 255, 0);  // green
  delay(1000);
  setColor(0, 0, 255);  // blue
  delay(1000);
  setColor(255, 255, 0);  // yellow
  delay(1000);  
  setColor(80, 0, 80);  // purple
  delay(1000);
  setColor(0, 255, 255);  // aqua
  delay(1000);
}
 
void setColor(int red, int green, int blue)
{
  #ifdef COMMON_ANODE
    red = 255 - red;
    green = 255 - green;
    blue = 255 - blue;
  #endif
  analogWrite(redPin, red);
  analogWrite(greenPin, green);
  analogWrite(bluePin, blue);  
}

Shipping List

  • 1 x RGB Full Colour Module


RGB Full Colour Module

  • Brand: Generic
  • Product Code: KY-009
  • Product Status : Active
  • Stock

    Warehouse Stock Status Location
    Centurion In Stock UPPER-H03
    Stellenbosch In Stock U45
    Bulk Location No Stock

    We ship free of charge between branches to complete your order.

  • R10.00 (Inc Tax: R11.50)


Related Products

Wave TCS34725 Colour Sensor I2C

Wave TCS34725 Colour Sensor I2C

Wave TCS34725 Colour Sensor I2C This is a color sensor module based on TCS34725, will output RGB data and light intensity through the I2C interface. Its advantages include high sensitivity, wide dyna..

Centurion (In Stock)
Stellenbosch (In Stock)
Bulk Location (No Stock)
Part No: W16131
Product Status : Active

R170.00 (Inc Tax: R195.50)

TCS34725 Colour Sensor - I2C

TCS34725 Colour Sensor - I2C

TCS34725 Colour Sensor - I2C The TCS34725 is a compact, high-accuracy colour sensor module that can detect the colour of objects with precision. It features an integrated IR-blocking filter to mini..

Centurion (In Stock)
Stellenbosch (In Stock)
Bulk Location (No Stock)
Part No: TCS34725-MOD
Product Status : Active

R69.00 (Inc Tax: R79.35)

Tags: rgb, color, colour, full colour, full color, module