Removed arduino's delay() call

This commit is contained in:
2021-08-09 16:14:07 +02:00
parent 35d66caf82
commit 151565bee4

View File

@ -126,7 +126,7 @@ void CFastLED::delay(unsigned long ms) {
#ifndef FASTLED_ACCURATE_CLOCK
// make sure to allow at least one ms to pass to ensure the clock moves
// forward
::delay(1);
vTaskDelay(1 / portTICK_PERIOD_MS);
#endif
show();
yield();