

Fan 1 is a compact and efficient device designed to create airflow by rotating its blades. It is commonly used for cooling or ventilation purposes in electronic circuits, ensuring that components such as microcontrollers, power supplies, and other heat-sensitive devices operate within safe temperature ranges. Its small size and low power consumption make it ideal for integration into a variety of projects, from DIY electronics to industrial applications.








| Parameter | Value |
|---|---|
| Operating Voltage | 5V DC |
| Operating Current | 100mA |
| Power Consumption | 0.5W |
| Airflow | 5 CFM (Cubic Feet per Minute) |
| Dimensions | 40mm x 40mm x 10mm |
| Connector Type | 2-pin JST |
| Noise Level | 25 dBA |
| Bearing Type | Sleeve Bearing |
| Lifespan | 30,000 hours |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | VCC | Positive power supply (5V DC) |
| 2 | GND | Ground connection |
Below is an example of how to control Fan 1 using an Arduino UNO and a transistor for PWM speed control.
// Example: Controlling Fan 1 speed with Arduino UNO
// Connect the fan's VCC to the collector of an NPN transistor
// Connect the fan's GND to the Arduino GND
// Use a PWM pin (e.g., pin 9) to control the transistor's base via a resistor
const int fanPin = 9; // PWM pin connected to the transistor's base
void setup() {
pinMode(fanPin, OUTPUT); // Set the fan control pin as output
}
void loop() {
analogWrite(fanPin, 128); // Set fan speed to 50% (128 out of 255)
delay(5000); // Run at 50% speed for 5 seconds
analogWrite(fanPin, 255); // Set fan speed to 100% (255 out of 255)
delay(5000); // Run at full speed for 5 seconds
analogWrite(fanPin, 0); // Turn off the fan
delay(5000); // Fan off for 5 seconds
}
Fan Does Not Spin
Fan Spins Slowly
Excessive Noise
Overheating Components
Q: Can I use Fan 1 with a 12V power supply?
A: No, Fan 1 is designed for 5V DC operation. Using a higher voltage may damage the fan.
Q: How do I know 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 Fan 1 suitable for outdoor use?
A: No, Fan 1 is not weatherproof and should only be used in indoor or protected environments.