The 12V DC JGY370 Worm Motor by Synacorp is a robust and reliable motor designed for applications requiring high torque and low speed. This motor features a worm gear, which provides precise control and high power, making it ideal for various mechanical and robotic applications.
Specification | Value |
---|---|
Manufacturer | Synacorp |
Part ID | JGY370 |
Operating Voltage | 12V DC |
No-load Speed | 10-100 RPM (varies by model) |
Rated Torque | 10-50 kg.cm (varies by model) |
Gear Type | Worm Gear |
Shaft Diameter | 6mm |
Motor Dimensions | 70mm x 37mm x 30mm |
Weight | 200g |
Pin Number | Pin Name | Description |
---|---|---|
1 | VCC | Power supply (12V DC) |
2 | GND | Ground |
3 | EN | Enable pin (optional, for control) |
4 | DIR | Direction control (optional) |
// Example code to control the JGY370 Worm Motor with an Arduino UNO
const int enablePin = 9; // Pin connected to EN
const int dirPin = 8; // Pin connected to DIR
void setup() {
pinMode(enablePin, OUTPUT); // Set enable pin as output
pinMode(dirPin, OUTPUT); // Set direction pin as output
}
void loop() {
digitalWrite(enablePin, HIGH); // Enable the motor
digitalWrite(dirPin, HIGH); // Set direction to forward
delay(2000); // Run motor for 2 seconds
digitalWrite(dirPin, LOW); // Set direction to reverse
delay(2000); // Run motor for 2 seconds
digitalWrite(enablePin, LOW); // Disable the motor
delay(1000); // Wait for 1 second
}
Motor Not Running:
Motor Overheating:
Inconsistent Speed:
Direction Control Not Working:
By following this documentation, users can effectively utilize the 12V DC JGY370 Worm Motor in their projects, ensuring reliable performance and longevity.