* Starts the FastLED animation loop (for external control) * @returns {Promise } Promise that resolves when start is complete
()
| 1029 | * @returns {Promise<void>} Promise that resolves when start is complete |
| 1030 | */ |
| 1031 | async function startFastLED() { |
| 1032 | if (!fastLEDController) { |
| 1033 | console.error('FastLED controller not initialized'); |
| 1034 | return; |
| 1035 | } |
| 1036 | await fastLEDController.startWithWorkerSupport(); |
| 1037 | } |
| 1038 | |
| 1039 | /** |
| 1040 | * Stops the FastLED animation loop (for external control) |
nothing calls this directly
no test coverage detected