personalNote implementation
This commit is contained in:
parent
ab9443140b
commit
3b9d49c5f9
|
|
@ -50,7 +50,9 @@ ____________________________________________________
|
||||||
____________________________________________________
|
____________________________________________________
|
||||||
## Timeline (Versions):
|
## Timeline (Versions):
|
||||||
|
|
||||||
- 2024.06.21 Tx packets coming from APRS-IS are (now) formatted into 3rd Party (as they should have been since the beginning).
|
- 2024.06.26 Personal Note for specific info on station. Thanks Tilen S54B.
|
||||||
|
- 2024.06.24 Callsign Validation fix. Thanks Helge SA7SKY.
|
||||||
|
- 2024.06.21 Tx packets coming from APRS-IS are (now) formatted into 3rd Party (as they should have been since the beginning). Thanks Lynn KJ4ERJ and Geoffrey F4FXL.
|
||||||
- 2024.06.18 All boards with 433 / 868 / 915 MHz versions.
|
- 2024.06.18 All boards with 433 / 868 / 915 MHz versions.
|
||||||
- 2024.06.10 ESP32C3 + 1W LoRa Module (E22 400M30S) support added.
|
- 2024.06.10 ESP32C3 + 1W LoRa Module (E22 400M30S) support added.
|
||||||
- 2024.06.09 Si7021 module added (with autodetected I2C Address)
|
- 2024.06.09 Si7021 module added (with autodetected I2C Address)
|
||||||
|
|
|
||||||
|
|
@ -249,7 +249,7 @@
|
||||||
name="personalNote"
|
name="personalNote"
|
||||||
id="personalNote"
|
id="personalNote"
|
||||||
class="form-control"
|
class="form-control"
|
||||||
placeholder="A Couple of words."
|
placeholder="iGate/Digirepeater description"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -37,7 +37,7 @@ ________________________________________________________________________________
|
||||||
#include "A7670_utils.h"
|
#include "A7670_utils.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
String versionDate = "2024.06.25";
|
String versionDate = "2024.06.26";
|
||||||
Configuration Config;
|
Configuration Config;
|
||||||
WiFiClient espClient;
|
WiFiClient espClient;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -97,7 +97,9 @@ void Configuration::writeFile() {
|
||||||
data["other"]["backupDigiMode"] = backupDigiMode;
|
data["other"]["backupDigiMode"] = backupDigiMode;
|
||||||
|
|
||||||
data["other"]["lowPowerMode"] = lowPowerMode;
|
data["other"]["lowPowerMode"] = lowPowerMode;
|
||||||
data["other"]["lowVoltageCutOff"] = lowVoltageCutOff;
|
data["other"]["lowVoltageCutOff"] = lowVoltageCutOff;
|
||||||
|
|
||||||
|
data["personalNote"] = personalNote;
|
||||||
|
|
||||||
serializeJson(data, configFile);
|
serializeJson(data, configFile);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue