

The L9110 DC Fan is a compact, low-power fan designed for cooling applications in electronic devices. It operates on direct current (DC) and is commonly used in computer systems, power supplies, and other electronic equipment to dissipate heat and maintain optimal operating temperatures. Its small size and efficient design make it ideal for use in space-constrained environments where effective heat management is critical.








The L9110 DC Fan is designed to operate efficiently under a range of conditions. Below are its key technical specifications:
| Parameter | Value |
|---|---|
| Operating Voltage | 5V DC |
| Operating Current | 100mA (typical) |
| Power Consumption | 0.5W |
| Fan Speed | 3000 RPM (±10%) |
| Airflow | 5 CFM (Cubic Feet per Minute) |
| Dimensions | 40mm x 40mm x 10mm |
| Connector Type | 2-pin JST |
| Noise Level | ≤ 25 dBA |
| Operating Temperature | -10°C to 70°C |
| Weight | 15g |
The L9110 DC Fan typically uses a 2-pin JST connector for power input. The pin configuration is as follows:
| Pin | Name | Description |
|---|---|---|
| 1 | VCC | Positive power supply (5V DC) |
| 2 | GND | Ground connection |
Below is an example of how to control the L9110 DC Fan using an Arduino UNO and a PWM signal:
// Define the pin connected to the fan
const int fanPin = 9; // PWM pin on Arduino UNO
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 transistor or motor driver module if the fan's current exceeds the Arduino's pin current limit (40mA).
Fan Does Not Spin
Fan Spins Slowly
Excessive Noise
Overheating Components
Q1: Can I use the L9110 DC Fan with a 12V power supply?
A1: No, the fan is designed for 5V DC operation. Using a 12V power supply may damage the fan.
Q2: How do I reverse the airflow direction?
A2: The airflow direction is fixed by the fan's design. To reverse airflow, physically rotate the fan.
Q3: Can I control the fan speed without a microcontroller?
A3: Yes, you can use a variable resistor or a dedicated fan speed controller circuit to adjust the voltage or PWM signal.
Q4: Is the fan waterproof?
A4: No, the L9110 DC Fan is not waterproof. Avoid exposing it to moisture or liquids.