MCPcopy Create free account
hub / github.com/FastLED/FastLED / set_strip_sizes_enabled

Method set_strip_sizes_enabled

ci/autoresearch_agent.py:299–311  ·  view source on GitHub ↗

Enable/disable testing of small and large strip sizes. Args: small: Enable small strip testing (default: True) large: Enable large strip testing (default: False) Returns: Response dict with testSmallStrips, testLargeStrips, testCases

(
        self, small: bool = True, large: bool = False
    )

Source from the content-addressed store, hash-verified

297 return self.send_rpc("setLaneRange", [min_lanes, max_lanes])
298
299 def set_strip_sizes_enabled(
300 self, small: bool = True, large: bool = False
301 ) -> dict[str, Any]:
302 """Enable/disable testing of small and large strip sizes.
303
304 Args:
305 small: Enable small strip testing (default: True)
306 large: Enable large strip testing (default: False)
307
308 Returns:
309 Response dict with testSmallStrips, testLargeStrips, testCases
310 """
311 return self.send_rpc("setStripSizes", [{"small": small, "large": large}])
312
313 def run_test(self) -> TestResult:
314 """Run configured test and return results.

Callers 1

run_autoresearch_loopFunction · 0.95

Calls 1

send_rpcMethod · 0.95

Tested by

no test coverage detected