Welcome to Kerala Project Center.
Image: RGB 84watt LED wall wash 1.jpg by Graceluk via Wikimedia Commons, Public domain
Decorative RGB lighting is common, but most affordable options offer only a handful of preset colors through a physical remote; a smartphone-controlled system opens up full custom color and brightness control instead.
This project pairs an Arduino with a Bluetooth module (HC-05) and an RGB LED strip, letting a smartphone app pick any color and brightness level, sent wirelessly and applied to the lighting in real time.
// Simplified Bluetooth RGB control - Arduino
int redPin = 9, greenPin = 10, bluePin = 11;
void setup() {
Serial.begin(9600); // HC-05 on Serial
pinMode(redPin, OUTPUT);
pinMode(greenPin, OUTPUT);
pinMode(bluePin, OUTPUT);
}
void loop() {
if (Serial.available() >= 3) {
int r = Serial.read();
int g = Serial.read();
int b = Serial.read();
analogWrite(redPin, r);
analogWrite(greenPin, g);
analogWrite(bluePin, b);
}
}
Monday - Saturday: 9:00 AM - 5:00 PM
Sunday: Not Working
2nd Floor, Comptron Arcade, Kallattumukku,
Thiruvananthapuram, Kerala 695012
+91 9633118080