forked from btclock/btclock_v3
Fix screen rotation
This commit is contained in:
parent
6dfc15832b
commit
a11e275ce1
1 changed files with 2 additions and 2 deletions
|
@ -216,12 +216,12 @@ void taskScreenRotate(void *pvParameters)
|
|||
{
|
||||
ulTaskNotifyTake(pdTRUE, portMAX_DELAY);
|
||||
|
||||
int nextScreen = (currentScreen + 1) % 5;
|
||||
int nextScreen = (currentScreen + 1) % SCREEN_COUNT;
|
||||
String key = "screen" + String(nextScreen) + "Visible";
|
||||
|
||||
while (!preferences.getBool(key.c_str(), true))
|
||||
{
|
||||
nextScreen = (nextScreen + 1) % 5;
|
||||
nextScreen = (nextScreen + 1) % SCREEN_COUNT;
|
||||
key = "screen" + String(nextScreen) + "Visible";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue