This commit is contained in:
Alexander 2024-07-16 18:32:25 -04:00
parent 94c4c13cc5
commit 747342e9cc

View File

@ -41,7 +41,7 @@ void TaskLightsAutoCode(void* parameters) {
// If lights are bright, then turn lights OFF and decrease delay interval
else {
digitalWrite(LIGHTS_PIN, LOW);
vTaskDelay(pdMS_TO_TICKS(5000));
vTaskDelay(pdMS_TO_TICKS(1000));
}
}
}