Set the short strip size (default: 100 LEDs). Args: size: LED count for short strips Returns: Response dict with shortStripSize, testCases
(self, size: int)
| 251 | return self.send_rpc("setPattern", [pattern]) |
| 252 | |
| 253 | def set_short_strip_size(self, size: int) -> dict[str, Any]: |
| 254 | """Set the short strip size (default: 100 LEDs). |
| 255 | |
| 256 | Args: |
| 257 | size: LED count for short strips |
| 258 | |
| 259 | Returns: |
| 260 | Response dict with shortStripSize, testCases |
| 261 | """ |
| 262 | return self.send_rpc("setShortStripSize", [size]) |
| 263 | |
| 264 | def set_long_strip_size(self, size: int) -> dict[str, Any]: |
| 265 | """Set the long strip size (default: 3000 LEDs). |