From 06f7a44fb86a1876c77215a211b1bd6c37775d52 Mon Sep 17 00:00:00 2001 From: mischa Date: Sun, 3 Nov 2019 19:11:53 +0100 Subject: [PATCH] added custom scenes, morning, evening --- lightctl.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lightctl.py b/lightctl.py index 40d5007..9443553 100755 --- a/lightctl.py +++ b/lightctl.py @@ -46,15 +46,21 @@ no_cert_check.verify_mode=ssl.CERT_NONE scenes = {'br': {}, 'ct': {}, 'xt': {}} scenes['br']['bright'] = b'{"on": true, "bri": 254, "alert": "none"}' scenes['br']['relax'] = b'{"on": true, "bri": 144, "alert": "none"}' +scenes['br']['morning'] = b'{"on": true, "bri": 100, "alert": "none"}' scenes['br']['dimmed'] = b'{"on": true, "bri": 77, "alert": "none"}' +scenes['br']['evening'] = b'{"on": true, "bri": 63, "alert": "none"}' scenes['br']['nightlight'] = b'{"on": true, "bri": 1, "alert": "none"}' scenes['ct']['bright'] = b'{"on": true, "bri": 254, "ct": 367, "alert": "none", "colormode": "ct"}' scenes['ct']['relax'] = b'{"on": true, "bri": 144, "ct": 447, "alert": "none", "colormode": "ct"}' +scenes['ct']['morning'] = b'{"on": true, "bri": 100, "ct": 447, "alert": "none", "colormode": "ct"}' scenes['ct']['dimmed'] = b'{"on": true, "bri": 77, "ct": 367, "alert": "none", "colormode": "ct"}' +scenes['ct']['evening'] = b'{"on": true, "bri": 63, "ct": 367, "alert": "none", "colormode": "ct"}' scenes['ct']['nightlight'] = b'{"on": true, "bri": 1, "ct": 447, "alert": "none", "colormode": "ct"}' scenes['xt']['bright'] = b'{"on": true, "bri": 254, "hue": 8402, "sat": 140, "effect": "none", "xy": [0.4578, 0.41], "ct": 367, "alert": "none", "colormode": "xy"}' scenes['xt']['relax'] = b'{"on": true, "bri": 144, "hue": 8402, "sat": 140, "effect": "none", "xy": [0.5019, 0.4152], "ct": 447, "alert": "none", "colormode": "xy"}' +scenes['xt']['morning'] = b'{"on": true, "bri": 100, "hue": 8402, "sat": 140, "effect": "none", "xy": [0.5019, 0.4152], "ct": 447, "alert": "none", "colormode": "xy"}' scenes['xt']['dimmed'] = b'{"on": true, "bri": 77, "hue": 8402, "sat": 140, "effect": "none", "xy": [0.4578, 0.41], "ct": 367, "alert": "none", "colormode": "xy"}' +scenes['xt']['evening'] = b'{"on": true, "bri": 63, "hue": 8402, "sat": 140, "effect": "none", "xy": [0.4578, 0.41], "ct": 367, "alert": "none", "colormode": "xy"}' scenes['xt']['nightlight'] = b'{"on": true, "bri": 1, "hue": 8402, "sat": 140, "effect": "none", "xy": [0.561, 0.4042], "ct": 367, "alert": "none", "colormode": "xy"}' def get_state(id):