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

Method set_strip_size_values

ci/autoresearch_agent.py:275–285  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers 1

run_autoresearch_loopFunction · 0.95

Calls 1

send_rpcMethod · 0.95

Tested by

no test coverage detected