The MG995 is a high-torque servomotor widely used in the fields of robotics, radio-controlled (RC) models, and industrial automation. It is designed to provide precise control over the angular position of its output shaft, making it an ideal choice for applications requiring accurate movement and positioning. Its robust construction and metal gears make it suitable for high-stress scenarios.
Pin Number | Description | Notes |
---|---|---|
1 | Ground | Connect to system ground |
2 | Power Supply (VCC) | 4.8V to 7.2V DC |
3 | Control Signal Input | PWM signal, typically 1-2 ms |
#include <Servo.h>
Servo myservo; // Create servo object to control the MG995
void setup() {
myservo.attach(9); // Attaches the servo on pin 9 to the servo object
}
void loop() {
myservo.write(90); // Set servo to mid-point (90 degrees)
delay(1000); // Wait for 1 second
myservo.write(0); // Set servo to 0 degrees
delay(1000); // Wait for 1 second
myservo.write(180); // Set servo to 180 degrees
delay(1000); // Wait for 1 second
}
Q: Can I control the MG995 with a standard RC transmitter and receiver? A: Yes, the MG995 can be controlled using standard RC equipment by connecting it to the receiver's servo channel.
Q: What is the pulse width for the full range of motion? A: The pulse width typically ranges from 1 ms for 0 degrees to 2 ms for 180 degrees, with 1.5 ms representing the 90-degree midpoint.
Q: How can I reverse the direction of rotation? A: To reverse the direction, you can either modify the control signal in software or swap the control signal wires if your controller supports it.