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-H |
Stellenbosch | In Stock | U45 |
We ship free of charge between branches to complete your order.
-
R12.95 (Inc Tax: R14.89)
Related Products
8X8 RGB Display For Pi
8X8 RGB Display For Pi This RGB LED HAT (B) can be easily attached on top of the Raspberry Pi to display colorful effect, and controlled by only one signal pin. The Main Features are: Suppo..
R218.00 (Inc Tax: R250.70)
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..
R80.00 (Inc Tax: R92.00)
Tags: rgb, color, colour, full colour, full color, module