init settings

This commit is contained in:
proddy
2026-01-03 14:13:54 +01:00
parent 41bf293db3
commit 425b44e334
4 changed files with 35 additions and 34 deletions

View File

@@ -68,13 +68,13 @@ class NetworkSettings {
String bssid;
String password;
String hostname;
bool staticIPConfig;
bool bandwidth20;
uint8_t tx_power;
bool nosleep;
bool enableMDNS;
bool enableCORS;
String CORSOrigin;
bool staticIPConfig = false;
bool bandwidth20 = false;
uint8_t tx_power = 0;
bool nosleep = true;
bool enableMDNS = true;
bool enableCORS = false;
String CORSOrigin = "*";
// optional configuration for static IP address
IPAddress localIP;