Welcome to Kerala Project Center.
Traditional fans have exposed rotating blades — a safety risk around fingers and hair, harder to clean, and often noisy at higher speeds. Bladeless fan designs solve the safety and cleaning problems, but most only move ambient air; this project adds active cooling on top of that.
A Peltier (thermoelectric) module cools an internal heat sink that air is drawn across before being pushed out, while a hidden internal impeller in the base amplifies and directs that cooled air out through a narrow annular slot in the fan's ring — with no exposed blades anywhere in the airflow path.
// Simplified Peltier + impeller PWM control - Arduino
int tempSensorPin = A0;
int peltierPWM = 9;
int impellerPWM = 10;
float targetTempC = 22.0;
float readTemperatureC() {
int raw = analogRead(tempSensorPin);
float voltage = raw * (5.0 / 1023.0);
return (voltage - 0.5) * 100.0; // typical analog temp sensor scaling
}
void setup() {
pinMode(peltierPWM, OUTPUT);
pinMode(impellerPWM, OUTPUT);
}
void loop() {
float currentTemp = readTemperatureC();
if (currentTemp > targetTempC) {
analogWrite(peltierPWM, 200); // active cooling
analogWrite(impellerPWM, 180); // push cooled air out
} else {
analogWrite(peltierPWM, 80); // reduced power, maintain temp
analogWrite(impellerPWM, 120);
}
delay(500);
}
Monday - Saturday: 9:00 AM - 5:00 PM
Sunday: Not Working
2nd Floor, Comptron Arcade, Kallattumukku,
Thiruvananthapuram, Kerala 695012
+91 9633118080