

A DC fan is an electric fan powered by direct current (DC) electricity. It is widely used for cooling and ventilation in electronic devices and systems. DC fans are known for their efficiency, compact size, and ability to provide consistent airflow. They are commonly found in computers, power supplies, industrial equipment, and other applications where heat dissipation is critical.








Below are the key technical details for the DC fan manufactured by KATHIRAVAN R, part ID UNO:
| Parameter | Value |
|---|---|
| Operating Voltage | 5V DC to 12V DC |
| Current Consumption | 0.1A to 0.5A (depending on model) |
| Power Rating | 0.5W to 6W |
| Speed | 1000 to 5000 RPM |
| Airflow | 10 to 50 CFM |
| Noise Level | 20 to 40 dBA |
| Bearing Type | Sleeve or Ball Bearing |
| Dimensions | 40mm x 40mm, 80mm x 80mm, or 120mm x 120mm |
| Lifespan | 30,000 to 50,000 hours |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | VCC | Positive power supply input (5V to 12V DC) |
| 2 | GND | Ground connection |
| 3 | PWM (optional) | Pulse Width Modulation input for speed control (if supported) |
Below is an example of how to control a DC fan using an Arduino UNO and a transistor for speed control:
// Example: Controlling a DC fan with Arduino UNO using PWM
// Pin 9 is used to generate the PWM signal for fan speed control
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 the fan at 50% speed for 5 seconds
analogWrite(fanPin, 255); // Set fan speed to 100% (255 out of 255)
delay(5000); // Run the fan at full speed for 5 seconds
analogWrite(fanPin, 0); // Turn off the fan
delay(5000); // Wait for 5 seconds before repeating
}
Note: Use a suitable NPN transistor (e.g., 2N2222) and a base resistor (e.g., 1kΩ) to control the fan. Connect the fan's VCC to the power supply and its GND to the transistor's collector. The emitter should be connected to the circuit ground.
Fan Does Not Spin
Fan Spins Slowly
Excessive Noise
PWM Control Not Working
Q1: Can I use a DC fan with a 3.3V power supply?
A1: Most DC fans require a minimum of 5V to operate. Using a 3.3V supply may not provide sufficient power for the fan to spin.
Q2: How do I determine the airflow direction of the fan?
A2: Most DC fans have arrows on the housing indicating the airflow direction and blade rotation.
Q3: Can I connect the fan directly to an Arduino pin?
A3: No, the Arduino pins cannot supply enough current to drive a DC fan. Use a transistor or motor driver circuit to control the fan.
Q4: What is the lifespan of the DC fan?
A4: The lifespan typically ranges from 30,000 to 50,000 hours, depending on the bearing type and operating conditions.
By following this documentation, you can effectively integrate and troubleshoot the KATHIRAVAN R UNO DC fan in your projects.