

The 5V fan is a small electric fan designed to operate on a 5-volt DC power supply. It is widely used for cooling electronic components, such as microcontrollers, power regulators, and other heat-sensitive devices. Its compact size and low power consumption make it ideal for use in small electronic projects, computer cases, and embedded systems.








Below are the key technical details of a typical 5V fan:
| Parameter | Value |
|---|---|
| Operating Voltage | 5V DC |
| Current Consumption | 80-200 mA (varies by model) |
| Power Consumption | 0.4W to 1W |
| Fan Speed | 3000-8000 RPM (varies by model) |
| Airflow | 2-10 CFM (Cubic Feet per Minute) |
| Noise Level | 20-30 dBA (varies by model) |
| Dimensions | Common sizes: 30x30mm, 40x40mm |
| Connector Type | 2-pin or 3-pin (depending on model) |
The 5V fan typically comes with a 2-pin or 3-pin connector. Below is the pin configuration:
| Pin | Wire Color | Description |
|---|---|---|
| 1 | Red | Positive terminal (5V input) |
| 2 | Black | Ground (GND) |
| Pin | Wire Color | Description |
|---|---|---|
| 1 | Red | Positive terminal (5V input) |
| 2 | Black | Ground (GND) |
| 3 | Yellow | Tachometer (speed feedback) |
Below is an example of how to control a 5V fan using an Arduino UNO and a transistor for switching:
// Define the pin connected to the transistor base
const int fanPin = 9;
void setup() {
pinMode(fanPin, OUTPUT); // Set the fan control pin as an output
}
void loop() {
digitalWrite(fanPin, HIGH); // Turn the fan ON
delay(5000); // Keep the fan ON for 5 seconds
digitalWrite(fanPin, LOW); // Turn the fan OFF
delay(5000); // Keep the fan OFF for 5 seconds
}
Fan Does Not Spin
Fan Spins Slowly
Excessive Noise
Fan Overheats
Q: Can I power the 5V fan directly from an Arduino UNO?
A: While the Arduino UNO's 5V pin can power a small fan, it is not recommended due to the limited current capacity of the board. Use an external power supply or a transistor for switching.
Q: How do I control the fan speed?
A: For 3-pin fans, you can use the tachometer wire to monitor speed or a PWM signal to control it. For 2-pin fans, speed control requires additional circuitry, such as a PWM driver.
Q: Can I use a 5V fan with a 12V power supply?
A: No, applying 12V to a 5V fan will likely damage it. Use a voltage regulator or step-down converter to supply 5V.
Q: How do I know the airflow direction?
A: Most fans have arrows on the housing indicating the airflow and blade rotation direction.
By following this documentation, you can effectively integrate a 5V fan into your projects for efficient cooling and reliable operation.