From 2ba62088772fe0a80788e669781248addb732bc5 Mon Sep 17 00:00:00 2001 From: Elouin Date: Fri, 28 Mar 2025 15:42:50 +0100 Subject: [PATCH] add minimal style and on-off buttons --- src/main.rs | 75 +++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 73 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 4ca2018..b36838c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -55,15 +55,86 @@ function post_brightness() { } }) } + +function post_on(state) { + fetch("/lights", { + method: "POST", + body: JSON.stringify({ + on: state, + }), + headers: { + "Content-type": "application/json; charset=UTF-8" + } + }) +} - +

Lichtschirmsteuerung

+
+ + +

Helligkeit

- +