Articles on: Learning & FAQ

How to Use DSY Series Servo Motor RS485 Communication?

This article will demonstrate through sample code how to use RS485 communication of DSY series servo motors.

Speed Mode
Through the internal multi-speed function of the DSY series servo motor, RS485 can be used to control the motor to run in speed mode. The following is the RS485 example code when the motor is running at 200rpm:

● 01 06 00 00 00 01 48 0A //Set the control mode to speed mode.
● 01 10 0E 00 00 02 04 00 01 00 01 2F CF //Set the multi-segment speed operation mode to cycle operation, and the speed command end segment number is 01.
● 01 06 0E 07 00 C8 3B 75 //Set the speed of segment 01 speed command to 200rpm (hexadecimal: C8).
● 01 06 02 0B 00 01 38 70 //Enable the motor and start running.
● 01 06 02 0B 00 00 F9 B0 //Stop running.

The above is an example of making the motor run simply. If more complex settings are required, please refer to the manual of the DSY series servo motor for settings.

Position Mode


Through the internal multi-speed function of the DSY series servo motor, RS485 can be used to control the motor to run in position mode. The following is an RS485 example code for the 200000 pulse position when the motor is running at 200rpm:

● 01 06 00 00 00 00 //Set the control mode to position mode.
● 01 06 04 00 00 04 //Set the position command source as multi-segment position command.
● 01 10 0D 00 00 03 06 00 00 00 01 00 01 //Set the operating parameters of multi-segment positions, the starting point is 01, and the end point is 01.
● 01 10 0D 08 00 04 08 0D 40 00 03 00 C8 00 00 //Set the parameters of multi-segment position 01.
● 01 06 02 02 00 1D //Set DI2 as the internal multi-segment position enable port (FunIN.29).
● 01 06 02 0B 00 01 //Enable the motor (DI1 defaults to the motor enable port).
● 01 06 02 0C 00 01 //Trigger internal multi-segment position enable DI2.
● 01 06 02 0B 00 00 //Stop running.

The above is an example of making the motor run simply. If more complex settings are required, please refer to the manual of the DSY series servo motor for settings.

It is important to note that when using RS485 to send commands to set parameters, you need to ensure that the motor is disconnected and enabled, otherwise the parameters will not be written successfully.

Updated on: 03/03/2025

Was this article helpful?

Share your feedback

Cancel

Thank you!