#pragma once #include struct AppConfig { // periods (seconds) uint32_t telemetryPeriodSec = 30; // A uint32_t commandPollSec = 30; // B uint32_t sleepSec = 300; // C // device state bool carPowerOn = true; // simulate for now bool atHomeRequested = false; // server may request WiFi connect // networking String apn = "hologram"; String baseUrl = "http://laravel-server.lab.audasmedia.com.au"; String telemetryPath = "/api/gps"; // identity String imei; // set at runtime };