KY-009 PWM Modulator RGB SMD LED Modul 3 Color Light for Arduino DIY Starter Kit MCU Raspberry CF Board Three Primary Color
$11.57
$20.02
Description KY-009 RGB SMD LED Module – PWM Modulator (3-Color Light) for Arduino, Raspberry Pi, MCU & DIY Projects Description Bring your electronics projects to life with vibrant color using the KY-009 RGB SMD LED Module. This compact and efficient module features a 3-color RGB SMD LED controlled via PWM (Pulse Width Modulation), enabling you to mix red, green, and blue light to achieve millions of colors. Whether you’re working on an Arduino or Raspberry Pi project, a microcontroller-based system (MCU), or learning electronics through a DIY starter kit, the KY-009 is a perfect choice for adding visual feedback or stunning light effects. ✨ Key Features ✅ 3-in-1 RGB SMD LED – Red, Green, Blue channels ✅ PWM Modulation – Smooth color blending and brightness control ✅ Standard Interface – Compatible with Arduino, Raspberry Pi, ESP32, and other microcontrollers ✅ Low Power Consumption ✅ Compact Design – Fits easily on breadboards and custom PCBs ✅ Perfect for DIY kits, prototypes, and educational projects Package Includes 1x KY-009 RGB SMD LED Module Technical Specifications Parameter Value LED Type 5050 SMD RGB LED Input Voltage 3.3V – 5V DC Interface 3 x Digital I/O Pins Control Method PWM Module Dimensions Approx. 18mm x 15mm x 5mm Compatibility Arduino, Raspberry Pi, STM32, ESP8266, ESP32, and more How It Works Each color (Red, Green, Blue) is connected to a separate digital I/O pin. By adjusting the PWM signal on each pin, you can create any color combination. This makes the KY-009 ideal for learning how PWM works and how RGB color mixing operates. Ideal For: Arduino & Raspberry Pi learners DIY electronics hobbyists STEM education & classrooms RGB LED control experiments Light animation projects Sample Arduino Code int redPin = 9; int greenPin = 10; int bluePin = 11; void setup() { pinMode(redPin, OUTPUT); pinMode(greenPin, OUTPUT); pinMode(bluePin, OUTPUT); } void loop() { analogWrite(redPin, 255); // Full Red analogWrite(greenPin, 0); analogWrite(bluePin, 0); delay(1000); analogWrite(redPin, 0); analogWrite(greenPin, 255); // Full Green analogWrite(bluePin, 0); delay(1000); analogWrite(redPin, 0); analogWrite(greenPin, 0); analogWrite(bluePin, 255); // Full Blue delay(1000); }
Led