Scout ESC in RC Mode

Introduction

The Scout ESC is an open-source, dual brushed-motor speed controller that accepts both standard RC inputs or logic-level serial commands. The onboard processor is an ATmega 328 and can be programmed with the Arduino IDE using a standard FTDI cable or adapter (precompiled firmwares can also be downloaded and flashed to the Scout using the OP Config program). It operates at ultrasonic frequencies (no motor whine), at voltages up to 16 volts, and is rated at 12 amps continuous per motor without additional heatsinking, but the addition of a fan can increase the current capacity (30 amps max, requires serial commands to increase overcurrent limit beyond 12 amps). The Scout has its own onboard fan controller that can drive any standard 12 volt, 2-pin PC case fan (the 40mm size works well). The board has over-temperature protection, over and under-voltage protection, over-current protection, and is reverse-polarity protected. Current and voltage limits can be adjusted via serial commands.

The Scout was designed with the TCB in mind and requires no special setup in that application other than to plug and play. It is the perfect size for controlling even the heaviest 1/16th scale RC tanks. For more details on connecting the Scout and TCB together see the Serial Motor Controller page of the TCB Wiki.

The Scout can also be used in many other applications including robotics. You can think of it as an open-source variant of the Dimension Engineering Sabertooth 2x12 or the Pololu Qik 2s12v10. The remainder of this page covers technical documentation for those wanting to use the Scout in custom projects.

Scout ESC

The Scout dual motor controller

Additional Resources

  • For Scout board files, schematics, and bill of materials, see the Downloads page.
  • For Scout firmware, as well as a sample C++ library you can use to control the Scout from another Arduino or microcontroller, see the Scout GitHub page.

Functional Overview

Scout ESC board layout

Battery power should be connected to the screw terminals between the motor outputs. There is a secondary power output useful for providing battery voltage to a secondary device, such as the TCB. Do not connect the battery to the power output! It is not polarity-protected.

An optional physical switch can be connected to GND and MISO pins of the ICSP connector, see the diagram above. When this switch is closed both motors will be immediately stopped regardless of the inputs. This emergency stop switch should be implemented when the Scout is used in any device that could endanger humans.

Scout LED Key The Scout accepts either standard RC inputs (from any hobby receiver) or standard TTL serial commands at 38400 baud (5v max).

On boot the Scout blinks the red LED slowly until a signal is detected. Whichever type of signal is detected first is the communication protocol the Scout will use until the next reboot, and any signal on the alternate input will be ignored.

During normal operation the blue LED indicates the status of the incoming signal. If a fault is detected the motors will be immediately stopped and the red LED will flash a numeric sequence indicating the reason.

RC Operation

RC operation requires no special setup, just connect RC input 1 and 2 directly to a standard hobby receiver on any output that will operate a servo. RC input 1 controls motor 1, and RC input 2 controls motor 2.

The accepted pulse-width range is 1000-2000 microseconds. A pulse-width of 1500 uS (plus/minus a small deadband amount) equates to motor stopped. 1000 uS equals full speed reverse and 2000 uS full speed forward. Pulse-widths beyond those bounds will not result in any faster movement.

It is recommended to begin with your radio channels set to 100% travel with no subtrim, and then use trim if needed if the motor doesn't stop when the sticks are centered.

If an RC channel becomes disconnected the motor it controls will be stopped. If both channels become disconnected or no signal is received on both channels, the Scout will stop both motors and flash the blue LED rapidly to indicate radio signal lost.

Serial Operation

The Scout uses the same packetized serial protocol used by the Dimension Engineering Sabertooth line of motor controllers. Not all commands from the Sabertooth are supported, but the ones that are match exactly. Serial is TTL or “logic level”, meaning signals into the Scout should remain within 0-5 volts. If you wish to use a true RS-232 device such as the serial port on a computer, you must add an RS-232 level shifter on the serial input line first. Level shifters based on the MAX232 chip are inexpensive and widely available from SparkFun, eBay, and elsewhere.

The baud rate on the Scout is fixed at 38400 but can be changed by modifying the sketch, it is the first definition at the top of the file. Serial is in the 8N1 protocol: each data byte consists of 8 bits, no parity bit, and 1 stop bit. This is the most common configuration for serial communication today, and is probably already the default on whatever master device you are using.

The serial “packet” is always 4 bytes long: it starts with an address byte, then a command byte, a data byte, and a 7 bit checksum.

