aboutsummaryrefslogtreecommitdiff
path: root/ui/index.html
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2024-04-10 09:08:32 +0200
committerlonkaars <loek@pipeframe.xyz>2024-04-10 09:08:32 +0200
commit054be597e639cc6294f37202b966fe5e53c13f99 (patch)
tree1416f2829f2464e5b1169643b6316e94f94cc681 /ui/index.html
parent8aa0c245595620810f181a6b3f49d66a6bd6b090 (diff)
fix lights range
Diffstat (limited to 'ui/index.html')
-rw-r--r--ui/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/index.html b/ui/index.html
index 1183672..3d93944 100644
--- a/ui/index.html
+++ b/ui/index.html
@@ -69,7 +69,7 @@
<details open>
<summary>Verlichting</summary>
<div class="light_controls">
- <input id="lightsInput" type="range" min="0" max="100" step="10" value="0" oninput="api.msg.send.lights(this)"/>
+ <input id="lightsInput" type="range" min="0" max="10" step="1" value="0" oninput="api.msg.send.lights(this)"/>
<div>Felheid: <span id="lightsValue">??</span>%</div>
</div>
</details>