

The 45X45X15 V Blower Fan is a compact and efficient cooling solution designed for electronic devices. With its small size of 45x45x15 mm, this blower fan is ideal for applications requiring targeted air circulation in confined spaces. It is commonly used in cooling electronic components such as microcontrollers, power supplies, and small enclosures to prevent overheating and ensure optimal performance.








The following table outlines the key technical specifications of the 45X45X15 V Blower Fan:
| Parameter | Specification |
|---|---|
| Dimensions | 45 mm x 45 mm x 15 mm |
| Operating Voltage | 5V DC or 12V DC (model-specific) |
| Current Consumption | 0.15 A (typical) |
| Power Consumption | 0.75 W (typical) |
| Airflow | 3.5 CFM (Cubic Feet per Minute) |
| Noise Level | 25 dBA |
| Bearing Type | Sleeve or Ball Bearing |
| Connector Type | 2-pin JST or bare wire leads |
| Operating Temperature | -10°C to 70°C |
| Weight | 15 g |
The blower fan typically comes with a 2-pin connector or bare wire leads. The pin configuration is as follows:
| Pin Number | Wire Color | Function |
|---|---|---|
| 1 | Red | Positive Voltage (VCC) |
| 2 | Black | Ground (GND) |
The blower fan can be controlled using an Arduino UNO for applications requiring variable speed. Below is an example circuit and code:
// Arduino code to control the speed of a 45X45X15 V Blower Fan using PWM
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 50 ms
}
// Gradually decrease fan speed
for (int speed = 255; speed >= 0; speed -= 5) {
analogWrite(fanPin, speed); // Set PWM duty cycle
delay(50); // Wait 50 ms
}
}
Fan Not Spinning
Excessive Noise
Overheating Components
Fan Spins Intermittently
Q: Can I use the blower fan with a 3.3V power supply?
A: No, the fan requires a minimum of 5V or 12V (depending on the model) to operate correctly.
Q: How do I determine the airflow direction?
A: The fan housing typically has arrows indicating the airflow direction and blade rotation.
Q: Can I control the fan speed without a microcontroller?
A: Yes, you can use a variable resistor or a dedicated fan speed controller circuit.
Q: Is the fan waterproof?
A: No, the fan is not waterproof. Avoid exposing it to moisture or liquids.