LSS Baud Rate Questions

I am controlling some LSS servos using an Arduino. I can communicate with and control them just fine, but I am having trouble figuring out how to set the baud rate. I am currently using 115200 and want to increase it.

I know I need to use the CB command to set it, but I’m not sure how. Is there a way I can use the Arduino console to just send command directly? I have tried typing them in there, but nothing seems to happen.

I’m sure there is some simple way to do it, but I can’t seem to find it. I’d appreciate any help.

1 Like

@Cyremann Welcome to the RobotShop Community.

The command is simple:

Serial.println("#5CB250000");

This would be for servo with ID 5 (for example), setting the baud rate to 250000. The command adds a carriage return to the end which is why there’s no within the command. You’ll have to reset the servo (power off and on, or send a RESET command).

2 Likes