Support » Application Note: Using AutoHotkey with Pololu USB Products » 5.a. Maestro Scripts »
5.a.3. Move a Servo
In the script below, Ctrl+Alt+C sets the servo’s target to near the end of its range. Ctrl+Alt+B sets the servo’s target to near the other end of its range.
^!c::Run usccmd --servo 0`,7500,,Hide ^!b:: Run usccmd --servo 0`,4500,,Hide
In the script below, Ctrl+Alt+C will set the speed and acceleration of the servo on channel 0, then set its target to near the end of its range. Ctrl+Alt+B will remove the speed and acceleration limits, then set the servo’s target to near the other end of its range.
^!c:: RunWait usccmd --accel 0`,12,,Hide RunWait usccmd --speed 0`,12,,Hide Run usccmd --servo 0`,7500,,Hide return ^!b:: RunWait usccmd --accel 0`,0,,Hide RunWait usccmd --speed 0`,0,,Hide Run usccmd --servo 0`,4500,,Hide return