| 367 | } |
| 368 | |
| 369 | void CFastLED::clearData() { |
| 370 | CLEDController *pCur = CLEDController::head(); |
| 371 | while(pCur) { |
| 372 | pCur->clearLedDataInternal(); |
| 373 | pCur = pCur->next(); |
| 374 | } |
| 375 | } |
| 376 | |
| 377 | void CFastLED::delay(unsigned long ms) { |
| 378 | unsigned long start = fl::millis(); |
nothing calls this directly
no test coverage detected