

A 5V fan is a small electric fan designed to operate on a 5-volt DC power supply. It is commonly used for cooling electronic components, such as microcontrollers, processors, and power regulators, or for providing airflow in compact spaces like enclosures and small devices. Due to its low power consumption and compact size, the 5V fan is ideal for applications where space and energy efficiency are critical.








| Parameter | Value |
|---|---|
| Operating Voltage | 5V DC |
| Operating Current | Typically 0.1A to 0.3A |
| Power Consumption | 0.5W to 1.5W |
| Fan Speed | 3000–8000 RPM (varies by model) |
| Airflow | 2–10 CFM (varies by model) |
| Noise Level | 20–30 dBA (varies by model) |
| Dimensions | Common sizes: 30x30mm, 40x40mm, 50x50mm |
| Connector Type | 2-pin or 3-pin JST or Dupont |
| Pin Number | Wire Color (Typical) | Description |
|---|---|---|
| 1 | Red | Positive terminal (VCC, +5V) |
| 2 | Black | Negative terminal (GND) |
| 3 (optional) | Yellow | Tachometer signal (RPM feedback, if available) |
Note: Not all 5V fans include a tachometer signal. For basic 2-pin fans, only the red and black wires are used.
The following example demonstrates how to control a 5V fan using an Arduino UNO and a transistor for switching.
// Define the pin connected to the transistor's 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
}
Note: This example uses a transistor to switch the fan on and off. Directly connecting the fan to an Arduino pin is not recommended, as the fan's current draw may exceed the pin's maximum rating.
Fan Does Not Spin
Fan Spins Slowly
Fan is Noisy
Fan Overheats
Can I power a 5V fan with a USB port? Yes, most USB ports provide 5V and sufficient current to power a small 5V fan. However, ensure the fan's current draw does not exceed the USB port's limit (typically 500mA for USB 2.0).
Can I control the fan speed? Yes, you can control the fan speed using PWM (Pulse Width Modulation) if your fan supports it or by using an external fan speed controller.
What is the lifespan of a 5V fan? The lifespan depends on the fan's quality and operating conditions but typically ranges from 20,000 to 50,000 hours.
Can I use a 5V fan with a 3.3V system? No, a 5V fan requires a 5V power supply for proper operation. Using a 3.3V system may result in insufficient performance or failure to operate.