LSS-P - Communication Protocol

Version 18.1 by Coleman Benson on 2023/06/27 13:10

More information coming soon

Page Contents

Serial Protocol

The Lynxmotion Smart Servo (LSS) serial protocol was created in order to be as simple and straightforward as possible from a user perspective ("human readable format"), while at the same time staying compact and robust yet highly versatile. The protocol was based on Lynxmotion's SSC-32 & SSC-32U RC servo controllers and almost everything one might expect to be able to configure for a smart servomotor is available.

In order to be able to control each servo individually with commands, the first step should be to assign a different ID number to each servo (see details on the Configure ID, or "CID" command here). Only the servo(s) which have been configured to a specific ID will act on a command sent to that ID. There is currently no CRC or checksum implemented as part of the protocol.

Action Commands

Action commands tell the servo, within that session, to do something (i.e. "take an action"). The types of action commands which can be sent are described below, and they cannot be combined with other commands such as queries or configurations. Only one action command can be sent at a time. Action commands are session-specific, therefore once a servo is power cycled, it will not have any "memory" of previous actions or virtual positions (described below). Action commands are sent serially to the servo's Rx pin and must be sent in the following format:

  1. Start with a number sign # (Unicode Character: U+0023) 
  2. Servo ID number as an integer (assigning an ID described below)
  3. Action command (one or more letters, no whitespace, capital or lowercase from the list below)
  4. Action value in the correct units with no decimal
  5. End with a carriage return \r or <cr> Unicode Character (U+000D)

Ex: #5D18000<cr>

This sends a serial command to all servo's RX pins which are connected to the bus and only servo(s) with ID #5 will move to a position (1800 in tenths of degrees) of 180.0 degrees. Any servo on the bus which does not have ID 5 will take no action when receiving this command.

Modifiers

Modifiers can only be used with certain action commands. The format to include a modifier is:
  1. Start with a number sign # (Unicode Character: U+0023)
  2. Servo ID number as an integer
  3. Action command (one to three letters, no spaces, capital or lowercase from a subset of action commands below)
  4. Action value in the correct units with no decimal
  5. Modifier command (one or two letters from the list of modifiers below)
  6. Modifier value in the correct units with no decimal
  7. End with a carriage return \r or <cr> Unicode Character (U+000D)
Ex: #5D1800T1500<cr>
This results in the servo with ID #5 rotating to a position (1800 in tenths of degrees) of 180.0 degrees in a time ("T") of 1500 milliseconds (1.5 seconds).
Query commands request information from the servo. They are received via the Rx pin of the servo, and the servo's reply is sent via the servo's Tx pin. Using separate lines for Tx and Rx is called "full duplex". Query commands are also similar to action and configuration commands and must use the following format:
  1. Start with a number sign # (Unicode Character: U+0023)
  2. Servo ID number as an integer
  3. Query command (one to four letters, no spaces, capital or lower case)
  4. End with a carriage return \r or <cr> Unicode Character (U+000D)
Ex: #5QD<cr> Query the position in (tenth of) degrees for servo with ID #5
The query will return a serial string (almost instantaneously) via the servo's Tx pin with the following format:
  1. Start with an asterisk * (Unicode Character: U+0023)
  2. Servo ID number as an integer
  3. Query command (one to four letters, no spaces, capital letters)
  4. The reported value in the units described, no decimals.
  5. End with a carriage return \r or <cr> Unicode Character (U+000D)
