2019-11-27 22:28:13 +01:00
|
|
|
<!DOCTYPE html>
|
2020-12-23 21:43:30 +01:00
|
|
|
<html lang="en">
|
2019-11-27 22:28:13 +01:00
|
|
|
<head>
|
|
|
|
<meta name="viewport" content="width=500">
|
2021-12-08 14:38:21 +01:00
|
|
|
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport"/>
|
2020-05-17 21:39:57 +02:00
|
|
|
<meta charset="utf-8">
|
2019-11-27 22:28:13 +01:00
|
|
|
<title>Time Settings</title>
|
|
|
|
<script>
|
2023-01-16 22:12:02 +01:00
|
|
|
var d=document;
|
2023-06-04 18:40:29 +02:00
|
|
|
var loc = false, locip, locproto = "http:";
|
2022-03-07 09:44:35 +01:00
|
|
|
var el=false;
|
2022-01-01 16:36:06 +01:00
|
|
|
var ms=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];
|
2022-07-17 15:58:41 +02:00
|
|
|
function H() { window.open("https://kno.wled.ge/features/settings/#time-settings"); }
|
2023-06-04 18:40:29 +02:00
|
|
|
function B() { window.open(getURL("/settings"),"_self"); }
|
2022-07-17 15:58:41 +02:00
|
|
|
function gId(s) { return d.getElementById(s); }
|
|
|
|
function gN(s) { return d.getElementsByName(s)[0]; }
|
|
|
|
// https://www.educative.io/edpresso/how-to-dynamically-load-a-js-file-in-javascript
|
|
|
|
function loadJS(FILE_URL, async = true) {
|
|
|
|
let scE = d.createElement("script");
|
|
|
|
scE.setAttribute("src", FILE_URL);
|
|
|
|
scE.setAttribute("type", "text/javascript");
|
|
|
|
scE.setAttribute("async", async);
|
|
|
|
d.body.appendChild(scE);
|
|
|
|
// success event
|
|
|
|
scE.addEventListener("load", () => {
|
|
|
|
//console.log("File loaded");
|
|
|
|
BTa();GetV();updLoc();Cs();FC();
|
|
|
|
});
|
|
|
|
// error event
|
|
|
|
scE.addEventListener("error", (ev) => {
|
|
|
|
console.log("Error on loading file", ev);
|
|
|
|
alert("Loading of configuration script failed.\nIncomplete page data!");
|
|
|
|
});
|
2021-03-07 00:04:46 +01:00
|
|
|
}
|
2022-07-17 15:58:41 +02:00
|
|
|
function S() {
|
2023-06-07 21:37:54 +02:00
|
|
|
let l = window.location;
|
|
|
|
if (l.protocol == "file:") {
|
2022-07-17 15:58:41 +02:00
|
|
|
loc = true;
|
|
|
|
locip = localStorage.getItem('locIp');
|
|
|
|
if (!locip) {
|
|
|
|
locip = prompt("File Mode. Please enter WLED IP!");
|
|
|
|
localStorage.setItem('locIp', locip);
|
|
|
|
}
|
2023-06-04 18:40:29 +02:00
|
|
|
} else {
|
|
|
|
// detect reverse proxy
|
2023-06-07 21:37:54 +02:00
|
|
|
let path = l.pathname;
|
2023-06-04 18:40:29 +02:00
|
|
|
let paths = path.slice(1,path.endsWith('/')?-1:undefined).split("/");
|
|
|
|
if (paths.length > 2) {
|
2023-06-07 21:37:54 +02:00
|
|
|
locproto = l.protocol;
|
2023-06-04 18:40:29 +02:00
|
|
|
loc = true;
|
2023-06-08 07:14:03 +02:00
|
|
|
locip = l.hostname + (l.port ? ":" + l.port : "") + "/" + paths[0];
|
2023-06-04 18:40:29 +02:00
|
|
|
}
|
2022-07-17 15:58:41 +02:00
|
|
|
}
|
2023-06-04 18:40:29 +02:00
|
|
|
loadJS(getURL('/settings/s.js?p=5'), false); // If we set async false, file is loaded and executed, then next statement is processed
|
|
|
|
if (loc) d.Sf.action = getURL('/settings/time');
|
|
|
|
}
|
|
|
|
function getURL(path) {
|
|
|
|
return (loc ? locproto + "//" + locip : "") + path;
|
2021-12-31 14:09:48 +01:00
|
|
|
}
|
2021-12-25 18:46:43 +01:00
|
|
|
function expand(o,i)
|
|
|
|
{
|
|
|
|
var t = gId("WD"+i);
|
|
|
|
t.style.display = t.style.display!=="none" ? "none" : "";
|
2022-03-03 10:59:29 +01:00
|
|
|
o.innerHTML = t.style.display==="none" ? "📅" : "✕";
|
2021-12-25 18:46:43 +01:00
|
|
|
}
|
2022-07-17 15:58:41 +02:00
|
|
|
function Cs() { gId("cac").style.display=(gN("OL").checked)?"block":"none"; }
|
2021-12-23 20:37:22 +01:00
|
|
|
function BTa()
|
|
|
|
{
|
2022-01-01 16:36:06 +01:00
|
|
|
var ih="<thead><tr><th>En.</th><th>Hour</th><th>Minute</th><th>Preset</th><th></th></tr></thead>";
|
2021-12-25 18:46:43 +01:00
|
|
|
for (i=0;i<8;i++) {
|
|
|
|
ih+=`<tr><td><input name="W${i}" id="W${i}" type="hidden"><input id="W${i}0" type="checkbox"></td>
|
|
|
|
<td><input name="H${i}" class="xs" type="number" min="0" max="24"></td>
|
|
|
|
<td><input name="N${i}" class="xs" type="number" min="0" max="59"></td>
|
|
|
|
<td><input name="T${i}" class="s" type="number" min="0" max="250"></td>
|
2022-03-25 16:36:05 +01:00
|
|
|
<td><div id="CB${i}" onclick="expand(this,${i})" class="cal">📅</div></td></tr>`;
|
|
|
|
ih+=`<tr><td colspan=5><div id="WD${i}" style="display:none;background-color:#444;"><hr>Run on weekdays`;
|
2022-01-01 16:36:06 +01:00
|
|
|
ih+=`<table><tr><th>M</th><th>T</th><th>W</th><th>T</th><th>F</th><th>S</th><th>S</th></tr><tr>`
|
2021-12-25 18:46:43 +01:00
|
|
|
for (j=1;j<8;j++) ih+=`<td><input id="W${i}${j}" type="checkbox"></td>`;
|
2022-01-01 16:36:06 +01:00
|
|
|
ih+=`</tr></table>from <select name="M${i}">`;
|
2021-12-31 14:09:48 +01:00
|
|
|
for (j=0;j<12;j++) ih+=`<option value="${j+1}">${ms[j]}</option>`;
|
2022-01-01 16:36:06 +01:00
|
|
|
ih+=`</select><input name="D${i}" class="xs" type="number" min="1" max="31"></input> to <select name="P${i}">`;
|
2021-12-31 14:09:48 +01:00
|
|
|
for (j=0;j<12;j++) ih+=`<option value="${j+1}">${ms[j]}</option>`;
|
|
|
|
ih+=`</select><input name="E${i}" class="xs" type="number" min="1" max="31"></input>
|
|
|
|
<hr></div></td></tr>`;
|
2021-12-23 20:37:22 +01:00
|
|
|
}
|
2021-12-25 18:46:43 +01:00
|
|
|
ih+=`<tr><td><input name="W8" id="W8" type="hidden"><input id="W80" type="checkbox"></td>
|
|
|
|
<td>Sunrise<input name="H8" value="255" type="hidden"></td>
|
|
|
|
<td><input name="N8" class="xs" type="number" min="-59" max="59"></td>
|
|
|
|
<td><input name="T8" class="s" type="number" min="0" max="250"></td>
|
2022-03-25 16:36:05 +01:00
|
|
|
<td><div id="CB8" onclick="expand(this,8)" class="cal">📅</div></td></tr><tr><td colspan=5>`;
|
|
|
|
ih+=`<div id="WD8" style="display:none;background-color:#444;"><hr><table><tr><th>M</th><th>T</th><th>W</th><th>T</th><th>F</th><th>S</th><th>S</th></tr><tr>`;
|
2021-12-25 18:46:43 +01:00
|
|
|
for (j=1;j<8;j++) ih+=`<td><input id="W8${j}" type="checkbox"></td>`;
|
|
|
|
ih+="</tr></table><hr></div></td></tr>";
|
|
|
|
ih+=`<tr><td><input name="W9" id="W9" type="hidden"><input id="W90" type="checkbox"></td>
|
2021-12-31 14:09:48 +01:00
|
|
|
<td>Sunset<input name="H9" value="255" type="hidden"></td>
|
2021-12-25 18:46:43 +01:00
|
|
|
<td><input name="N9" class="xs" type="number" min="-59" max="59"></td>
|
|
|
|
<td><input name="T9" class="s" type="number" min="0" max="250"></td>
|
2022-03-25 16:36:05 +01:00
|
|
|
<td><div id="CB9" onclick="expand(this,9)" class="cal">📅</div></td></tr><tr><td colspan=5>`;
|
|
|
|
ih+=`<div id="WD9" style="display:none;background-color:#444;"><hr><table><tr><th>M</th><th>T</th><th>W</th><th>T</th><th>F</th><th>S</th><th>S</th></tr><tr>`;
|
2021-12-25 18:46:43 +01:00
|
|
|
for (j=1;j<8;j++) ih+=`<td><input id="W9${j}" type="checkbox"></td>`;
|
|
|
|
ih+="</tr></table><hr></div></td></tr>";
|
2021-12-23 20:37:22 +01:00
|
|
|
gId("TMT").innerHTML=ih;
|
|
|
|
}
|
|
|
|
function FC()
|
|
|
|
{
|
2021-12-31 14:09:48 +01:00
|
|
|
for(i=0;i<10;i++)
|
2021-12-23 20:37:22 +01:00
|
|
|
{
|
2021-12-31 14:09:48 +01:00
|
|
|
let wd = gId("W"+i).value;
|
|
|
|
for(j=0;j<8;j++) {
|
|
|
|
gId("W"+i+j).checked=wd>>j&1;
|
|
|
|
}
|
2022-03-03 10:59:29 +01:00
|
|
|
if ((wd&254) != 254 || (i<8 && (gN("M"+i).value != 1 || gN("D"+i).value != 1 || gN("P"+i).value != 12 || gN("E"+i).value != 31))) {
|
2021-12-31 14:09:48 +01:00
|
|
|
expand(gId("CB"+i),i); //expand macros with custom DOW or date range set
|
|
|
|
}
|
2021-12-23 20:37:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
function Wd()
|
|
|
|
{
|
|
|
|
a = [0,0,0,0,0,0,0,0,0,0];
|
|
|
|
for (i=0; i<10; i++) {
|
|
|
|
m=1;
|
2021-12-25 18:46:43 +01:00
|
|
|
for(j=0;j<8;j++) { a[i]+=gId(("W"+i)+j).checked*m; m*=2;}
|
2021-12-23 20:37:22 +01:00
|
|
|
gId("W"+i).value=a[i];
|
|
|
|
}
|
|
|
|
if (d.Sf.LTR.value==="S") { d.Sf.LT.value = -1*parseFloat(d.Sf.LT.value); }
|
|
|
|
if (d.Sf.LNR.value==="W") { d.Sf.LN.value = -1*parseFloat(d.Sf.LN.value); }
|
|
|
|
}
|
2021-05-19 18:39:16 +02:00
|
|
|
function addRow(i,p,l,d) {
|
2021-05-20 19:54:07 +02:00
|
|
|
var t = gId("macros"); // table
|
2021-12-23 20:37:22 +01:00
|
|
|
var rCnt = t.rows.length; // get the number of rows.
|
|
|
|
var tr = t.insertRow(rCnt); // table row.
|
2021-12-08 22:05:51 +01:00
|
|
|
var b = String.fromCharCode((i<10?48:55)+i);
|
2021-05-20 19:54:07 +02:00
|
|
|
var td = document.createElement('td'); // TABLE DEFINITION.
|
2021-05-19 18:39:16 +02:00
|
|
|
td = tr.insertCell(0);
|
|
|
|
td.innerHTML = `Button ${i}:`;
|
|
|
|
td = tr.insertCell(1);
|
2021-12-08 22:05:51 +01:00
|
|
|
td.innerHTML = `<input name="MP${b}" type="number" class="s" min="0" max="250" value="${p}" required>`;
|
2021-05-19 18:39:16 +02:00
|
|
|
td = tr.insertCell(2);
|
2021-12-08 22:05:51 +01:00
|
|
|
td.innerHTML = `<input name="ML${b}" type="number" class="s" min="0" max="250" value="${l}" required>`;
|
2021-05-19 18:39:16 +02:00
|
|
|
td = tr.insertCell(3);
|
2021-12-08 22:05:51 +01:00
|
|
|
td.innerHTML = `<input name="MD${b}" type="number" class="s" min="0" max="250" value="${d}" required>`;
|
2021-05-19 18:39:16 +02:00
|
|
|
}
|
2022-02-26 01:37:30 +01:00
|
|
|
function getLoc() {
|
|
|
|
if (!el) {
|
|
|
|
window.addEventListener("message", (event) => {
|
|
|
|
if (event.origin !== "https://locate.wled.me") return;
|
|
|
|
if (event.data instanceof Object) {
|
|
|
|
d.Sf.LT.value = event.data.lat;
|
|
|
|
d.Sf.LN.value = event.data.lon;
|
|
|
|
updLoc();
|
|
|
|
}
|
|
|
|
}, false);
|
|
|
|
el = true;
|
|
|
|
}
|
|
|
|
window.open("https://locate.wled.me","_blank");
|
|
|
|
}
|
2021-12-23 20:37:22 +01:00
|
|
|
function updLoc(i) {
|
|
|
|
if (parseFloat(d.Sf.LT.value)<0) { d.Sf.LTR.value = "S"; d.Sf.LT.value = -1*parseFloat(d.Sf.LT.value); } else d.Sf.LTR.value = "N";
|
|
|
|
if (parseFloat(d.Sf.LN.value)<0) { d.Sf.LNR.value = "W"; d.Sf.LN.value = -1*parseFloat(d.Sf.LN.value); } else d.Sf.LNR.value = "E";
|
|
|
|
}
|
2019-11-27 22:28:13 +01:00
|
|
|
</script>
|
2021-12-06 20:53:09 +01:00
|
|
|
<style>@import url("style.css");</style>
|
2019-11-27 22:28:13 +01:00
|
|
|
</head>
|
|
|
|
<body onload="S()">
|
|
|
|
<form id="form_s" name="Sf" method="post" onsubmit="Wd()">
|
2021-03-05 09:50:59 +01:00
|
|
|
<div class="toprow">
|
2019-11-27 22:28:13 +01:00
|
|
|
<div class="helpB"><button type="button" onclick="H()">?</button></div>
|
|
|
|
<button type="button" onclick="B()">Back</button><button type="submit">Save</button><hr>
|
2021-03-05 09:50:59 +01:00
|
|
|
</div>
|
2019-11-27 22:28:13 +01:00
|
|
|
<h2>Time setup</h2>
|
|
|
|
Get time from NTP server: <input type="checkbox" name="NT"><br>
|
2023-01-16 22:12:02 +01:00
|
|
|
<input type="text" name="NS" maxlength="32"><br>
|
2019-11-27 22:28:13 +01:00
|
|
|
Use 24h format: <input type="checkbox" name="CF"><br>
|
|
|
|
Time zone:
|
|
|
|
<select name="TZ">
|
|
|
|
<option value="0" selected>GMT(UTC)</option>
|
|
|
|
<option value="1">GMT/BST</option>
|
|
|
|
<option value="2">CET/CEST</option>
|
|
|
|
<option value="3">EET/EEST</option>
|
|
|
|
<option value="4">US-EST/EDT</option>
|
|
|
|
<option value="5">US-CST/CDT</option>
|
|
|
|
<option value="6">US-MST/MDT</option>
|
|
|
|
<option value="7">US-AZ</option>
|
|
|
|
<option value="8">US-PST/PDT</option>
|
|
|
|
<option value="9">CST(AWST)</option>
|
|
|
|
<option value="10">JST(KST)</option>
|
|
|
|
<option value="11">AEST/AEDT</option>
|
|
|
|
<option value="12">NZST/NZDT</option>
|
2021-05-19 18:39:16 +02:00
|
|
|
<option value="13">North Korea</option>
|
|
|
|
<option value="14">IST (India)</option>
|
|
|
|
<option value="15">CA-Saskatchewan</option>
|
|
|
|
<option value="16">ACST</option>
|
|
|
|
<option value="17">ACST/ACDT</option>
|
|
|
|
<option value="18">HST (Hawaii)</option>
|
2021-09-26 17:12:13 +02:00
|
|
|
<option value="19">NOVT (Novosibirsk)</option>
|
2021-10-11 05:09:48 +02:00
|
|
|
<option value="20">AKST/AKDT (Anchorage)</option>
|
2023-02-21 17:09:04 +01:00
|
|
|
<option value="21">MX-CST</option>
|
2022-10-19 11:11:25 +02:00
|
|
|
<option value="22">PKT (Pakistan)</option>
|
2019-11-27 22:28:13 +01:00
|
|
|
</select><br>
|
|
|
|
UTC offset: <input name="UO" type="number" min="-65500" max="65500" required> seconds (max. 18 hours)<br>
|
2021-03-05 23:05:09 +01:00
|
|
|
Current local time is <span class="times">unknown</span>.<br>
|
2021-12-23 20:37:22 +01:00
|
|
|
Latitude: <select name="LTR"><option value="N">N</option><option value="S">S</option></select><input name="LT" type="number" class="xl" min="0" max="66.6" step="0.01"><br>
|
2022-02-26 01:37:30 +01:00
|
|
|
Longitude: <select name="LNR"><option value="E">E</option><option value="W">W</option></select><input name="LN" type="number" class="xl" min="0" max="180" step="0.01"><br>
|
|
|
|
<button type="button" id="locbtn" onclick="getLoc()">Get location</button>
|
|
|
|
<div><i>(opens new tab, only works in browser)</i></div>
|
2021-03-08 19:40:06 +01:00
|
|
|
<div id="sun" class="times"></div>
|
2019-11-27 22:28:13 +01:00
|
|
|
<h3>Clock</h3>
|
2022-03-06 23:47:36 +01:00
|
|
|
Analog Clock overlay: <input type="checkbox" name="OL" onchange="Cs()"><br>
|
|
|
|
<div id="cac">
|
|
|
|
First LED: <input name="O1" type="number" min="0" max="255" required> Last LED: <input name="O2" type="number" min="0" max="255" required><br>
|
2019-11-27 22:28:13 +01:00
|
|
|
12h LED: <input name="OM" type="number" min="0" max="255" required><br>
|
2022-03-06 23:47:36 +01:00
|
|
|
Show 5min marks: <input type="checkbox" name="O5"><br>
|
2019-11-27 22:28:13 +01:00
|
|
|
Seconds (as trail): <input type="checkbox" name="OS"><br>
|
|
|
|
</div>
|
|
|
|
Countdown Mode: <input type="checkbox" name="CE"><br>
|
|
|
|
Countdown Goal:<br>
|
2021-12-31 14:09:48 +01:00
|
|
|
Date: <nowrap>20<input name="CY" class="xs" type="number" min="0" max="99" required>-<input name="CI" class="xs" type="number" min="1" max="12" required>-<input name="CD" class="xs" type="number" min="1" max="31" required></nowrap><br>
|
2022-01-01 16:36:06 +01:00
|
|
|
Time: <nowrap><input name="CH" class="xs" type="number" min="0" max="23" required>:<input name="CM" class="xs" type="number" min="0" max="59" required>:<input name="CS" class="xs" type="number" min="0" max="59" required></nowrap><br>
|
2020-11-07 23:54:56 +01:00
|
|
|
<h3>Macro presets</h3>
|
2022-01-01 16:36:06 +01:00
|
|
|
<b>Macros have moved!</b><br>
|
|
|
|
<i>Presets now also can be used as macros to save both JSON and HTTP API commands.<br>
|
|
|
|
Just enter the preset ID below!</i>
|
2020-11-07 23:54:56 +01:00
|
|
|
<i>Use 0 for the default action instead of a preset</i><br>
|
2021-10-11 17:55:26 +02:00
|
|
|
Alexa On/Off Preset: <input name="A0" class="m" type="number" min="0" max="250" required> <input name="A1" class="m" type="number" min="0" max="250" required><br>
|
|
|
|
Countdown-Over Preset: <input name="MC" class="m" type="number" min="0" max="250" required><br>
|
|
|
|
Timed-Light-Over Presets: <input name="MN" class="m" type="number" min="0" max="250" required><br>
|
2021-05-19 18:39:16 +02:00
|
|
|
<h3>Button actions</h3>
|
|
|
|
<table style="margin: 0 auto;" id="macros">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2021-05-20 06:45:02 +02:00
|
|
|
<td>push<br>switch</td>
|
2021-05-19 18:39:16 +02:00
|
|
|
<td>short<br>on->off</td>
|
|
|
|
<td>long<br>off->on</td>
|
2021-05-20 06:45:02 +02:00
|
|
|
<td>double<br>N/A</td>
|
2021-05-21 12:08:47 +02:00
|
|
|
</tr>
|
2021-05-19 18:39:16 +02:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2021-12-08 22:05:51 +01:00
|
|
|
<a href="https://kno.wled.ge/features/macros/#analog-button" target="_blank">Analog Button setup</a>
|
2020-11-07 23:54:56 +01:00
|
|
|
<h3>Time-controlled presets</h3>
|
2021-12-25 18:46:43 +01:00
|
|
|
<div style="display: inline-block">
|
|
|
|
<table id="TMT" style="min-width:330px;"></table>
|
|
|
|
</div>
|
|
|
|
<hr>
|
2019-11-27 22:28:13 +01:00
|
|
|
<button type="button" onclick="B()">Back</button><button type="submit">Save</button>
|
|
|
|
</form>
|
|
|
|
</body>
|
|
|
|
</html>
|