Veyron_Servo_Driver__24-Channel___SKU_DRI0029_-DFRobot

Introduction

Veyron Servo Driver (24-Channel) is a multiple servo controller, especially designed for humanoid robots, spider robots, robotic arms, and many other likewise applications. The controller integrates wireless data transmission interface, which is fully compatible with DFRobot Bluetooth module, APC220 wireless data transmission module and Xbee module. The controlling modes include real-time, timer, constant speed. Veyron Servo Driver (24-Channel) is the most powerful Mirco USB servo driver with high reliability on the market. It uses a high-performance, low-power STM32F103 microcontroller as its core control unit, which has a powerful, fast execution speed, high accuracy, strong I / O drive power. It supports Futaba, Hitec, Fraser and most common servos. The servo control range could be 0 ~ 180 ° (for 360 ° continuous rotation, retrofitting is needed); It has two servo control modes: single servo control, group servo control. In group control mode, the same group can be coordinated automatically with start and stop at the same time. It will be very useful in multi-DOF biomimetic robots, which requires smooth actions.

warning_yellow.png DO NOT PROGRAM THIS SHIELD! We have uploaded the firmware to Maple RET6 already. Please do NOT upload any sketch to the chip carelessly. Or it will be defective and cannot read any command by serial port anymore.

Specifications

Pin Definitions

DRI0029Pindefine.PNG

Install Driver

It requires to install the driver, when you use it for the first time.

NOTE: If you met any problem of installing the driver, you may need disable the Windows feature of Digital signature requirment, you need to disable that to install the driver. Actually, there is another way to install the driver for STM32, read at the end of the wiki > More > Share. |

Windows OS Driver

Windows Driver Download

  1. Connect Veyron Servo Driver 24-Channel to a computer via USB port(USB2.0 is better).And Open your PC Device Manager.

  2. Press the "reset" button, the blue light will flash six times fast, then slow blink several times.

  3. Press the "reset" button again, and then press to hold "BOOTO" button during blue lights flashing rapidly, until the light starts blinking slowly. The blue light will keep flashing. Now you can install the driver.

  4. Windows will prompt you for a driver, manually locate the directory, select mapleDrv -->dfu_x64/dfu_x32(Please select your OS bit: 64-bits or 32-bits) in the folder. Next install a virtual serial port driver:

  5. Reset Veyron Servo Driver 24-Channel with RET button, wait for the blue light stops flashing. At this point Windows will prompt to install the driver, too. Please manually locate the directory, select mapleDrv -->serial in the folder. Until now, the driver has been installed.

Relationship between Steering Angle and PWM Signal

Formula

Run Time (sec) = pulse width (us) / Speed (us / sec).

e.g.The initial position is 750us, the finial position is 2250us, the speed is 1000us/s The running time;

T=(2250-750)/1000=1.5s

So the running time is 1.5s.

Tutorial

Device List:

Veyron requires an external power supply to support the servo

How to drive the board from Serial port

In this section, we will use Arduino IDE as a Serial port communication tool to control the servo. And, you also could use other Serial port software, like putty, CoolTerm etc. Connect Micro USB cable to the Veyron Servo Driver 24-Channel, then the power indicator LED will be on. Connect an external 5V power to the VS and GND. Then switch the DIP 3 at SERIAL, USB has been defaulted to 57600 baudrate (cannot be changed), should be consistent with software.

Open you Arduino IDE, click "Tools", select your board Serial port, and open the Serial monitor.

Select "Carriage return",and the right baudrate.

How to drive the board from Arduino

Sample Code

void setup() {
  Serial.begin(115200);//Set the baudrate to 115200 A:1  B:1
  delay(100);//wait for baudrate setting finished
}

