Specifications:
- Operating voltage (red): 2 to 2.5VDC
- Operating voltage (green): 3.2 to 3.6VDC
- Operating voltage (blue): 3.2 to 3.6VDC
- Operating current (each LED): 20mA
- Configuration: common cathode
- Wavelength (red): 620nm
- Wavelength (green): 520nm
- Wavelength (blue): 470nm
- Light intensity (red): 200 to 300 mcd
- Light intensity (green): 1000 to 1320 mcd
- Luminous intensity (blue): 200 to 285 mcd
- Operating temperature: -40º to 85º Celsius
- Opening angle: 120º
- Brightness: 14 lumens
Applications:
Projects with Arduino or other microcontroller platforms that require an RGB LED to signal something through different colors and without the need to use an LED for each signaling.
Practice Proposal:
Use the RGB LED Module SMD 5050 KY-009 in conjunction with the Arduino and mix the primary colors to generate several other colors.
List of Necessary Items:
- 01 - Arduino with USB Cable
- 01 - SMD 5050 RGB LED Module KY-009
- 04 - Male-female jumper cables
Wiring Diagram:
This is a tutorial of how you can connect and wire the LED RGB Module 5050 SMD KY-009 3 Colors with Arduino:

Arduino Code for LED RGB Module SMD KY-009 3 Colors:
int pinoRed = 9;
int pinoGreen = 10;
int pinoBlue = 11;
int val;
void setup() {
pinMode(pinoRed, OUTPUT);
pinMode(pinoBlue, OUTPUT);
pinMode(pinoGreen, OUTPUT);
}
void loop() {
for (val = 255; val > 0; val--) {
analogWrite(pinoRed, val);
analogWrite(pinoBlue, 255 - val);
analogWrite(pinoGreen, 128 - val);
delay(10);
}
for (val = 0; val < 255; val++) {
analogWrite(pinoRed, val);
analogWrite(pinoBlue, 255 - val);
analogWrite(pinoGreen, 128 - val);
delay(10); // INTERVALO DE 10 MILISSEGUNDOS
}
}
Specifications:
- Operating voltage (red): 2 to 2.5VDC
- Operating voltage (green): 3.2 to 3.6VDC
- Operating voltage (blue): 3.2 to 3.6VDC
- Operating current (each LED): 20mA
- Configuration: common cathode
- Wavelength (red): 620nm
- Wavelength (green): 520nm
- Wavelength (blue): 470nm
- Light intensity (red): 200 to 300 mcd
- Light intensity (green): 1000 to 1320 mcd
- Luminous intensity (blue): 200 to 285 mcd
- Operating temperature: -40º to 85º Celsius
- Opening angle: 120º
- Brightness: 14 lumens
Applications:
Projects with Arduino or other microcontroller platforms that require an RGB LED to signal something through different colors and without the need to use an LED for each signaling.
Practice Proposal:
Use the RGB LED Module SMD 5050 KY-009 in conjunction with the Arduino and mix the primary colors to generate several other colors.
List of Necessary Items:
- 01 - Arduino with USB Cable
- 01 - SMD 5050 RGB LED Module KY-009
- 04 - Male-female jumper cables
Wiring Diagram:
This is a tutorial of how you can connect and wire the LED RGB Module 5050 SMD KY-009 3 Colors with Arduino:

Arduino Code for LED RGB Module SMD KY-009 3 Colors:
int pinoRed = 9;
int pinoGreen = 10;
int pinoBlue = 11;
int val;
void setup() {
pinMode(pinoRed, OUTPUT);
pinMode(pinoBlue, OUTPUT);
pinMode(pinoGreen, OUTPUT);
}
void loop() {
for (val = 255; val > 0; val--) {
analogWrite(pinoRed, val);
analogWrite(pinoBlue, 255 - val);
analogWrite(pinoGreen, 128 - val);
delay(10);
}
for (val = 0; val < 255; val++) {
analogWrite(pinoRed, val);
analogWrite(pinoBlue, 255 - val);
analogWrite(pinoGreen, 128 - val);
delay(10); // INTERVALO DE 10 MILISSEGUNDOS
}
}