add iGate with APRS and LoRa beacon mode

This commit is contained in:
richonguzman 2024-01-11 23:22:58 -03:00
parent 2312eada2c
commit d587246be8
7 changed files with 46 additions and 14 deletions

View file

@ -35,6 +35,8 @@ void Configuration::readFile(fs::FS &fs, const char *fileName) {
stationMode = data["stationMode"].as<int>();
iGateComment = data["iGateComment"].as<String>();
beaconInterval = data["other"]["beaconInterval"].as<int>();
igateLoRaBeacon = data["other"]["igateLoRaBeacon"].as<bool>();
igateRepeatsLoRaPackets = data["other"]["igateRepeatsLoRaPackets"].as<bool>();
rememberStationTime = data["other"]["rememberStationTime"].as<int>();
sendBatteryVoltage = data["other"]["sendBatteryVoltage"].as<bool>();
externalVoltageMeasurement = data["other"]["externalVoltageMeasurement"].as<bool>();