Refactor hotspot scheduler settings for improved clarity and organization

This commit is contained in:
altsysrq 2026-01-06 18:15:48 -06:00
parent f1ead2101a
commit 81d4f76679

View File

@ -91,9 +91,9 @@ class CrossPointSettings {
// Screen margin setting (in pixels, default 0) // Screen margin setting (in pixels, default 0)
uint8_t screenMargin = 0; uint8_t screenMargin = 0;
// Network credentials for FTP and HTTP se // 0 = disabled, 1 = enabled // Network credentials for FTP and HTTP servers
uint8_t hotspotSchedulerHour = 12; // Hour (0-23) std::string ftpUsername = "crosspoint";
uint8_t hotspotSchedulerMinute = 0; std::string ftpPassword = "reader";
std::string httpUsername = "crosspoint"; std::string httpUsername = "crosspoint";
std::string httpPassword = "reader"; std::string httpPassword = "reader";