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

Method set_lane_sizes

ci/autoresearch_agent.py:220–229  ·  view source on GitHub ↗

Set per-lane LED counts directly. Args: sizes: List of LED counts per lane, e.g., [300, 200, 100, 50] Returns: Response dict with laneSizes, laneCount, totalLeds

(self, sizes: list[int])

Source from the content-addressed store, hash-verified

218 return self.send_rpc("configure", [config_dict])
219
220 def set_lane_sizes(self, sizes: list[int]) -> dict[str, Any]:
221 """Set per-lane LED counts directly.
222
223 Args:
224 sizes: List of LED counts per lane, e.g., [300, 200, 100, 50]
225
226 Returns:
227 Response dict with laneSizes, laneCount, totalLeds
228 """
229 return self.send_rpc("setLaneSizes", [sizes])
230
231 def set_led_count(self, count: int) -> dict[str, Any]:
232 """Set uniform LED count for all lanes.

Callers

nothing calls this directly

Calls 1

send_rpcMethod · 0.95

Tested by

no test coverage detected