From d280d2ce967a7f92d7cb9d796bd38e6522d15bd2 Mon Sep 17 00:00:00 2001 From: T Date: Thu, 6 Mar 2025 20:14:52 +0100 Subject: [PATCH] Fix brightness --- main.py | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/main.py b/main.py index 0a20679..c36f390 100755 --- a/main.py +++ b/main.py @@ -456,20 +456,14 @@ def index(): return bottle.static_file("index.html", root='html') -@bottle.route("/") -def serve_static(filepath): - return bottle.static_file(filepath, root='html') - - -@bottle.route("/setgamma////") +@bottle.route("/setgamma////") def setGamma(r, g, b, w): - runner.setGamma(float(r), float(g), float(b), float(w)) + runner.setGamma(r, g, b, w) return "ok" -@bottle.route("/setbrightness/") +@bottle.route("/setbrightness/") def setIntensity(i): - i = float(i) if not 0 <= i <= 1: return "bad_value" runner.setFilter("0_intensity", filters.MakeBrightnessFilter(i)) @@ -513,7 +507,14 @@ def filter_expr(): return "ok" -if __name__ == '__main__': +# generic rule must be the last +@bottle.route("/") +def serve_static(filepath): + return bottle.static_file(filepath, root='html') + + +def main(): + global running, runner ######################################################################## # Startup # ######################################################################## @@ -529,3 +530,7 @@ if __name__ == '__main__': ######################################################################## running = False runner.join() + + +if __name__ == '__main__': + main()