Introduction
Robotic arm has been covered a variety of fields, including manufacturing industry, medical treatment, security control and other application. It plays as an assistant, an operator or even a work partner, like “Jarvis”! DFLG6DOF is a bionic robotic arm, it consists of six servo motors, corresponding to the arm, elbow, wrist (2 degrees of freedom), five joints and one rotating base in all. Each joint can move in a certain range, and the base can be rotated about 180 degrees. With 24 channel veyron servo controller, all action can be controlled via PC software, supporting online debug and wireless control. In a word, this is a high cost performance, easy to use robot arm. It is real a good robot demonstration teaching platform and DIY robotic arm. The servo can be connected directly to the arduino IO expansion shield or the Romeo robot microcontroller, and arduino servo library makes it easier to use.
Specification
- Operating Voltage: 4.8 ~ 7.2V
- Maximum load: 500 g
- Operating Current: 3A @ 5V (max)
- Interface type: XH2.54-3P interface
- Length (Assembled): 280 mm
- Height (Assembled): 340 mm
- Weight: 1096 g
Assembly Video
Tutorial
Software
- Arduino IDE (Version requirements: V1.6.?), Arduino IDE. Click to Download Arduino IDE from Arduino®.
Every servo should be calibrated before assemble, otherwise you will regret it. You can watch the video for the detail.
#include <Servo.h>
Servo myservo; // create servo object to control a servo
void setup()
{
myservo.attach(9); // attaches the servo on pin 9 to the servo object
}
void loop()
{
myservo.write(90); // Set the angle can be based on the need
delay(1000); // waits for the servo to get there
}
For any questions, advice or cool ideas to share, please visit the DFRobot Forum.
More Documents
Get 6 DOF Robotic Arm from DFRobot Store or DFRobot Distributor.
Category: DFRobot > Robotics > Robot Parts