

The Fan DC 12V is a compact and efficient cooling solution designed to operate on a 12-volt DC power supply. It is widely used in electronic systems to dissipate heat, ensuring optimal performance and preventing overheating. This fan is commonly found in computer systems, power supplies, 3D printers, and other electronic devices requiring airflow for cooling.








Below are the key technical details of the Fan DC 12V:
| Parameter | Value |
|---|---|
| Operating Voltage | 12V DC |
| Operating Current | 0.1A to 0.3A (varies by model) |
| Power Consumption | 1.2W to 3.6W |
| Speed (RPM) | 2000 to 5000 RPM (approx.) |
| Airflow | 20 to 50 CFM (Cubic Feet/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 (optional tachometer) |
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) |
The Fan DC 12V can be controlled using an Arduino UNO and a transistor for switching. Below is an example circuit and code:
// This code controls the Fan DC 12V using PWM on pin D9 of the Arduino UNO.
// Ensure the fan is connected via a transistor for proper switching.
const int fanPin = 9; // Pin connected to the transistor base
void setup() {
pinMode(fanPin, OUTPUT); // Set the fan control pin as output
}
void loop() {
analogWrite(fanPin, 128); // Set fan speed to 50% (PWM value: 128)
delay(5000); // Run the fan at 50% speed for 5 seconds
analogWrite(fanPin, 255); // Set fan speed to 100% (PWM value: 255)
delay(5000); // Run the fan at full speed for 5 seconds
}
Fan Does Not Spin
Fan Spins Slowly
Excessive Noise
Fan Overheats
Can I use a 9V power supply for the Fan DC 12V?
How do I reverse the airflow direction?
Can I control the fan speed without a microcontroller?
By following this documentation, you can effectively integrate and troubleshoot the Fan DC 12V in your projects.