

The DC Fan 5V (Manufacturer Part ID: FAN-DC-5V-2PIN) is a compact and efficient direct current fan designed to operate at a nominal voltage of 5 volts. It is commonly used for cooling electronic components, such as microcontrollers, power supplies, and other heat-sensitive devices, or for providing airflow in small enclosures. Manufactured by Generic, SUNON, or Nidec, this fan is a reliable solution for thermal management in a variety of applications.








| Parameter | Specification |
|---|---|
| Operating Voltage | 5V DC |
| Operating Current | 80mA to 200mA (varies by model) |
| Power Consumption | 0.4W to 1W |
| Airflow | 5 to 15 CFM (Cubic Feet per Minute) |
| Noise Level | 20 to 30 dBA |
| Dimensions | 30x30x10 mm, 40x40x10 mm, or similar |
| Bearing Type | Sleeve or Ball Bearing |
| Connector Type | 2-pin JST or bare wire |
| Lifespan | 30,000 to 50,000 hours |
The DC Fan 5V typically comes with a 2-pin connector or bare wires for easy integration into circuits. Below is the pin configuration:
| Pin/Wire Color | Function | Description |
|---|---|---|
| Red | VCC (+5V) | Connect to the 5V power supply |
| Black | GND (Ground) | Connect to the ground of the circuit |
Below is an example of how to control the DC Fan 5V using an Arduino UNO and a transistor for PWM speed control.
// Arduino code to control a 5V DC fan using PWM
// Connect the fan's red wire to the collector of the transistor
// Connect the fan's black wire to GND
// Connect the transistor's emitter to GND
// Connect a 1kΩ resistor between the Arduino PWM pin and the transistor base
const int fanPin = 9; // PWM pin connected to the transistor base
void setup() {
pinMode(fanPin, OUTPUT); // Set the fan pin as an output
}
void loop() {
analogWrite(fanPin, 128); // Set fan speed to 50% (128 out of 255)
delay(5000); // Run at 50% speed for 5 seconds
analogWrite(fanPin, 255); // Set fan speed to 100% (255 out of 255)
delay(5000); // Run at full speed for 5 seconds
analogWrite(fanPin, 0); // Turn off the fan
delay(5000); // Fan off for 5 seconds
}
| Issue | Possible Cause | Solution |
|---|---|---|
| Fan does not spin | No power or incorrect wiring | Check the power supply and wiring connections. |
| Fan spins slowly or erratically | Insufficient voltage or current | Ensure the power supply provides 5V and sufficient current. |
| Excessive noise or vibration | Loose mounting or dust buildup | Secure the fan properly and clean the blades. |
| Fan overheats or stops working | Overvoltage or prolonged use at high load | Ensure the input voltage is 5V and allow cooling periods. |
Can I use the DC Fan 5V with a 3.3V power supply?
Can I reverse the polarity of the wires?
How can I reduce the noise of the fan?
Can I control the fan speed without a microcontroller?
By following this documentation, you can effectively integrate and maintain the DC Fan 5V in your projects for optimal cooling and performance.