diff --git a/data/igate_conf.json b/data/igate_conf.json
index 634cf8a..dd4aeb2 100644
--- a/data/igate_conf.json
+++ b/data/igate_conf.json
@@ -90,8 +90,6 @@
},
"other": {
"rememberStationTime": 30,
- "lowPowerMode": false,
- "lowVoltageCutOff": 0,
"backupDigiMode": false,
"rebootMode": false,
"rebootModeTime": 6
diff --git a/data_embed/index.html b/data_embed/index.html
index 3190310..9186487 100644
--- a/data_embed/index.html
+++ b/data_embed/index.html
@@ -655,20 +655,25 @@
-
-
-
- Eco Mode This will disable WiFi, Display, Leds and lower CPU Speed for Low Power Digipeater. (Caution: Active means No WebUI Configuration, so ONLY activate this for Remote Digipeater)
-
+
+ Eco Modes
+
+ OFF
+
+ Ultra Eco Mode (Sleep until Packet Rx (WiFiAP/WebUI and Display disabled))
+
+
+ OFF (Normal Mode without WiFiAP)
+
+
@@ -1858,46 +1863,6 @@
>
-
-
-
Low voltage cut off (Deep sleep below specific voltage)
-
-
Volts
-
- MCU will deep sleep when below provided battery voltage to save power. Set to 0 if you don't want this option. Please calibrate your voltage reading first!
-
-
diff --git a/data_embed/script.js b/data_embed/script.js
index cd4294f..3a14e50 100644
--- a/data_embed/script.js
+++ b/data_embed/script.js
@@ -220,9 +220,6 @@ function loadSettings(settings) {
// Experimental
document.getElementById("other.backupDigiMode").checked = settings.other.backupDigiMode;
- document.getElementById("other.lowPowerMode").checked = settings.other.lowPowerMode;
- document.getElementById("other.lowVoltageCutOff").value = settings.other.lowVoltageCutOff || 0
-
// Management over APRS
document.getElementById("remoteManagement.managers").value = settings.remoteManagement.managers;
document.getElementById("remoteManagement.rfOnly").checked = settings.remoteManagement.rfOnly;
diff --git a/include/configuration.h b/include/configuration.h
index 4a8545f..3139619 100644
--- a/include/configuration.h
+++ b/include/configuration.h
@@ -132,8 +132,6 @@ class Configuration {
public:
String callsign;
int rememberStationTime;
- bool lowPowerMode;
- double lowVoltageCutOff;
bool backupDigiMode;
bool rebootMode;
int rebootModeTime;
diff --git a/src/configuration.cpp b/src/configuration.cpp
index 2a16661..77d0c8a 100644
--- a/src/configuration.cpp
+++ b/src/configuration.cpp
@@ -94,9 +94,6 @@ void Configuration::writeFile() {
data["other"]["backupDigiMode"] = backupDigiMode;
- data["other"]["lowPowerMode"] = lowPowerMode;
- data["other"]["lowVoltageCutOff"] = lowVoltageCutOff;
-
data["personalNote"] = personalNote;
data["blacklist"] = blacklist;
@@ -216,9 +213,6 @@ bool Configuration::readFile() {
ntp.gmtCorrection = data["ntp"]["gmtCorrection"] | 0.0;
- lowPowerMode = data["other"]["lowPowerMode"] | false;
- lowVoltageCutOff = data["other"]["lowVoltageCutOff"] | 0;
-
backupDigiMode = data["other"]["backupDigiMode"] | false;
rebootMode = data["other"]["rebootMode"] | false;
@@ -327,9 +321,6 @@ void Configuration::init() {
battery.sendVoltageAsTelemetry = false;
- lowPowerMode = false;
- lowVoltageCutOff = 0;
-
backupDigiMode = false;
rebootMode = false;
diff --git a/src/web_utils.cpp b/src/web_utils.cpp
index 6921ff6..3e434f4 100644
--- a/src/web_utils.cpp
+++ b/src/web_utils.cpp
@@ -202,8 +202,6 @@ namespace WEB_Utils {
Config.rememberStationTime = request->getParam("other.rememberStationTime", true)->value().toInt();
Config.backupDigiMode = request->hasParam("other.backupDigiMode", true);
- Config.lowPowerMode = request->hasParam("other.lowPowerMode", true);
- Config.lowVoltageCutOff = request->getParam("other.lowVoltageCutOff", true)->value().toDouble();
Config.personalNote = request->getParam("personalNote", true)->value();