The Scout recognizes two addresses, set by the Address Select switch on the device:
Address A = 131
Address B = 132

In other words, up to 2 Scouts can be used on the same serial line without interference, if each is set to a different address. Note these addresses are within the larger range recognized also by Sabertooth devices (128-135). But as long as you set your Sabertooth to a different address, you can control a Scout and Sabertooth on the same serial line.

Command Reference

Here are the command bytes recognized by the Scout. Commands below 14 match the equivalent Sabertooth commands (though not all Sabertooth commands are implemented). Commands 14 and above are specific to the Scout.

0     Motor 1 Forward (0x00, b00000000)
This command will spin Motor 1 forward by the speed passed in the data byte. Valid speed data ranges from 0 to 127 with 0 being off (stopped) and 127 being full speed forward.

1     Motor 1 Reverse (0x01, b00000001)
This command will spin Motor 1 reverse by the speed passed in the data byte. Valid speed data ranges from 0 to 127 with 0 being off (stopped) and 127 being full speed forward.

2     Set Minimum Voltage (0x02, b00000010)
By default the Scout will stop the motors if the input voltage dips below 6 volts, but you can set a custom low-voltage cutoff to any level you want between 6 and 16 volts by 0.2 volt increments. Values are not saved on reboot, so must be set with each power cycle. The data byte that follows this command must specify the desired voltage level. The function for converting desired volts to data byte is:
        Data Byte = (Desired Volts - 6) x 5
The valid range for the data byte is therefore 0 through 50. A data byte of 0 will equal a cutoff of 6 volts, which is the minimum. A data byte of 50 will equal a cutoff of 16 volts, which is the maximum.

3     Set Maximum Voltage (0x03, b00000011)
Used to change the maximum voltage above which the Scout will stop the motors. Defaults to 16 volts and in fact 16 volts is the absolute maximum on all board revisions up to 11 (later designs may increase this, the VNH5019 driver chips can handle up to 24 volts but other components on the current board design are capped at 16). Values are not saved on reboot, so must be set with each power cycle. The data byte that follows this command must specify the desired voltage level in 0.2 volt increments. The function for converting desired volts to data byte is:
        Data Byte = (Desired Volts) x 5
The serial processor can accept data values from 30 to 140 (equating to voltages from 6 to 28) but they will be constrained to an absolute maximum which again for the current board design is capped at 16 volts (in other words, any data byte over 80 will be ignored).

4     Motor 2 Forward (0x04, b00000100)
This command will spin Motor 2 forward by the speed passed in the data byte. Valid speed data ranges from 0 to 127 with 0 being off (stopped) and 127 being full speed forward.

5     Motor 2 Reverse (0x05, b00000101)
This command will spin Motor 2 reverse by the speed passed in the data byte. Valid speed data ranges from 0 to 127 with 0 being off (stopped) and 127 being full speed forward.

6-13     Not Implemented
Not implemented and reserved for future compatibility with the equivalent Sabertooth commands.

14     Serial Watchdog (0x0E, b00001110)
The Serial Watchdog is disabled by default. When enabled, it functions as a safety feature that disables the motors if a serial command is not received within a user-defined length of time. This would protect for example against the case where the communication cable between the Scout and the host device becomes disconnected. Without the Serial Watchdog the Scout would just keep turning the motors at the same speed and direction as the last command. But with the Serial Watchdog enabled, the time allotment would expire and the watchdog would shut the motors down. This is a useful feature but it also requires code on the host device to continuously send commands even when those commands don't change, this is why it is disabled by default.

To enable the watchdog, send this command followed by a data byte that specifies the length of the timeout in 100 mS increments. A data value of 1 corresponds to 100mS (the minimum timeout), while a data value of 255 corresponds to a timeout of 25500mS (25.5 seconds, the maximum). The function for converting watchdog time to command data is
        Data Byte = ( Desired Watchdog Time in mS / 10 )

To disable the watchdog send this command with a data byte of 0. Since this feature is disabled by default on power-up, the only time you would need to issue a specific disable command is if you first enabled the watchdog and then later during the same session wanted to disable it.

15     Change Baud Rate (0x0F, b00001111)
When power is applied the Scout will always initialize its serial port to a baud rate of 38400. This takes all the guesswork out of knowing what rate to use to communicate with it. However you can tell it to switch to a new baud rate by issuing this command followed by one of the following data bytes:
1: 2400
2: 9600
3: 19200
4: 38400
5: 115200

