diff --git a/data_embed/bootstrap.css.gz b/data_embed/bootstrap.css.gz index 9ed1a08..039b791 100644 Binary files a/data_embed/bootstrap.css.gz and b/data_embed/bootstrap.css.gz differ diff --git a/data_embed/bootstrap.js.gz b/data_embed/bootstrap.js.gz index 30df0fc..220ee44 100644 Binary files a/data_embed/bootstrap.js.gz and b/data_embed/bootstrap.js.gz differ diff --git a/data_embed/favicon.png.gz b/data_embed/favicon.png.gz index de4ba93..4f155c0 100644 Binary files a/data_embed/favicon.png.gz and b/data_embed/favicon.png.gz differ diff --git a/data_embed/index.html b/data_embed/index.html index 5cdb31d..95b43bd 100644 --- a/data_embed/index.html +++ b/data_embed/index.html @@ -86,6 +86,32 @@
+
+
+
+ + + + Beacons +
+ Add your personal configuration for each Callsign of Tracker Station. +
+
+
+
+
+
diff --git a/data_embed/index.html.gz b/data_embed/index.html.gz index 52fc4b5..f4e52e5 100644 Binary files a/data_embed/index.html.gz and b/data_embed/index.html.gz differ diff --git a/data_embed/script.js b/data_embed/script.js index ff70d5d..0370245 100644 --- a/data_embed/script.js +++ b/data_embed/script.js @@ -54,6 +54,68 @@ function loadSettings(settings) { currentSettings = settings; // BEACONS + const beaconContainer = document.getElementById("beacon-settings"); + beaconContainer.innerHTML = ""; // Clear previous content + + settings.beacons.forEach((beacons, index) => { + const beaconElement = document.createElement("div"); + beaconElement.classList.add("row", "beacons", "border-bottom", "py-2"); + + beaconElement.innerHTML = ` +
+ ${index + 1}) +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ `; + beaconContainer.appendChild(beaconElement); + }); + // gpsEcoMode + // smartBeaconActive + // smartBeaconSetting // ADITIONAL STATION CONFIG document.getElementById("simplifiedTrackerMode").checked = settings.other.simplifiedTrackerMode; diff --git a/data_embed/script.js.gz b/data_embed/script.js.gz index 956be91..1e7b485 100644 Binary files a/data_embed/script.js.gz and b/data_embed/script.js.gz differ diff --git a/data_embed/style.css.gz b/data_embed/style.css.gz index a9e850e..e17747e 100644 Binary files a/data_embed/style.css.gz and b/data_embed/style.css.gz differ diff --git a/src/LoRa_APRS_Tracker.cpp b/src/LoRa_APRS_Tracker.cpp index ba3558d..584bacd 100644 --- a/src/LoRa_APRS_Tracker.cpp +++ b/src/LoRa_APRS_Tracker.cpp @@ -49,7 +49,7 @@ TinyGPSPlus gps; OneButton userButton = OneButton(BUTTON_PIN, true, true); #endif -String versionDate = "2024.09.24"; +String versionDate = "2024.09.30"; uint8_t myBeaconsIndex = 0; int myBeaconsSize = Config.beacons.size();