RL: Set Multible LED LERPs (binary): EXP Bus Command Reference¶
Understanding EXP board addressing
This command is used with FAST Expansion and FAST breakout boards via a FAST Serial Protocol (FSP) connection to the EXP Bus. Please read the EXP Overview to understand the operation of these commands and addresses.
This command sets multiple LEDs to linearly interpolate (fade) toward target colors using binary data. This allows for individual control of the speed at which the color changes outside of the global fade rate set with the RF:
command.
This is a binary command, meaning its designed to be used by your game software talking to the FAST EXP Bus, rather than for humans using an interactive terminal emulator.
Command Syntax¶
RL:<count>{<index><r><g><b><fade>...}
<count>¶
One byte, the binary count of how many LEDs will be updated via this command. This is needed since this command is binary, so the EXP processor needs to know the count of how much binary data to look for before it goes back to looking for ASCII characters. Valid ranges are 0-127 (binary 0x00
- 0x7F
) since that's the max LEDs that can be attached to a single breakout board.
<index>¶
This is the LED number for the LED you want to update. Individual LEDs are accessed via 0-127 (binary 0x00
- 0x7F
) since that's the max LEDs that can be attached to a single breakout board.
New in firmware 0.20:
You can also use mapped LED blocks which you configured via the LM:
command. In this case, all the LEDs in that set will be updated to the same color as if they were a single LED.
If LED maps have previously been created on the expansion board targetted, then LED indexes 80
-FF
correspond to the mapped LED sets.
<r><g><b>¶
Each color is a single byte, in the range of 0-255 (binary 0x00
- 0xFF
).
<fade>¶
The interpolation time is a single byte, in the range of 0-255 (binary 0x00
- 0xFF
). This value is in terms of expansion ticks, 32ms each.
Example¶
To update the first LED on a breakout to yellow (ffff00) over 1 second:
The payload of this command would look like this before it was encoded to bytes:
0100FFFF0020
Breaking it down:
01
we are updating 1 LED in this command00
index of LEDFFFF00
yellow target color20
interpolate over 32 ticks = 1024ms- No
<CR>
at the end!
But what would actually be sent over the wire is this:
RL:<raw bytes data that would look weird when printed>
Since this command is binary, there are no commas separating indices and no <CR>
at the end of it. (The "count" value tells the EXP Processor how many more bytes are coming, so the <CR>
is not needed.)
Note this command has a 50ms timeout which cancels it if has not received all of the data within that time.
Return Response¶
None
N or > jump the next page, P or < for previous, search with S or ?