Newbie Question Meastro 24

Hello.

I am not entirely sure I understand what you are asking about, but it sounds like you want to command the Maestro to disconnect power to your servos and stop sending it servo pulses. The Maestro cannot directly toggle the power to the servo power rails on the board, so if you want that feature you might consider using an external circuit, like one of our RC Switches.

You can stop sending a servo pulses by sending it a target position of “0”. For example:

begin
	5000 1 servo # set servo 1 to position = 1250 us
	3000 delay # delay for 3 seconds
	0 1 servo # stop sending servo pulses to servo 1
	3000 delay # delay for 3 seconds
repeat

-Jon