

The Fan 3 is a compact and efficient device designed to create airflow for cooling or ventilation purposes. It is commonly used in electronic enclosures, computer systems, and other applications where heat dissipation is critical. By maintaining optimal airflow, the Fan 3 helps prevent overheating and ensures the longevity and reliability of electronic components.








| Parameter | Value |
|---|---|
| Operating Voltage | 5V DC |
| Operating Current | 0.2A |
| Power Consumption | 1W |
| Airflow | 10 CFM (Cubic Feet per Minute) |
| Dimensions | 40mm x 40mm x 10mm |
| Connector Type | 2-pin JST or bare wires |
| Noise Level | 25 dBA |
| Bearing Type | Sleeve Bearing |
| Lifespan | 30,000 hours at 25°C |
| Pin Number | Wire Color | Description |
|---|---|---|
| 1 | Red | Positive Voltage (VCC) |
| 2 | Black | Ground (GND) |
// Example code to control Fan 3 speed using PWM on Arduino UNO
// Connect the fan's positive wire to a 5V power source and the negative wire
// to the collector of an NPN transistor. The emitter should be connected to GND.
// The base of the transistor should be connected to a PWM pin via a resistor.
const int fanPin = 9; // PWM pin connected to the transistor base
int fanSpeed = 128; // Fan speed (0-255, where 255 is full speed)
void setup() {
pinMode(fanPin, OUTPUT); // Set the fan pin as an output
}
void loop() {
analogWrite(fanPin, fanSpeed); // Set fan speed using PWM
delay(1000); // Keep the fan running at this speed for 1 second
// Example: Gradually increase fan speed
for (fanSpeed = 0; fanSpeed <= 255; fanSpeed += 5) {
analogWrite(fanPin, fanSpeed); // Update fan speed
delay(100); // Wait 100ms between speed changes
}
// Example: Gradually decrease fan speed
for (fanSpeed = 255; fanSpeed >= 0; fanSpeed -= 5) {
analogWrite(fanPin, fanSpeed); // Update fan speed
delay(100); // Wait 100ms between speed changes
}
}
Fan Not Spinning:
Excessive Noise:
Overheating Components:
Fan Speed Not Changing with PWM:
Can I run the Fan 3 at 12V? No, the Fan 3 is designed for 5V DC operation. Running it at 12V may damage the motor.
How do I clean the fan? Use compressed air to remove dust and debris. Avoid using liquids or disassembling the fan.
Can I use the Fan 3 without a microcontroller? Yes, you can connect it directly to a 5V power source for constant operation.
What is the maximum operating temperature? The Fan 3 can operate reliably in temperatures up to 70°C.