The 130DC Fan Motor w/o Blades (Manufacturer: Keyestudio, Part ID: Fan four pin) is a compact and versatile DC motor designed for cooling and ventilation applications. This motor operates on direct current and is ideal for projects requiring a customizable fan blade setup. Its small size and efficient performance make it suitable for use in electronics cooling, robotics, and DIY projects.
The following table outlines the key technical details of the 130DC Fan Motor w/o Blades:
Parameter | Specification |
---|---|
Operating Voltage | 3V to 6V DC |
Rated Current | 0.2A (200mA) |
Maximum Current | 0.35A (350mA) |
Power Consumption | 1.2W (at 6V) |
Motor Speed | ~10,000 RPM (at 6V, no load) |
Dimensions | 15mm x 20mm x 25mm |
Weight | ~15g |
Shaft Diameter | 2mm |
Shaft Length | 10mm |
The motor features a four-pin connector for easy integration into circuits. The pin configuration is as follows:
Pin | Name | Description |
---|---|---|
1 | VCC (+) | Positive power supply terminal (3V to 6V DC). |
2 | GND (-) | Ground terminal for the power supply. |
3 | PWM Input | Pulse Width Modulation (PWM) input for speed control. |
4 | FG (Tachometer) | Feedback signal for monitoring motor speed (optional use). |
The 130DC Fan Motor can be controlled using an Arduino UNO. Below is an example code to control the motor speed using PWM:
// Define the PWM pin connected to the motor's PWM input
const int motorPWMPin = 9; // Pin 9 on Arduino UNO
void setup() {
// Set the motor PWM pin as an output
pinMode(motorPWMPin, OUTPUT);
}
void loop() {
// Gradually increase motor speed
for (int speed = 0; speed <= 255; speed += 5) {
analogWrite(motorPWMPin, speed); // Set PWM duty cycle
delay(50); // Wait 50ms
}
// Gradually decrease motor speed
for (int speed = 255; speed >= 0; speed -= 5) {
analogWrite(motorPWMPin, speed); // Set PWM duty cycle
delay(50); // Wait 50ms
}
}
Note: Ensure the motor's VCC and GND pins are connected to an external power source, as the Arduino's 5V pin may not provide sufficient current.
Motor Does Not Spin
Motor Overheats
Unstable Speed
No Feedback Signal from FG Pin
Can I use this motor with a 12V power supply? No, the motor is designed for a maximum voltage of 6V. Using a higher voltage may damage the motor.
What type of fan blades can I use with this motor? Any fan blade with a 2mm shaft hole can be used. Ensure the blades are balanced to avoid vibration.
Can I control the motor without a PWM signal? Yes, the motor will run at full speed if the PWM pin is left unconnected or tied to VCC.
Is the FG pin necessary for operation? No, the FG pin is optional and only used for speed monitoring. The motor will function without it.
This concludes the documentation for the 130DC Fan Motor w/o Blades. For further assistance, refer to the manufacturer's datasheet or contact Keyestudio support.