void loop() {
  Serial.print("#5 P750");// Channel 5 will move to 750us within 500ms
  delay(5);               //wait for first comand transmission done, if you send
  // a long command, you'd better extend it
  Serial.print("\r");    // send Carriage Return <CR>
  delay(1000);            //wait for servo go to the set position
  Serial.print("#5 P2200");// Channel 5 will move to 2200us within 500ms
  delay(5);
  Serial.print("\r");
  delay(1000);
}

Command Lists

Standard Commands

#<ch> P <pw> S <spd> ...# <ch> P <pw> S <spd> T <time><cr>
Example Commands
#5 P1600 S750 <cr>

The servo on Channel 5 will move to 1600us position at the speed of 750us/s.

#5 P1600 T1000 <cr>

The servo on Channel 5 will move to 1600us from any position after 1000ms.

#5 P1600 #10 P750 T2500 <cr>

The Servo on Channel 5 will move to 1600us position and servo on channel 10 will move to the 750us position. They will arrive simultaneously after 2500ms. This command can coordinate multiple servo speed, even if the initial position of two servos are very far, you can make they start to rotate and stop at one specified position. This command is very suitable for humanoid bipedal robot

Pulse Offset

#<ch> PO <offset value> ... # <ch> PO <offset value> <cr>

To rectify the pulse width of a channel, then humanoid robot could rectify the position without mechanical hardware.

Digital Output

#<ch> <lvl> ... # <ch> <lvl> <cr>

The channel will output a level after received carriage return symbols in 20ms.

Example Commmand
#3H #4L <cr>

This command makes the channel 3 output a high level(+3.3 V), Channel 4 output a low level(0V).

Byte Output

# <bank>: <value> <cr>

This command allows the 8-bit binary write-once and simultaneously update all channels in the bank, the update will be completed within 20ms after receive carriage return symbols

Example Commmand
# 1:123 <cr>

This command enables bank output 123 in decimalism, 123(decimal) = 01111011 (binary), bank 1 for channels 8-15, then channel 8 and 13 in bank 1 will be 0, the other channel will be 1.

Query State of Motion

Q <cr>

If servo is rotating, it will return "+", if servo has moved to a specific location, it will return "." The return value of this command will delay 50us to 5ms.

Query Pulse Width

QP <ch> <cr>

The return value is one byte (binary), which means the servo current pulse width, resolution: 10us, for example, the pulse width is 1500us, then it will return to 150 (binary). This command can query multiple servo pulse width, each servo has a byte, the return value will delay 50us to 5ms, typical value is 100us.

How to drive the board from the DFServo

We have made a special software--DFServo to drive Veyron. You could click here to check DFServo tutorial.

Veyron Servo Driver Wireless Communication

Sample Code

void setup() {
  Serial.begin(115200);//Set the baudrate to 115200 A:1  B:1
  delay(100);//wait for baudrate setting finished
}

void loop() {
  Serial.print("#5 P750");// Channel 5 will move to 750us within 500ms
  delay(5);               //wait for first comand transmission done, if you send
  // a long command, you'd better extend it
  Serial.print("\r");    // send Carriage Return <CR>
  delay(1000);            //wait for servo go to the set position
  Serial.print("#5 P2200");// Channel 5 will move to 2200us within 500ms
  delay(5);
  Serial.print("\r");
  delay(1000);
}

Xbee Wireless Communication

APC220 Wireless Communication

Trouble Shooting

Q&A Some general Arduino Problems/FAQ/Tips
Q Why I cannot control servo by external serial port, I mean when I use BT module or by arduino Uno serial port? I can do it through pc's serial monitor.
A Hello, it's for the baud rate setting. Have you noticed the baudrate setting switch on the corner of the board. Is it in the right place, e.g. if your code is 115200, then the 3 switchs should be in the position as:A1, B1, SERIAL. Besides, the switch are not good to use, you might need a little strenth to poke it from one side to the other side to make sure it is connected firmly. We will update the switch in the next version.

More Documents

DFshopping_car1.png Get it from Veyron Servo Driver (24 Channel) or DFRobot Distributor.