The Mini Fan is a small electric fan designed for cooling or ventilation purposes. It is typically powered by a low-voltage DC motor, making it suitable for a wide range of applications. Its compact size and low power consumption make it ideal for use in electronics projects, small enclosures, and portable devices.
The following table outlines the key technical details of the Mini Fan:
Parameter | Value |
---|---|
Operating Voltage | 5V DC (typical), 3-12V range |
Current Consumption | 100-200mA (depending on load) |
Power Rating | 0.5W - 2.4W |
Fan Speed | 3000-8000 RPM (varies by model) |
Dimensions | 30mm x 30mm x 10mm (typical) |
Connector Type | 2-pin or 3-pin JST/PH2.0 |
Noise Level | 20-30 dB (depending on speed) |
Weight | ~10g |
The Mini Fan typically comes with a 2-pin or 3-pin connector. The pin configuration is as follows:
Pin Number | Name | Description |
---|---|---|
1 | VCC | Positive power supply (3-12V) |
2 | GND | Ground connection |
Pin Number | Name | Description |
---|---|---|
1 | VCC | Positive power supply (3-12V) |
2 | GND | Ground connection |
3 | PWM/Signal | Optional speed control input |
Below is an example of how to connect and control a Mini Fan using an Arduino UNO:
// Mini Fan Speed Control using PWM
// Connect the fan's PWM/Signal pin to Arduino pin 9
// Ensure the fan's VCC and GND are connected to 5V and GND respectively
const int fanPin = 9; // PWM-capable pin connected to the fan's signal pin
void setup() {
pinMode(fanPin, OUTPUT); // Set the fan pin as an output
}
void loop() {
// Set fan speed to 50% (128 out of 255)
analogWrite(fanPin, 128);
delay(5000); // Run at 50% speed for 5 seconds
// Set fan speed to 100% (255 out of 255)
analogWrite(fanPin, 255);
delay(5000); // Run at full speed for 5 seconds
// Turn off the fan (0 out of 255)
analogWrite(fanPin, 0);
delay(5000); // Fan off for 5 seconds
}
Fan Does Not Spin
Fan Spins Slowly
Fan Makes Excessive Noise
PWM Control Not Working
Q: Can I power the Mini Fan directly from a USB port?
A: Yes, most Mini Fans can be powered from a USB port (5V), provided the current draw does not exceed the port's limit (typically 500mA).
Q: Can I use the Mini Fan with a 12V power supply?
A: Yes, if the fan supports a 12V input. Check the specifications of your specific fan model before connecting.
Q: How do I reverse the airflow direction?
A: The airflow direction is fixed by the fan's design. To reverse airflow, physically rotate the fan or use a fan designed for reversible operation.
Q: Is the Mini Fan waterproof?
A: Most Mini Fans are not waterproof. Avoid exposing the fan to water or high humidity environments unless specified as waterproof.