

The Keyestudio Motor Fan is a compact and efficient fan powered by a motor, designed to provide airflow for cooling applications in electronic projects. It is commonly used in robotics, DIY electronics, and other projects where heat dissipation or airflow is required. Its small size and ease of integration make it a popular choice for hobbyists and professionals alike.








The Keyestudio Motor Fan is designed to operate efficiently in low-power electronic circuits. Below are its key technical details:
| Parameter | Value |
|---|---|
| Operating Voltage | 5V DC |
| Operating Current | 100mA (typical) |
| Power Consumption | 0.5W |
| Fan Dimensions | 30mm x 30mm x 10mm |
| Motor Type | Brushed DC Motor |
| Airflow | ~1.5 CFM (Cubic Feet/Minute) |
| Noise Level | ~25 dB |
| Connector Type | 2-pin JST |
| Pin Name | Description |
|---|---|
| VCC | Positive power supply (5V DC input) |
| GND | Ground connection |
Below is an example of how to control the Keyestudio Motor Fan using an Arduino UNO and a transistor:
// Example: Controlling the Keyestudio Motor Fan with Arduino UNO
// This code turns the fan on for 5 seconds, then off for 5 seconds in a loop.
const int fanPin = 9; // Pin connected to the transistor's base (via a resistor)
void setup() {
pinMode(fanPin, OUTPUT); // Set the fan control pin as an output
}
void loop() {
digitalWrite(fanPin, HIGH); // Turn the fan on
delay(5000); // Wait for 5 seconds
digitalWrite(fanPin, LOW); // Turn the fan off
delay(5000); // Wait for 5 seconds
}
Circuit Notes:
Fan Not Spinning:
Fan Spins Slowly:
Fan Makes Excessive Noise:
Fan Overheats:
Can I use the fan with a 3.3V power supply?
Can I control the fan speed?
Is the fan waterproof?
Can I use the fan with a battery?