startup delay added

This commit is contained in:
richonguzman
2025-10-12 14:21:51 -03:00
parent d334164b6f
commit 152217e71c
9 changed files with 41 additions and 9 deletions
+18
View File
@@ -344,6 +344,24 @@
</button>
</div>
</div>
<div class="col-4">
<label
for="startupDelay"
class="form-label"
>Startup Delay in minutes <small>(To Allow Router/Modem to start WiFiAP before connection)</small></label
>
<input
type="number"
name="startupDelay"
id="startupDelay"
placeholder="0"
class="form-control"
value="0"
step="1"
min="0"
max="5"
/>
</div>
</div>
</div>
<hr>
+1
View File
@@ -95,6 +95,7 @@ function loadSettings(settings) {
networksContainer.appendChild(networkElement);
networkCount++;
});
document.getElementById("startupDelay").value = settings.startupDelay;
// APRS-IS
document.getElementById("aprs_is.active").checked = settings.aprs_is.active;