Upon receiving one of these commands the Scout will switch its serial port to the new baud rate and from then on will only accept commands at the new rate. The setting is not remembered on shutdown, and upon next boot the Scout will re-initialize to 38400 once again.

16-19     Not Implemented
Not implemented.

20     Direct Fan Control (0x14, b00010100)
By default the fan output is controlled automatically by the Scout in response to temperature changes. However it is also possible to control it directly from your host application by using this command followed by a speed byte with a value from 0 to 255, with 0 being off and 255 being fully on. As soon as this command is received, internal Scout control is disabled and the fan output will maintain whatever speed you specify until you specify a new speed or revert control back to the Scout (see below). You would not have to plug a fan into this output, you could use it as a third, uni-directional (no reverse) speed control for a low current motor. Maximum current on this output should be kept to no more than 1 amp. Note: voltage on the fan output is equal to the input battery voltage.

21     Set Fan to Automatic Control (0x15, b00010101)
This command is typically not necessary because by default the Scout powers up with automatic fan control already enabled. But if you issue direct fan control commands (see above) and then in the same session want to return automatic control to the Scout, you can do so by sending this command. The data byte should still be included but its value will be ignored.

22     Set Maximum Current (0x16, b00010110)
By default the Scout will turn off the motors when either one of them exceeds a current draw of 12 amps, but you can increase or decrease that threshold by issuing this command followed by a data byte with a value between 1 and 30 to represent a current limit of 1 to 30 amps per motor (not total device current). Although the limit is per motor, if either motor exceeds the limit, both motors are disabled for safety. The Scout will re-enable them after some length of time has passed, typically about 5 seconds. Note: if you decide to set a current threshold greater than the default it is highly recommended you implement a cooling fan and heatsinks on the driver chips, otherwise you will run into shutdowns due to over-temperature conditions.

23     Brake at Stop (0x17, b00010111)
The default method of stopping the motors is simply to quit powering them. However this does nothing to keep them from free-wheeling in response to an external force. If we actually want them to remain stopped, we need to “brake” them. This is done by shorting both motor leads together, this creates resistance inside the motor that can help keep it stationary. The motor of course can still be turned as the brake is not very strong, but it can make a difference in some applications. Typically you will want to enable this for tracked vehicles or robots that use differential motor speed to steer. For cars or other applications you may prefer the motors to be able to freewheel.

The brake at stop setting defaults to false at bootup but can be set by the user via this serial command. Pass a value of 1 (true) in the data byte to enable, or 0 (false) to disable.

24     Drag Inner Track (0x18, b00011000)
This function was created to compensate for certain gearboxes such as the Taigen V2 Steel 3:1 and 4:1 gearboxes that have inadequate internal friction to prevent freewheeling with any sort of external force. When used in a tank or similar vehicle that requires differential motor speed in order to turn, the model may be difficult or impossible to steer.

The effect is most pronounced on heavy, wide-tracked models with metal upgrades, such as the King Tiger, Jagdtiger, Panther, Jagdpanther, etc…. In these cases reducing voltage to the inner track to steer does nothing, the outer (faster) track has enough traction with the ground to keep driving the model straight forward and the inner track just freewheels to keep up, rather than “dragging” the model into a turn as it should.

The DragInnerTrack setting defaults to false at bootup but can be set by the user via this serial command. Pass a value of 1 (true) in the data byte to enable, or 0 (false) to disable. When enabled, the Scout will determine which motor is supposed to be turning slower than the other, and attempt to prevent it from freewheeling beyond the desired speed by “dragging” it with brief, pulsed brake commands interspersed with the actual speed command.

The option should be left disabled unless you specifically have a need to use it.

Specifications

Input voltage: 6 - 16 volts
Operating current: 12 amps per channel continuous without fan
30 amps absolute max
Current limit set to 12 amps by default, can be increased via serial commands
Motor PWM: 21 kHz
RC Inputs: Standard 1000-2000 uS pulsewidth
(1500 uS = motor stopped)
Serial Input: 38400 baud; 8 data bits, no parity, one stop bit
TTL level (5v max)
Dimensions (L x W): 2.6" x 1.9" / 65mm x 47mm
Mounting holes: 1.57" / 40mm (use 4-40 or 3mm screws)

wiki/scout/start.txt · Last modified: 2019/09/05 20:24 by opadmin