

The RS PRO OD4015 Series Axial Fan is a compact and efficient cooling solution designed for a wide range of electronic applications. Operating at 5V DC, this axial fan delivers a maximum airflow of 14.4 m³/h, making it ideal for cooling small enclosures, electronic devices, and circuit boards. Its compact size and reliable performance make it a popular choice for applications requiring effective heat dissipation in confined spaces.








| Parameter | Value |
|---|---|
| Operating Voltage | 5V DC |
| Maximum Airflow | 14.4 m³/h |
| Fan Dimensions | 40mm x 40mm x 15mm |
| Rated Current | 0.12A |
| Power Consumption | 0.6W |
| Bearing Type | Sleeve Bearing |
| Noise Level | 25 dBA |
| Operating Temperature | -10°C to +70°C |
| Connector Type | 2-wire (red and black) |
| Weight | 16g |
| Wire Color | Function | Description |
|---|---|---|
| Red | Positive (+) | Connect to the positive terminal of the power supply (5V DC). |
| Black | Ground (-) | Connect to the ground terminal of the power supply. |
The RS PRO OD4015 fan can be controlled using an Arduino UNO for applications requiring variable fan speed. Below is an example of how to connect and control the fan using a PWM signal.
// RS PRO OD4015 Fan Control Example
// This code demonstrates how to control the fan speed using PWM on an Arduino UNO.
const int fanPin = 9; // PWM pin connected to the transistor base
void setup() {
pinMode(fanPin, OUTPUT); // Set the fan control pin as an output
}
void loop() {
// Gradually increase fan speed
for (int speed = 0; speed <= 255; speed += 5) {
analogWrite(fanPin, speed); // Set PWM duty cycle
delay(50); // Wait 50ms before increasing speed
}
// Gradually decrease fan speed
for (int speed = 255; speed >= 0; speed -= 5) {
analogWrite(fanPin, speed); // Set PWM duty cycle
delay(50); // Wait 50ms before decreasing speed
}
}
| Issue | Possible Cause | Solution |
|---|---|---|
| Fan does not spin | Incorrect wiring or no power supply | Verify wiring and ensure a stable 5V DC supply. |
| Fan spins but airflow is weak | Dust buildup or incorrect installation | Clean the fan blades and check airflow direction. |
| Excessive noise or vibration | Loose mounting or worn bearings | Tighten mounting screws or replace the fan if bearings are worn. |
| Fan overheats or stops working | Overvoltage or prolonged operation at high temperatures | Ensure the voltage is within the rated range and improve ventilation. |
Can I use this fan with a 12V power supply?
How do I determine the airflow direction?
Can I control the fan speed without an Arduino?
Is this fan suitable for outdoor use?
By following this documentation, users can effectively integrate the RS PRO OD4015 Series Axial Fan into their projects for reliable and efficient cooling.