LSS-P - Communication Protocol
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:
- Start with a number sign # (Unicode Character: U+0023)
- Servo ID number as an integer (assigning an ID described below)
- Action command (one or more letters, no whitespace, capital or lowercase from the list below)
- Action value in the correct units with no decimal
- 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
- Start with a number sign # (Unicode Character: U+0023)
- Servo ID number as an integer
- Action command (one to three letters, no spaces, capital or lowercase from a subset of action commands below)
- Action value in the correct units with no decimal
- Modifier command (one or two letters from the list of modifiers below)
- Modifier value in the correct units with no decimal
- End with a carriage return \r or <cr> Unicode Character (U+000D)
- Start with a number sign # (Unicode Character: U+0023)
- Servo ID number as an integer
- Query command (one to four letters, no spaces, capital or lower case)
- End with a carriage return \r or <cr> Unicode Character (U+000D)
- Start with an asterisk * (Unicode Character: U+0023)
- Servo ID number as an integer
- Query command (one to four letters, no spaces, capital letters)
- The reported value in the units described, no decimals.
- End with a carriage return \r or <cr> Unicode Character (U+000D)
- Start with a number sign # (Unicode Character: U+0023)
- Servo ID number as an integer
- Configuration command (two to four letters, no spaces, capital or lower case)
- Configuration value in the correct units with no decimal
- End with a carriage return \r or <cr> Unicode Character (U+000D)

Command List
Latest firmware version currently : v0.0.780
Communication Setup | |||||||||
Description | Action | Query | Config | RC | Serial | Default | Unit | Notes | |
Reset | RESET | ✓ | Soft reset. See command for details. | ||||||
Default Configuration | DEFAULT | ✓ | Revert to firmware default values. See command for details | ||||||
Firmware Update Mode | UPDATE | ✓ | Update firmware. See command for details. | ||||||
Confirm Changes | CONFIRM | ✓ | |||||||
Change to RC | CRC | ✓ | Change to RC mode 1 (position) or 2 (wheel). | ||||||
ID # | QID | CID | ✓ | 0 | Reset required after change. ID 254 is a "broadcast" which all servos respond to. | ||||
Baudrate | QB | CB | ✓ | 115200 | Reset required after change. |
Motion | |||||||||
Description | Action | Query | Config | RC | Serial | Default | Unit | Notes | |
Position in Degrees | D | QD/QDT | ✓ | 1/10° | |||||
Move in Degrees (relative) | MD | ✓ | 1/10° | ||||||
Wheel mode in Degrees | WD | QWD/QVT | ✓ | °/s | A.K.A. "Speed mode" or "Continuous rotation" | ||||
Wheel mode in RPM | WR | QWR | ✓ | RPM | A.K.A. "Speed mode" or "Continuous rotation" | ||||
Position in PWM | P | QP | ✓ | us | Inherited from SSC-32 serial protocol | ||||
Move in PWM (relative) | M | ✓ | us | ||||||
Raw Duty-cycle Move | RDM | QMD | ✓ | -1023 to 1023 integer | Positive values : CW / Negative values : CCW | ||||
Query Status | Q | ✓ | 1 to 8 integer | See command description for details | |||||
Limp | L | ✓ | |||||||
Halt & Hold | H | ✓ |
Motion Setup | |||||||||
Description | Action | Query | Config | RC | Serial | Default | Unit | Notes | |
Enable Motion Profile | EM | QEM | CEM | ✓ | 1 | EM1: trapezoidal motion profile / EM0: no motion profile | |||
Filter Position Count | FPC | QFPC | CFPC | ✓ | ✓ | 5 | Affects motion only when motion profile is disabled (EM0) | ||
Origin Offset | O | QO | CO | ✓ | ✓ | 0 | 1/10° | ||
Angular Range | AR | QAR | CAR | ✓ | ✓ | 1800 | 1/10° | ||
Angular Stiffness | AS | QAS | CAS | ✓ | ✓ | 0 | -4 to +4 integer | Suggested values are between 0 to +4 | |
Angular Holding Stiffness | AH | QAH | CAH | ✓ | ✓ | 4 | -10 to +10 integer | ||
Angular Acceleration | AA | QAA | CAA | ✓ | 100 | °/s2 | Increments of 10°/s2. Only when motion profile is enabled (EM1). | ||
Angular Deceleration | AD | QAD | CAD | ✓ | 100 | °/s2 | Increments of 10°/s2. Only when motion profile is enabled (EM1). | ||
Gyre Direction | G | QG | CG | ✓ | ✓ | 1 | Gyre / rotation direction: 1= CW (clockwise) -1 = CCW (counter-clockwise) | ||
First Position (Deg) | QFD | CFD | ✓ | ✓ | No value | 1/10° | Reset required after change. | ||
Maximum Motor Duty | MMD | QMMD | ✓ | 1023 | 255 to 1023 integer | ||||
Maximum Speed in Degrees | SD | QSD | CSD | ✓ | ✓ | Max | 0.1°/s | SD overwrites SR / CSD overwrites CSR and vice-versa | |
Maximum Speed in RPM | SR | QSR | CSR | ✓ | ✓ | Max | RPM | SD overwrites SR / CSD overwrites CSR and vice-versa |
Modifiers | |||||||||
Description | Modifier | Query | Config | RC | Serial | Default | Unit | Notes | |
Speed | S | QS | ✓ | uS/s | For P action command | ||||
Speed in Degrees | SD | ✓ | 0.1°/s | For D and MD action commands | |||||
Timed move | T | ✓ | ms | Modifier only for P, D and MD. Time can change based on load | |||||
Current Hold | CH | ✓ | mA | Modifier for D, MD, WD and WR | |||||
Current Limp | CL | ✓ | mA | Modifier for D, MD, WD and WR |
Telemetry | |||||||||
Description | Action | Query | Config | RC | Serial | Default | Unit | Notes | |
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 | |||||||||
Description | Action | Query | Config | RC | Serial | Default | Unit | Notes | |
LED Color | LED | QLED | CLED | ✓ | ✓ | 0 to 7 integer | 0=Off; 1=Red; 2=Green; 3=Blue; 4=Yellow; 5=Cyan; 6=Magenta; 7=White | ||
Configure LED Blinking | CLB | ✓ | ✓ | 0 to 63 integer | Reset required after change. See command for details. |