master
Sascha Woitschetzki 2023-08-29 14:07:54 +07:00
commit e2bec7304a
1 changed files with 9 additions and 0 deletions

@ -0,0 +1,9 @@
showFirmware();
stopScript("script.js.Shelly.ShowFirmware");
function showFirmware() {
$("[id=shelly.0.*.version]").each(function (id, i) {
let iid = id.padStart(50, "_"); // 'space' not shown in console..
log("id: " + iid + ": " + getState(id).val);
});
}