Welcome to Kerala Project Center.
Large factories and warehouses carry real fire risk, but conventional fixed-pattern sprinklers spray in one direction only, leaving blind spots that a fire in the wrong position can spread through undetected before enough water reaches it.
This project replaces a fixed sprinkler head with a motor-driven rotating head, connected through a gearbox and pivot assembly, that sweeps the water jet through a full 360 degrees. Instead of relying on a static spray pattern, the head continuously (or sensor-triggered) rotates so every angle around the mounting point gets coverage over each rotation cycle, closing the blind spots a fixed sprinkler leaves.
// Simplified flame-trigger -> rotate + valve control - Arduino
int flameSensor = 2;
int rotationMotor = 5;
int solenoidValveRelay = 7;
void setup() {
pinMode(flameSensor, INPUT);
pinMode(rotationMotor, OUTPUT);
pinMode(solenoidValveRelay, OUTPUT);
Serial.begin(9600);
}
void loop() {
bool fireDetected = digitalRead(flameSensor) == HIGH;
if (fireDetected) {
digitalWrite(solenoidValveRelay, HIGH); // open water supply
digitalWrite(rotationMotor, HIGH); // start 360-degree sweep
Serial.println("Fire detected - rotating sprinkler activated");
} else {
digitalWrite(solenoidValveRelay, LOW);
digitalWrite(rotationMotor, LOW);
}
delay(200);
}
Monday - Saturday: 9:00 AM - 5:00 PM
Sunday: Not Working
2nd Floor, Comptron Arcade, Kallattumukku,
Thiruvananthapuram, Kerala 695012
+91 9633118080