Fix screen rotation

This commit is contained in:
Djuri Baars 2023-11-13 17:17:28 +01:00
parent 6dfc15832b
commit a11e275ce1

View File

@ -216,12 +216,12 @@ void taskScreenRotate(void *pvParameters)
{ {
ulTaskNotifyTake(pdTRUE, portMAX_DELAY); ulTaskNotifyTake(pdTRUE, portMAX_DELAY);
int nextScreen = (currentScreen + 1) % 5; int nextScreen = (currentScreen + 1) % SCREEN_COUNT;
String key = "screen" + String(nextScreen) + "Visible"; String key = "screen" + String(nextScreen) + "Visible";
while (!preferences.getBool(key.c_str(), true)) while (!preferences.getBool(key.c_str(), true))
{ {
nextScreen = (nextScreen + 1) % 5; nextScreen = (nextScreen + 1) % SCREEN_COUNT;
key = "screen" + String(nextScreen) + "Visible"; key = "screen" + String(nextScreen) + "Visible";
} }