









| Parameter | Value |
|---|---|
| Operating Voltage | 5V, 12V, or 24V DC (varies by model) |
| Current Consumption | 0.1A to 0.5A (depending on size) |
| Power Rating | 0.5W to 12W |
| Speed | 1000 to 5000 RPM |
| Airflow | 10 to 100 CFM (Cubic Feet per Minute) |
| Noise Level | 20 to 50 dBA |
| Bearing Type | Sleeve or Ball Bearing |
| Connector Type | 2-pin, 3-pin, or 4-pin |
| Pin | Name | Description |
|---|---|---|
| 1 | VCC | Positive power supply (e.g., 12V) |
| 2 | GND | Ground connection |
| Pin | Name | Description |
|---|---|---|
| 1 | VCC | Positive power supply (e.g., 12V) |
| 2 | GND | Ground connection |
| 3 | Tach | Tachometer output for speed monitoring |
| Pin | Name | Description |
|---|---|---|
| 1 | VCC | Positive power supply (e.g., 12V) |
| 2 | GND | Ground connection |
| 3 | Tach | Tachometer output for speed monitoring |
| 4 | PWM | Pulse Width Modulation input for speed control |
Connecting the Fan:
Using with an Arduino UNO:
// Example code to control a 4-pin fan using Arduino UNO
const int pwmPin = 9; // PWM pin connected to the fan's PWM input
void setup() {
pinMode(pwmPin, OUTPUT); // Set the PWM pin as an output
}
void loop() {
analogWrite(pwmPin, 128); // Set fan speed to 50% (128 out of 255)
delay(5000); // Run at 50% speed for 5 seconds
analogWrite(pwmPin, 255); // Set fan speed to 100% (255 out of 255)
delay(5000); // Run at full speed for 5 seconds
}
Fan does not spin:
Fan spins but makes noise:
Fan speed is not controllable:
Fan speed monitoring does not work:
Can I use a 12V fan with a 5V power supply?
What is the difference between a 3-pin and a 4-pin fan?
How do I clean a fan?
Can I connect multiple fans to a single power supply?
By following this documentation, you can effectively use and troubleshoot a fan or ventilator in your projects.