

The Fan DC 12V is a direct current cooling fan designed to operate at 12 volts. It is widely used for cooling and ventilation in electronic devices, enclosures, and systems where heat dissipation is critical. This fan is compact, efficient, and reliable, making it an essential component in applications such as computer systems, power supplies, 3D printers, and other electronic equipment.








Below are the key technical details of the Fan DC 12V:
| Parameter | Value |
|---|---|
| Operating Voltage | 12V DC |
| Current Consumption | Typically 0.1A to 0.3A |
| Power Consumption | 1.2W to 3.6W |
| Speed | 2000 to 5000 RPM (varies by model) |
| Airflow | 20 to 50 CFM (Cubic Feet per Minute) |
| Noise Level | 20 to 40 dBA |
| Dimensions | Common sizes: 40mm, 60mm, 80mm, 120mm |
| Bearing Type | Sleeve or Ball Bearing |
| Connector Type | 2-pin or 3-pin |
| Lifespan | 30,000 to 50,000 hours |
The Fan DC 12V typically comes with a 2-pin or 3-pin connector. Below is the pin configuration:
| Pin | Wire Color | Description |
|---|---|---|
| 1 | Red | Positive (+12V) |
| 2 | Black | Ground (GND) |
| Pin | Wire Color | Description |
|---|---|---|
| 1 | Red | Positive (+12V) |
| 2 | Black | Ground (GND) |
| 3 | Yellow | Tachometer (Speed Signal) |
You can use the Fan DC 12V with an Arduino UNO for automated control. Below is an example of controlling the fan using a transistor and PWM.
// Fan control using PWM on Arduino UNO
const int fanPin = 9; // PWM pin connected to the transistor's 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
}
Fan Not Spinning
Excessive Noise
Low Airflow
Fan Stops Intermittently
Q: Can I use a 9V power supply for the Fan DC 12V?
A: No, using a 9V power supply will reduce the fan's performance and may cause it to stall.
Q: How do I control the fan speed?
A: Use a PWM controller or an Arduino to adjust the fan speed by varying the duty cycle of the PWM signal.
Q: What is the difference between a 2-pin and a 3-pin fan?
A: A 2-pin fan only supports power and ground connections, while a 3-pin fan includes a tachometer signal for speed monitoring.
Q: Can I connect the fan directly to an Arduino?
A: No, the Arduino cannot supply enough current for the fan. Use a transistor or a relay to control the fan.