There is currently no option to control how fast a servo replies after it has received a query command, therefore when sending a query command to the bus, the controller should be prepared to immediately "listen" for and parse the reply. Sending multiple queries to multiple servos on a bus in fast succession may result in replies overlapping and giving incorrect or corrupt data. As such, the controller should receive a reply before sending a new query command. A reply to the query sent above might be:
Ex: *5QD1800<cr>
This indicates that servo #5 is currently at 180.0 degrees (1800 tenths of degrees).
Configuration commands and corresponding values affect a servo's defaults which are written to and read from the servo's EEPROM.
These configurations are retained in memory after the servo is reset or power is cut / lost. Some configuration commands affect the session, while others do not. In the Command table below, the column "Session" denotes if the configuration command affects the session. Not all action commands have a corresponding configuration command and vice versa. More information about which configuration commands are retained when in RC mode can be found on the LSS - RC PWM page. Configuration commands are not cumulative. This means that if two of the same configuration commands are sent, one after the next, only the last configuration is used and stored.
The format to send a configuration command is identical to that of an action command:
  1. Start with a number sign # (Unicode Character: U+0023)
  2. Servo ID number as an integer
  3. Configuration command (two to four letters, no spaces, capital or lower case)
  4. Configuration value in the correct units with no decimal
  5. End with a carriage return \r or <cr> Unicode Character (U+000D)
Ex: #5CO-50<cr>
This configures an absolute origin offset ("CO") with respect to factory origin of servo with ID #5 and changes the offset for that session to -5.0 degrees (50 tenths of degrees). Once the servo is powered off and on, zeroing the servo will cause it to move to -5.0 degrees with respect to the factory origin and report its position as 0 degrees. Configuration commands can be undone / reset either by sending the servo's default value for that configuration, or by doing a factory reset that clears all configurations (through the button menu or with DEFAULT command described below).
Session vs Configuration Query
By default, the query command returns the session's value. Should no action commands have been sent to change the session value, it will return the value saved in EEPROM which will either be the servo's default, or modified with a configuration command. In order to query the value stored in EEPROM (configuration), add a '1' to the query command:
Ex: #5CSR20<cr> immediately sets the maximum speed for servo #5 to 20rpm (explained below) and changes the value in memory.
After RESET, a command of #5SR4<cr> sets the session's speed to 4rpm, but does not change the configuration value in memory. Therefore:
#5QSR<cr> or #5QSR0<cr> would return *5QSR4<cr> which represents the value for that session, whereas
#5QSR1<cr> would return *5QSR20<cr> which represents the value in EEPROM
The ability to store a "virtual angular position" is a feature which allows for rotation beyond 360 degrees, permitting multiple rotations of the output horn, moving the center position and more. The "absolute position" would be the angle of the output shaft with respect to a 360.0 degree circle and can be obtained by taking the modulus (with respect to 360 degrees) of the value. For example if the virtual position is reported as 15335 (or 1533.5 degrees), taking the modulus would give 93.5 degrees (3600 * 4 + 935 = 15335) as the absolute position (assuming no origin offset).
LSS-servo-positions.jpg
In this example, the gyre direction (explained below, a.k.a. "rotation direction") is positive (clockwise), and origin offset has not been modified. Each square represents 30 degrees. The following command is sent:
#1D-300<cr> This causes the servo to move to -30.0 degrees (green arrow)
#1D2100<cr> This second position command is sent to the servo, which moves it to 210.0 degrees (orange arrow)
#1D-4200<cr> This next command rotates the servo counterclockwise to a position of -420 degrees (red arrow), which means one full rotation of 360 degrees plus 60.0 degrees (420.0 - 360.0), with a virtual position of -420.0 degrees.
Although the final physical position would be the same as if the servo were commanded to move to -60.0 degrees, the servo is in fact at -420.0 degrees.
#1D4800<cr> This new command is sent which would then cause the servo to rotate from -420.0 degrees to 480.0 degrees (blue arrow), which would be a total of 900 degrees of clockwise rotation, or 2.5 complete rotations.
#1D3300<cr> would cause the servo to rotate from 480.0 degrees to 330.0 degrees (yellow arrow).
If the servo loses power or is power cycled, it also loses the virtual position associated with that session. For example, if the virtual position was 480.0 degrees before power is cycled, upon power up the servo's position will be read as +120.0 degrees from zero (assuming center position has not been modified). The virtual position range at power-up is [-180.0°, 180.0°].

Command List

Latest firmware version currently : v0.0.780

