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

Method set_long_strip_size

ci/autoresearch_agent.py:264–273  ·  view source on GitHub ↗

Set the long strip size (default: 3000 LEDs). Args: size: LED count for long strips Returns: Response dict with longStripSize, testCases

(self, size: int)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 1

send_rpcMethod · 0.95

Tested by

no test coverage detected