Set both short and long strip sizes in one call. Args: short: LED count for short strips long: LED count for long strips Returns: Response dict with shortStripSize, longStripSize, testCases
(self, short: int, long: int)
| 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. |
| 277 | |
| 278 | Args: |
| 279 | short: LED count for short strips |
| 280 | long: LED count for long strips |
| 281 | |
| 282 | Returns: |
| 283 | Response dict with shortStripSize, longStripSize, testCases |
| 284 | """ |
| 285 | return self.send_rpc("setStripSizeValues", [short, long]) |
| 286 | |
| 287 | def set_lane_range(self, min_lanes: int, max_lanes: int) -> dict[str, Any]: |
| 288 | """Set the lane count range for test matrix generation. |
no test coverage detected