Changes for page LSS-PRO Communication Protocol
Last modified by Eric Nantel on 2024/09/06 14:52
Change comment: There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -48,7 +48,7 @@ 48 48 49 49 <h2>Queries</h2> 50 50 <div class="cmdcnt"><div class="cmdpad"></div><div class="cmdtxt"> 51 -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:<div class="wikimodel-emptyline"></div>51 +Query commands request information from the servo. Query commands are also similar to action and configuration commands and must use the following format:<div class="wikimodel-emptyline"></div> 52 52 53 53 1. Start with a number sign **#** (Unicode Character: U+0023) 54 54 1. Servo ID number as an integer ... ... @@ -72,10 +72,12 @@ 72 72 This indicates that servo #5 is currently at 130.00 degrees (13000 tenths of degrees). 73 73 <div class="wikimodel-emptyline"></div></div></div> 74 74 75 +<h2>Configurations</h2> 76 + 75 75 <div class="cmdcnt"><div class="cmdpad"></div><div class="cmdtxt"> 76 76 Configuration commands and corresponding values affect a servo's defaults which are written to and read from the servo's EEPROM.<div class="wikimodel-emptyline"></div> 77 77 78 -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 RCmode canbefound on the [[LSS - RC PWM page>>doc:lynxmotion-smart-servo.lss-radio-control-pwm.WebHome]]. 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.<div class="wikimodel-emptyline"></div>80 +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. 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.<div class="wikimodel-emptyline"></div> 79 79 80 80 The format to send a configuration command is identical to that of an action command:<div class="wikimodel-emptyline"></div> 81 81 ... ... @@ -85,43 +85,43 @@ 85 85 1. Configuration value in the correct units with no decimal 86 86 1. End with a carriage return **\r** or **<cr>** Unicode Character (U+000D)<div class="wikimodel-emptyline"></div> 87 87 88 -Ex: #5CO-50<cr><div class="wikimodel-emptyline"></div> 90 +Ex: #5CO-500<cr><div class="wikimodel-emptyline"></div> 89 89 90 -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).<div class="wikimodel-emptyline"></div>92 +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.00 degrees (500 hundredths of degrees). Once the servo is powered off and on, zeroing the servo will cause it to move to -5.00 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).<div class="wikimodel-emptyline"></div> 91 91 92 92 **Session vs Configuration Query**<div class="wikimodel-emptyline"></div> 93 93 94 94 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:<div class="wikimodel-emptyline"></div> 95 95 96 -Ex: #5CSR 20<cr> immediately sets the maximum speed for servo #5 to20rpm (explained below) and changes the value in memory.<div class="wikimodel-emptyline"></div>98 +Ex: #5CSR10<cr> immediately sets the maximum speed for servo #5 to 10rpm (explained below) and changes the value in memory.<div class="wikimodel-emptyline"></div> 97 97 98 98 After RESET, a command of #5SR4<cr> sets the session's speed to 4rpm, but does not change the configuration value in memory. Therefore:<div class="wikimodel-emptyline"></div> 99 99 100 100 #5QSR<cr> or #5QSR0<cr> would return *5QSR4<cr> which represents the value for that session, whereas<div class="wikimodel-emptyline"></div> 101 101 102 -#5QSR1<cr> would return *5QSR 20<cr> which represents the value in EEPROM104 +#5QSR1<cr> would return *5QSR10<cr> which represents the value in EEPROM 103 103 <div class="wikimodel-emptyline"></div></div></div> 104 104 105 105 <div class="cmdcnt"><div class="cmdpad"></div><div class="cmdtxt"> 106 -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).<div class="wikimodel-emptyline"></div> 108 +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.00 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 153350 (or 1533.50 degrees), taking the modulus would give 93.5 degrees (36000 * 4 + 9350 = 153350) as the absolute position (assuming no origin offset).<div class="wikimodel-emptyline"></div> 107 107 108 108 [[image:LSS-servo-positions.jpg]]<div class="wikimodel-emptyline"></div> 109 109 110 110 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:<div class="wikimodel-emptyline"></div> 111 111 112 -#1D-300<cr> This causes the servo to move to -30.0 degrees (green arrow)<div class="wikimodel-emptyline"></div> 114 +#1D-3000<cr> This causes the servo to move to -30.00 degrees (green arrow)<div class="wikimodel-emptyline"></div> 113 113 114 -#1D2100<cr> This second position command is sent to the servo, which moves it to 210.0 degrees (orange arrow)<div class="wikimodel-emptyline"></div> 116 +#1D21000<cr> This second position command is sent to the servo, which moves it to 210.00 degrees (orange arrow)<div class="wikimodel-emptyline"></div> 115 115 116 -#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.<div class="wikimodel-emptyline"></div> 118 +#1D-42000<cr> This next command rotates the servo counterclockwise to a position of -420.00 degrees (red arrow), which means one full rotation of 360 degrees plus 60.00 degrees (420.00 - 360.00), with a virtual position of -420.0 degrees.<div class="wikimodel-emptyline"></div> 117 117 118 -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.<div class="wikimodel-emptyline"></div> 120 +Although the final physical position would be the same as if the servo were commanded to move to -60.00 degrees, the servo is in fact at -420.00 degrees.<div class="wikimodel-emptyline"></div> 119 119 120 -#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.<div class="wikimodel-emptyline"></div> 122 +#1D48000<cr> This new command is sent which would then cause the servo to rotate from -420.00 degrees to 480.00 degrees (blue arrow), which would be a total of 900 degrees of clockwise rotation, or 2.5 complete rotations.<div class="wikimodel-emptyline"></div> 121 121 122 -#1D3300<cr> would cause the servo to rotate from 480.0 degrees to 330.0 degrees (yellow arrow).<div class="wikimodel-emptyline"></div> 124 +#1D33000<cr> would cause the servo to rotate from 480.0 degrees to 330.00 degrees (yellow arrow).<div class="wikimodel-emptyline"></div> 123 123 124 -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°]. 126 +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.00 degrees before power is cycled, upon power up the servo's position will be read as +120.00 degrees from zero (assuming center position has not been modified). The virtual position range at power-up is [-180.00°, 180.00°]. 125 125 <div class="wikimodel-emptyline"></div></div></div> 126 126 127 127 {{/html}} ... ... @@ -245,84 +245,23 @@ 245 245 </div></div> 246 246 {{/html}} 247 247 248 -====== __ Confirm__ ======250 +====== __Enable CAN Terminal__ ====== 249 249 250 -{{html wiki="true" clean="false"}} 251 -<div class="cmdcnt"><div class="cmdpad"></div><div class="cmdtxt"> 252 -Ex: #5CONFIRM<cr><div class="wikimodel-emptyline"></div> 253 - 254 -This command is used to confirm changes after a Default or Update command.<div class="wikimodel-emptyline"></div> 255 - 256 -**Note:** After the CONFIRM command is sent, the servo will automatically perform a RESET.<div class="wikimodel-emptyline"></div> 257 -</div></div> 258 -{{/html}} 259 - 260 -====== ====== 261 - 262 -====== __Identification Number (**ID**)__ ====== 263 - 264 -{{html wiki="true" clean="false"}} 265 -<div class="cmdcnt"><div class="cmdpad"></div><div class="cmdtxt"> 266 -A servo's identification number cannot be set "on the fly" and must be configured via the CID command described below. The factory default ID number for all servos is 0. Since smart servos are intended to be daisy chained, in order to respond differently from one another, the user must set different identification numbers. Servos with the same ID and baud rate will all receive and react to the same commands.<div class="wikimodel-emptyline"></div> 267 - 268 -Query Identification (**QID**)<div class="wikimodel-emptyline"></div> 269 - 270 -EX: #254QID<cr> might return *QID5<cr><div class="wikimodel-emptyline"></div> 271 - 272 -When using the broadcast query ID command, it is best to only have one servo connected and thus receive only one reply. This is useful when you are not sure of the servo's ID, but don't want to change it. Using the broadcast command (ID 254) with only one servo will have that servo reply with its ID number. Alternatively, pushing the button upon startup and temporarily setting the servo ID to 255 will still result in the servo responding with its "real" ID.<div class="wikimodel-emptyline"></div> 273 - 274 -Configure ID (**CID**)<div class="wikimodel-emptyline"></div> 275 - 276 -Ex: #4CID5<cr><div class="wikimodel-emptyline"></div> 277 - 278 -Setting a servo's ID in EEPROM is done via the CID command. All servos connected to the same serial bus that have will be assigned that ID. In most situations each servo must be set a unique ID, which means each servo must be connected individually to the serial bus and receive a unique CID number. It is best to do this before the servos are added to an assembly. Numbered stickers are provided to distinguish each servo after their ID is set, though you are free to use whatever alternative method you like. The servo must be RESET or power cycled in order for the new ID to take effect.<div class="wikimodel-emptyline"></div> 279 -</div></div> 280 -{{/html}} 281 - 282 -====== __Baud Rate__ ====== 283 - 284 284 {{html clean="false" wiki="true"}} 285 -<div class="cmdcnt"><div class="cmdpad"></div><div class="cmdtxt"> 286 -A servo's baud rate cannot be set "on the fly" and must be configured via the CB command described below. The factory default baud rate for all servos is 115200. Since smart servos are intended to be daisy chained, in order to respond to the same serial command, all servos in a project should be set to the same baud rate. Setting different baud rates will have the servos respond differently and may create issues. Available baud rates are: 9600 bps, 19200 bps, 38400 bps, 57600 bps, 115.2 kbps, 230.4 kbps, 250.0 kbps, 460.8 kbps, 500.0 kbps, 750.0 kbps, 921.6 kbps. Servos are shipped with a baud rate set to 115200.<div class="wikimodel-emptyline"></div> 253 +<div class="cmdcnt"> 254 +<div class="cmdpad"></div> 255 +<div class="cmdtxt">Ex: #5CET1<cr><div class="wikimodel-emptyline"></div> 287 287 288 - QueryBaud Rate(**QB**)<divclass="wikimodel-emptyline"></div>257 +This sets servo with ID #5 to be the final servo in the bus. 289 289 290 - Ex:#5QB<cr>mightreturn*5QB115200<cr><div class="wikimodel-emptyline"></div>259 +<div class="cmdtxt">Ex: #5QET<cr><div class="wikimodel-emptyline"></div> 291 291 292 - Sincethecommandtoquerythe baudrate mustbedoneatthe servo'sexisting baudrate,itcan simply be usedto confirm theCB configuration command wascorrectlyreceivedbeforethe servois power cycled and the newbaud rate takeseffect.<div class="wikimodel-emptyline"></div>261 +The reply to this query should be *5QET1 to indicate it is the last in the servo bus. 293 293 294 -Configure Baud Rate (**CB**)<div class="wikimodel-emptyline"></div> 295 - 296 -**Important Note:** the servo's current session retains the given baud rate and the new baud rate will only take effect when the servo is power cycled / RESET.<div class="wikimodel-emptyline"></div> 297 - 298 -Ex: #5CB9600<cr><div class="wikimodel-emptyline"></div> 299 - 300 -Sending this command will change the baud rate associated with servo ID 5 to 9600 bits per second.<div class="wikimodel-emptyline"></div> 263 +<div class="wikimodel-emptyline"></div> 301 301 </div></div> 302 302 {{/html}} 303 303 304 -====== __Automatic Baud Rate__ ====== 305 - 306 -{{html clean="false" wiki="true"}} 307 -<div class="cmdcnt"><div class="cmdpad"></div><div class="cmdtxt"> 308 -This option allows the LSS to listen to it's serial input and select the right baudrate automatically.<div class="wikimodel-emptyline"></div> 309 - 310 -Query Automatic Baud Rate (**QABR**)<div class="wikimodel-emptyline"></div> 311 - 312 -Ex: #5QABR<cr> might return *5ABR0<cr><div class="wikimodel-emptyline"></div> 313 - 314 -Enable Baud Rate (**ABR**)<div class="wikimodel-emptyline"></div> 315 - 316 -Ex: #5QABR1<cr><div class="wikimodel-emptyline"></div> 317 -Enable baudrate detection on first byte received after power-up.<div class="wikimodel-emptyline"></div> 318 - 319 -Ex: #5QABR2,30<cr><div class="wikimodel-emptyline"></div> 320 -Enable baudrate detection on first byte received after power-up. If no data for 30 seconds enable detection again on next byte.<div class="wikimodel-emptyline"></div> 321 - 322 -Warning: ABR doesnt work well with LSS Config at the moment.<div class="wikimodel-emptyline"></div> 323 -</div></div> 324 -{{/html}} 325 - 326 326 == Motion == 327 327 328 328 ====== __Position in Degrees (**D**)__ ======