The Greartisan DC 12V 45RPM Turbo Worm Geared Motor (part number JSX180-370) is a high-quality geared motor that provides a slow rotation speed of 45 rotations per minute (RPM) at a stable 12V DC supply. The worm gear mechanism ensures high torque and reduces gear backlash, making it suitable for applications requiring precise motion control and load-driving capabilities.
Parameter | Specification |
---|---|
Operating Voltage | 12V DC |
No-Load Speed | 45 RPM |
Gearbox Type | Worm Gear |
Rated Torque | 10kg.cm |
Stall Torque | 30kg.cm |
Motor Type | Brushed DC Motor |
Direction of Rotation | Reversible |
The Greartisan JSX180-370 motor has two terminals for power connection:
Pin | Description |
---|---|
+ | Positive Voltage |
- | Negative Voltage |
// Example code to control Greartisan DC 12V 45RPM Motor with Arduino UNO
#include <Arduino.h>
const int motorPin = 3; // Connect to the motor control circuit
void setup() {
pinMode(motorPin, OUTPUT);
}
void loop() {
analogWrite(motorPin, 128); // Set speed at 50% duty cycle (adjust value between 0-255)
delay(1000); // Run for 1 second
analogWrite(motorPin, 0); // Stop the motor
delay(1000); // Wait for 1 second
}
Note: The above code assumes the use of a PWM-capable pin and a motor driver or transistor to control the motor speed.
Q: Can I run this motor at a voltage lower than 12V? A: Yes, but the speed and torque will be reduced accordingly.
Q: Is it possible to control this motor with a simple on/off switch? A: Yes, but you will not have speed or direction control.
Q: How can I reverse the direction of the motor? A: Reverse the polarity of the power supply to the motor, or use an H-bridge circuit for electronic control.
Q: What is the maximum load this motor can handle? A: The motor has a rated torque of 10kg.cm and a stall torque of 30kg.cm. Do not exceed these values to prevent damage.
For further assistance, please contact Greartisan technical support.