Set the long strip size (default: 3000 LEDs). Args: size: LED count for long strips Returns: Response dict with longStripSize, testCases
(self, size: int)
| 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). |
| 266 | |
| 267 | Args: |
| 268 | size: LED count for long strips |
| 269 | |
| 270 | Returns: |
| 271 | Response dict with longStripSize, testCases |
| 272 | """ |
| 273 | return self.send_rpc("setLongStripSize", [size]) |
| 274 | |
| 275 | def set_strip_size_values(self, short: int, long: int) -> dict[str, Any]: |
| 276 | """Set both short and long strip sizes in one call. |