

The 45X45X15 V Blower Fan is a compact, high-efficiency cooling and ventilation component. With its small form factor of 45mm x 45mm x 15mm, it is ideal for applications requiring effective heat dissipation in confined spaces. This fan is commonly used in electronics enclosures, 3D printers, computer systems, and other devices where thermal management is critical. Its reliable performance and low power consumption make it a popular choice for both hobbyists and professionals.








Below are the key technical details of the 45X45X15 V Blower Fan:
| Parameter | Value | 
|---|---|
| Dimensions | 45mm x 45mm x 15mm | 
| Operating Voltage | 5V or 12V (model-dependent) | 
| Current Rating | 0.1A to 0.2A (typical) | 
| Power Consumption | 0.5W to 2.4W (depending on model) | 
| Airflow | 3.5 CFM to 5.5 CFM | 
| Noise Level | 20 dBA to 30 dBA | 
| Bearing Type | Sleeve or Ball Bearing | 
| Connector Type | 2-pin or 3-pin JST | 
| Operating Temperature | -10°C to 70°C | 
| Weight | ~15g | 
The fan typically comes with a 2-pin or 3-pin connector. Below is the pin configuration:
| Pin | Wire Color | Description | 
|---|---|---|
| 1 | Red | Positive Voltage (VCC) | 
| 2 | Black | Ground (GND) | 
| Pin | Wire Color | Description | 
|---|---|---|
| 1 | Red | Positive Voltage (VCC) | 
| 2 | Black | Ground (GND) | 
| 3 | Yellow | Tachometer Signal (RPM Feedback) | 
Below is an example of how to control the fan using an Arduino UNO and a transistor for switching:
// Define the pin connected to the transistor's base
const int fanPin = 9;
void setup() {
  pinMode(fanPin, OUTPUT); // Set the fan control pin as an output
}
void loop() {
  // Turn the fan ON
  digitalWrite(fanPin, HIGH);
  delay(5000); // Keep the fan ON for 5 seconds
  // Turn the fan OFF
  digitalWrite(fanPin, LOW);
  delay(5000); // Keep the fan OFF for 5 seconds
}
Note: Use a suitable NPN transistor (e.g., 2N2222) and a base resistor (e.g., 1kΩ) to control the fan. The fan's positive terminal should be connected to the power supply, and the negative terminal should be connected to the transistor's collector.
Fan Does Not Spin:
Excessive Noise:
Fan Spins Slowly:
No RPM Signal (3-Pin Fan):
Can I use a 5V fan with a 12V power supply? No, using a higher voltage than the fan's rating can damage the motor. Use a voltage regulator or a power supply that matches the fan's rated voltage.
How do I reverse the airflow direction? The airflow direction is fixed by the fan's design. To reverse airflow, physically rotate the fan or use a fan designed for reverse airflow.
Can I control the fan speed? Yes, you can control the fan speed using PWM (Pulse Width Modulation) with a microcontroller like Arduino. Ensure the fan supports PWM control or use an external circuit.
What is the lifespan of the fan? The lifespan depends on the bearing type. Sleeve bearings typically last 30,000 hours, while ball bearings can last up to 50,000 hours under normal operating conditions.