Skip to content

Commit ccb2d95

Browse files
committed
chore(Config): Re-Enable news by default and formatting
1 parent 19d8b63 commit ccb2d95

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

config/config.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ namespace Config
3939
char timeformat[9] = "hh:mm:ss";
4040
char miniClockFormat[6] = "hh:mm";
4141

42-
char pageOrder[4][32] = { "clock", "weather", "0", "spotify" }; //Set an element to "0" to skip that page
43-
uint32_t showuntil[4] = { 5000, 5000, 0, 10000 }; // How long each page should be shown in ms (Special Case: Set to 0 if page should progress on event, news page would progress when headline was fully displayed)
44-
bool alwaysShowTime = true; // Always show the time in the upper right corner
45-
uint16_t pageElemSwitch = 2500; // After how much ms a page should switch between elements (for example date & weekday on clock page, temp & sunrise on weather page). Set to 0 to disable
46-
}
42+
char pageOrder[4][32] = { "clock", "weather", "news", "spotify" }; // Set an element to "0" to skip that page
43+
uint32_t showuntil[4] = { 5000, 5000, 0, 10000 }; // How long each page should be shown in ms (Special Case: Set to 0 if page should progress on event, news page would progress when headline was fully displayed)
44+
bool alwaysShowTime = true; // Always show the time in the upper right corner
45+
uint16_t pageElemSwitch = 2500; // After how much ms a page should switch between elements (for example date & weekday on clock page, temp & sunrise on weather page). Set to 0 to disable
46+
}

0 commit comments

Comments
 (0)