Pololu Maestro how to disable the servo once moved

Hi, using C++, using the commands:
setSpeed, setAcceleration, setTarget

is there a command or one of the above to disable a servo once moved?

Hello.

You can disable the output of a Maestro servo channel by setting the target position to 0. For example, to disabling the output of channel 3 would look something like this:

maestro.setTarget(3, 0);

However, please note that some digital servos will continue holding their last position when they stop receiving a signal.

Brandon