Welcome to Kerala Project Center.
Image: X-10 smart home adapter.jpg by phylevn via Wikimedia Commons, CC BY 2.0
Manually operating every light, fan, and appliance in a home wastes energy and is inconvenient when residents are away or forgetful about switching things off.
This project builds a home automation system where appliances are controlled remotely over Bluetooth or Wi-Fi from a smartphone app, while sensors like DHT11 (temperature/humidity) or a PIR motion sensor let the system respond automatically to real conditions — turning on a fan when a room warms up, or lights when motion is detected — instead of relying purely on manual switching.
// Simplified home automation - Arduino int relayLight = 6, relayFan = 7; int pirPin = 2; #include#define DHTPIN 4 DHT dht(DHTPIN, DHT11); void setup() { Serial.begin(9600); // HC-05 on Serial pinMode(relayLight, OUTPUT); pinMode(relayFan, OUTPUT); pinMode(pirPin, INPUT); dht.begin(); } void loop() { if (Serial.available()) { char cmd = Serial.read(); if (cmd == 'L') digitalWrite(relayLight, !digitalRead(relayLight)); // toggle light if (cmd == 'F') digitalWrite(relayFan, !digitalRead(relayFan)); // toggle fan } if (digitalRead(pirPin) == HIGH) digitalWrite(relayLight, HIGH); // motion -> light on float temp = dht.readTemperature(); if (temp > 30.0) digitalWrite(relayFan, HIGH); // auto fan on hot rooms }
Monday - Saturday: 9:00 AM - 5:00 PM
Sunday: Not Working
2nd Floor, Comptron Arcade, Kallattumukku,
Thiruvananthapuram, Kerala 695012
+91 9633118080