Communication Setup
 DescriptionActionQueryConfigRCSerialDefaultUnitNotes
 ResetRESET     Soft reset. See command for details.
 Default ConfigurationDEFAULT     Revert to firmware default values. See command for details
 Firmware Update ModeUPDATE     Update firmware. See command for details.
 Confirm ChangesCONFIRM      
 Change to RC  CRC   Change to RC mode 1 (position) or 2 (wheel). 
 ID # QIDCID 0 Reset required after change. ID 254 is a "broadcast" which all servos respond to. 
 Baudrate QBCB 115200 Reset required after change.
Motion
 DescriptionActionQueryConfigRCSerialDefaultUnitNotes
 Position in DegreesDQD/QDT   1/10° 
 Move in Degrees (relative)MD    1/10° 
 Wheel mode in DegreesWDQWD/QVT   °/sA.K.A. "Speed mode" or "Continuous rotation"
 Wheel mode in RPMWRQWR   RPMA.K.A. "Speed mode" or "Continuous rotation"
 Position in PWMPQP   usInherited from SSC-32 serial protocol
 Move in PWM (relative)M    us 
 Raw Duty-cycle MoveRDMQMD   -1023 to 1023 integerPositive values : CW / Negative values : CCW
 Query Status Q   1 to 8 integerSee command description for details
 LimpL      
 Halt & HoldH      
Motion Setup
 DescriptionActionQueryConfigRCSerialDefaultUnitNotes
 Enable Motion ProfileEMQEMCEM 1 EM1: trapezoidal motion profile / EM0: no motion profile
 Filter Position CountFPCQFPCCFPC5 Affects motion only when motion profile is disabled (EM0)
 Origin OffsetOQOCO01/10° 
 Angular RangeARQARCAR18001/10° 
 Angular StiffnessASQASCAS0-4 to +4 integerSuggested values are between 0 to +4
 Angular Holding StiffnessAHQAHCAH4-10 to +10 integer 
 Angular AccelerationAAQAACAA 100°/s2Increments of 10°/s2. Only when motion profile is enabled (EM1).
 Angular DecelerationADQADCAD 100°/s2Increments of 10°/s2. Only when motion profile is enabled (EM1).
 Gyre DirectionGQGCG1 Gyre / rotation direction: 1= CW (clockwise) -1 = CCW (counter-clockwise)
 First Position (Deg) QFDCFDNo value1/10°Reset required after change.
 Maximum Motor DutyMMDQMMD  1023255 to 1023 integer 
 Maximum Speed in DegreesSDQSDCSDMax0.1°/sSD overwrites SR / CSD overwrites CSR and vice-versa
 Maximum Speed in RPMSRQSRCSRMaxRPMSD overwrites SR / CSD overwrites CSR and vice-versa
Modifiers
 DescriptionModifierQueryConfigRCSerialDefaultUnitNotes
 SpeedSQS   uS/s For P action command
 Speed in DegreesSD    0.1°/sFor D and MD action commands
 Timed moveT    msModifier only for P, D and MD. Time can change based on load
 Current HoldCH    mAModifier for D, MD, WD and WR
 Current LimpCL    mAModifier for D, MD, WD and WR
Telemetry
 DescriptionActionQueryConfigRCSerialDefaultUnitNotes
 Query Voltage QV   mV 
 Query Temperature QT   1/10°C 
 Query Current QC   mA 
 Query Model String QMS    Returns the model of servo (ex: LSS-ST1, LSS-HS1, LSS-HT1)
 Query Firmware Version QF     
 Query Serial Number QN    Returns the unique serial number for the servo
RGB LED
 DescriptionActionQueryConfigRCSerialDefaultUnitNotes
 LED ColorLEDQLEDCLED 0 to 7 integer0=Off; 1=Red; 2=Green; 3=Blue; 4=Yellow; 5=Cyan; 6=Magenta; 7=White
 Configure LED Blinking  CLB 0 to 63 integerReset required after change. See command for details.
Tags:
Created by Eric Nantel on 2023/06/21 10:43
Copyright RobotShop 2018