

The FAN 12 V, manufactured by Arduino, is an electromechanical device designed to create airflow for cooling or ventilation purposes. It is commonly used in electronic devices to dissipate heat generated by components such as processors, power supplies, and other heat-sensitive parts. By maintaining optimal operating temperatures, the FAN 12 V ensures the longevity and reliability of electronic systems.








The following table outlines the key technical details of the FAN 12 V:
| Parameter | Specification |
|---|---|
| Manufacturer | Arduino |
| Part ID | FAN 12 V |
| Operating Voltage | 12 V DC |
| Operating Current | 0.15 A (typical) |
| Power Consumption | 1.8 W |
| Airflow | 25 CFM (Cubic Feet per Minute) |
| Noise Level | 25 dBA |
| Dimensions | 40 mm x 40 mm x 10 mm |
| Connector Type | 2-pin JST or bare wires |
| Bearing Type | Sleeve Bearing |
| Operating Temperature | -10°C to 70°C |
| Lifespan | 30,000 hours (typical) |
The FAN 12 V typically comes with a 2-pin connector or bare wires for easy integration into circuits. The pin configuration is as follows:
| Pin/Wire Color | Function | Description |
|---|---|---|
| Red | VCC (+12 V) | Connect to the positive terminal of a 12 V DC power supply. |
| Black | GND (Ground) | Connect to the ground terminal of the power supply. |
Below is an example of how to control the FAN 12 V using an Arduino UNO and a PWM signal:
// Define the pin connected to the fan's control circuit
const int fanPin = 9; // PWM pin on Arduino UNO
void setup() {
pinMode(fanPin, OUTPUT); // Set the fan pin as an output
}
void loop() {
// Set fan speed to 50% using PWM (128 out of 255)
analogWrite(fanPin, 128); // 50% duty cycle for medium speed
delay(5000); // Run the fan at this speed for 5 seconds
// Set fan speed to 100% (maximum speed)
analogWrite(fanPin, 255); // 100% duty cycle for full speed
delay(5000); // Run the fan at full speed for 5 seconds
// Turn off the fan
analogWrite(fanPin, 0); // 0% duty cycle to stop the fan
delay(5000); // Fan remains off for 5 seconds
}
Fan Does Not Spin:
Fan Spins Slowly:
Excessive Noise:
Fan Overheats:
Q1: Can I use the FAN 12 V with a 5 V power supply?
A1: No, the FAN 12 V requires a 12 V DC power supply for proper operation. Using a lower voltage will result in insufficient airflow or failure to spin.
Q2: How do I reverse the airflow direction?
A2: The airflow direction is fixed and cannot be reversed. To change the airflow direction, physically rotate the fan or install it in the opposite orientation.
Q3: Can I control the fan speed without a microcontroller?
A3: Yes, you can use a variable resistor (potentiometer) or a dedicated fan speed controller circuit to adjust the voltage or PWM signal.
Q4: What is the lifespan of the FAN 12 V?
A4: The typical lifespan is 30,000 hours under normal operating conditions. Regular maintenance can help extend its life.