

An exhaust fan is a device designed to expel air from an enclosed space, typically to remove heat, moisture, or odors. By improving ventilation and air quality, exhaust fans are essential in various environments, such as kitchens, bathrooms, workshops, and industrial facilities. They help maintain a comfortable and safe atmosphere by preventing the buildup of humidity, smoke, or harmful fumes.








Below are the general technical specifications for a standard exhaust fan. Specifications may vary depending on the model and manufacturer.
For exhaust fans with an integrated motor and wiring, the following table outlines the typical wire connections:
| Wire Color | Function | Description |
|---|---|---|
| Black | Live (L) | Connects to the live AC power supply. |
| White | Neutral (N) | Connects to the neutral AC power supply. |
| Green/Yellow | Ground (GND) | Provides grounding for safety. |
For DC-powered exhaust fans (less common), the pin configuration may look like this:
| Pin | Function | Description |
|---|---|---|
| +V | Positive Voltage Input | Connects to the positive terminal of the power supply. |
| GND | Ground | Connects to the negative terminal of the power supply. |
For DC exhaust fans, you can control the fan's speed using an Arduino UNO and a PWM signal. Below is an example code snippet:
// Arduino code to control a DC exhaust fan using PWM
// Connect the fan's +V to a transistor controlled by pin 9
// Connect the fan's GND to the Arduino GND
const int fanPin = 9; // PWM pin connected to the transistor controlling the fan
void setup() {
pinMode(fanPin, OUTPUT); // Set the fan pin as an output
}
void loop() {
// Gradually increase fan speed
for (int speed = 0; speed <= 255; speed += 5) {
analogWrite(fanPin, speed); // Set fan speed using PWM
delay(50); // Wait 50ms before increasing speed
}
// Gradually decrease fan speed
for (int speed = 255; speed >= 0; speed -= 5) {
analogWrite(fanPin, speed); // Set fan speed using PWM
delay(50); // Wait 50ms before decreasing speed
}
}
Fan Does Not Turn On:
Excessive Noise:
Fan Vibrates Excessively:
Fan Runs at Low Speed:
Can I use an exhaust fan with a dimmer switch?
How do I calculate the required CFM for my space?
Can I use an exhaust fan outdoors?
By following this documentation, you can effectively install, use, and maintain an exhaust fan for optimal performance and longevity.