diff options
| author | lonkaars <loek@pipeframe.xyz> | 2024-04-08 11:34:28 +0200 |
|---|---|---|
| committer | lonkaars <loek@pipeframe.xyz> | 2024-04-08 11:34:28 +0200 |
| commit | dcdb47f24057f42b600856064ab2e45ac252f9dd (patch) | |
| tree | d39f8e4f7c768fc6b94a7a7945965eba8e322be4 /ui/index.html | |
| parent | 8d2f3af3d5b88ac5b7186b23c4231d9cf00f3616 (diff) | |
fix light value range + send allState message on socket connect
Diffstat (limited to 'ui/index.html')
| -rw-r--r-- | ui/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/index.html b/ui/index.html index e93a711..0da8172 100644 --- a/ui/index.html +++ b/ui/index.html @@ -55,7 +55,7 @@ <details open> <summary>Verlichting</summary> <div class="light_controls"> - <input id="lightsInput" type="range" min="0" max="100" step="1" value="0" oninput="api.msg.send.lights(this)"/> + <input id="lightsInput" type="range" min="0" max="100" step="10" value="0" oninput="api.msg.send.lights(this)"/> <div>Felheid: <span id="lightsValue">??</span>%</div> </div> </details> |