

The Exhaust Fan is a device designed to ventilate and remove stale air, smoke, or fumes from an area. It is commonly used in kitchens, bathrooms, and industrial settings to maintain air quality and ensure a safe and comfortable environment. This documentation provides detailed information on the technical specifications, usage instructions, and troubleshooting tips for the Exhaust Fan.








| Parameter | Value |
|---|---|
| Voltage Rating | 220V AC |
| Current Rating | 0.5A |
| Power Rating | 110W |
| Airflow Capacity | 300 CFM (Cubic Feet per Minute) |
| Noise Level | 45 dB |
| Operating Temperature Range | -10°C to 50°C |
| Dimensions | 300mm x 300mm x 150mm |
| Weight | 2.5 kg |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | L | Live wire connection (220V AC) |
| 2 | N | Neutral wire connection |
| 3 | G | Ground connection |
Fan Not Turning On
Excessive Noise
Reduced Airflow
Overheating
Q1: Can the exhaust fan be used with an Arduino UNO? A1: Yes, the exhaust fan can be controlled using an Arduino UNO with the help of a relay module. Below is an example code to control the exhaust fan using an Arduino UNO and a relay module.
// Example code to control an exhaust fan using Arduino UNO and a relay module
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off initially
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn on the exhaust fan
delay(10000); // Keep the fan on for 10 seconds
digitalWrite(relayPin, LOW); // Turn off the exhaust fan
delay(10000); // Keep the fan off for 10 seconds
}
Q2: What is the maximum operating temperature for the exhaust fan? A2: The maximum operating temperature for the exhaust fan is 50°C.
Q3: How often should the exhaust fan be cleaned? A3: It is recommended to clean the exhaust fan at least once every three months to maintain optimal performance.
Q4: Can the exhaust fan be used in a humid environment? A4: Yes, the exhaust fan is designed to operate in environments with high humidity, such as bathrooms and kitchens.
By following this documentation, users can effectively utilize the Exhaust Fan in various applications, ensuring proper ventilation and air quality.