Application Note: Using AutoHotkey with Pololu USB Products

AutoHotkey logo.

View document on multiple pages.
You can also view this document as a printable PDF.

1. Overview
2. Products with Command Line Programs
3. Installation
4. Using Autohotkey
5. Example AutoHotkey Scripts
5.a. Maestro Scripts
5.a.1. Toggle an LED
5.a.2. Start a Sequence
5.a.3. Move a Servo
5.b. Simple Motor Controller Scripts
5.b.1. Control a Motor
5.c. Jrk Scripts
5.c.1. Control a motor
6. Customer Projects

1. Overview

Did you ever want to control a motor or servo from your computer simply by pressing a key? You can do this with a few easy lines of code by using AutoHotkey to run the command-line utilities that come with some of our USB products. AutoHotkey is a flexible, free, open-source utility for Windows that runs in the background. It can be set up to detect when a keyboard-combination is pressed and respond by running a custom script. Since these custom scripts can run Windows command-line programs, they can run the command-line utilities included with some of Pololu’s USB products. There are many possible applications of using AutoHotkey with our USB products, including home automation, computer case modifications, and computer-controlled art/displays. See Section 6 for examples of customer projects using AutoHotkey and Pololu products.

2. Products with Command Line Programs

The following Pololu USB products have command-line utilities:

3. Installation

  1. Download and install AutoHotkey_L.
  2. Install the latest version of your Pololu USB product’s command-line utility. The command-line utility is usually packaged with the product’s software and drivers and can be found on the Resources tab of the product page.

The jrk’s jrkcmd is only available by compiling it with the Pololu USB Software Development Kit.

4. Using Autohotkey

AutoHotkey has a brief tutorial and overview, which explains the basics of using the program.

When using AutoHotkey with these command-line utilities there are a couple of issues to look out for:

  • The command-line utility will not run while the product software is connected to the USB device (e.g. usccmd cannot run while the Maestro Control Center is connected to a servo controller).
  • Only one instance of the command-line utility can be running at a time. If you try to run two commands in a row without using AutoHotkey’s RunWait, the command-line utility will not work.
  • Commas(,) in command-line utility commands need to be escaped with backtics (`).

5. Example AutoHotkey Scripts

5.a. Maestro Scripts

5.a.1. Toggle an LED

In this example, an LED is connected to channel 0. See Section 7.b of the Maestro User’s Guide to see how to connect an LED. Ctrl+Alt+C will turn the LED on, and Ctrl+Alt+B will turn the LED off.

^!c:: Run usccmd --servo 0`,8000,,Hide
^!b:: Run usccmd --servo 0`,0,,Hide

5.a.2. Start a Sequence

After making a sequence as described in Section 4.c of the Maestro User’s Guide, use the Copy all Sequences to Script button to save the sequences on the Maestro. You then can call the sequence by figuring out which subroutine on the Script tab corresponds to your sequence. UscCmd needs to be given the number (NUM) of the subroutine you want to call. To figure out the NUM of your subroutine, go to the Script tab and count the number of subroutines that appear before the subroutine you want to call, the number you count is the subroutine you want to call’s number (i.e. the first subroutine’s NUM is 0, the second is 1 and so on). Typing Ctrl+Alt+U runs the subroutine whose NUM is 0.

^!u:: Run usccmd --sub 0,,Hide

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

5.b. Simple Motor Controller Scripts

5.b.1. Control a Motor

Ctrl+Alt+C stops the motor, Ctrl+Alt+V sets the motor to go in the forward direction, Ctrl+Alt+B sets the motor to go in the reverse direction,

^!c:: Run smccmd --brake 32,,Hide
^!v:: Run smccmd --resume --speed 1500,,Hide
^!b:: Run smccmd --resume --speed -1500,,Hide

5.c. Jrk Scripts

5.c.1. Control a motor

Ctrl+Alt+C stops the motor, Ctrl+Alt+V sets the motor to go in the forward direction, Ctrl+Alt+B sets the current target position to 1500,

^!c:: Run jrkcmd --stop,,Hide
^!v:: Run jrkcmd --run,,Hide
^!b:: Run jrkcmd --target 1500,,Hide

6. Customer Projects

If you make a project using AutoHotkey and a Pololu product, please share it with us!

Related Products

Jrk 21v3 USB Motor Controller with Feedback
Jrk 12v12 USB Motor Controller with Feedback
Mini Maestro 12-Channel USB Servo Controller (Assembled)
Micro Maestro 6-Channel USB Servo Controller (Assembled)
Micro Maestro 6-Channel USB Servo Controller (Partial Kit)
Pololu Simple High-Power Motor Controller 18v15 (Fully Assembled)
Log In
Pololu Robotics & Electronics
Shopping cart
(702) 262-6648
Same-day shipping, worldwide
Menu
Shop Blog Forum Support
My account Comments or questions? About Pololu Contact Ordering information Distributors