aboutsummaryrefslogtreecommitdiff
path: root/ui/sections/lfv/lights.html
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2024-03-23 20:51:35 +0100
committerlonkaars <loek@pipeframe.xyz>2024-03-23 20:51:35 +0100
commit6f48041c9dd52f4d98c3defec030232aa0bbfeb9 (patch)
tree092020453e1893021dcf5be7b2f7d4ce93163f87 /ui/sections/lfv/lights.html
parenteb46bad3d09e05fe40c4637c3d1aca5d0a263514 (diff)
merge Sean's code
Diffstat (limited to 'ui/sections/lfv/lights.html')
-rw-r--r--ui/sections/lfv/lights.html13
1 files changed, 0 insertions, 13 deletions
diff --git a/ui/sections/lfv/lights.html b/ui/sections/lfv/lights.html
deleted file mode 100644
index bb37603..0000000
--- a/ui/sections/lfv/lights.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<h2>Lights Control</h2>
-<ul>
- <li><button onclick="setPercentage(0)">0%</button></li>
- <li><button onclick="setPercentage(10)">10%</button></li>
- <li><button onclick="setPercentage(20)">20%</button></li>
-</ul>
-<div id="percentageDisplay">Percentage: 0%</div>
-
-<script>
- function setPercentage(percentage) {
- document.getElementById('percentageDisplay').innerText = `Percentage: ${percentage}%`;
- }
-</script>