diff options
author | lassulus <lassulus@lassul.us> | 2021-08-31 19:16:11 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2021-08-31 19:16:11 +0200 |
commit | 8104c7412081d8ae3e372cf160bf3c6109a6a4e7 (patch) | |
tree | ac4c74514a8fbdcb682f1f1e22ebdf3376c0e1fd /makefu/2configs/home/ham/automation/light_buttons.nix | |
parent | f1fd0f15cd506cd263e43d94c6bcf933b693d0a2 (diff) | |
parent | 6e9910aa65b63d7bda3434c8089f6904adb8e45c (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/2configs/home/ham/automation/light_buttons.nix')
-rw-r--r-- | makefu/2configs/home/ham/automation/light_buttons.nix | 88 |
1 files changed, 9 insertions, 79 deletions
diff --git a/makefu/2configs/home/ham/automation/light_buttons.nix b/makefu/2configs/home/ham/automation/light_buttons.nix index 89caf1a41..62fc87bb4 100644 --- a/makefu/2configs/home/ham/automation/light_buttons.nix +++ b/makefu/2configs/home/ham/automation/light_buttons.nix @@ -1,80 +1,7 @@ let - btn_state = light: btn: halfbright: - let - maxbright = 255; - transition = 0.2; # seconds - in - # this function implements a simple state machine based on the state and brightness of the light (light must support brightness - { - alias = "Cycle through states of ${light} via button ${btn}"; - trigger = { - platform = "state"; - entity_id = "sensor.${btn}_click"; - to = "single"; - }; - action = { - choose = [ - { - # state 0: off to half - conditions = { - condition = "template"; - value_template = ''{{ states("${light}") == "off" }}''; - }; - sequence = [ - { - service = "light.turn_on"; - data = { - entity_id = light; - brightness = halfbright; - }; - } - ]; - } - { - # state 1: half to full - conditions = { - condition = "template"; - value_template = ''{{ states('${light}') == 'on' and ( ${toString (halfbright - 1)} <= state_attr("${light}","brightness") <= ${toString (halfbright + 1)})}}''; - }; - sequence = [ - { - service = "light.turn_on"; - data = { - entity_id = light; - brightness = maxbright; - }; - } - ]; - } - { - # state 2: full to off - conditions = { - condition = "template"; - # TODO: it seems like the devices respond with brightness-1 , maybe off-by-one somewhere? - value_template = ''{{ states("${light}") == "on" and state_attr("${light}","brightness") >= ${toString (maxbright - 1)}}}''; - }; - sequence = [ - { - service = "light.turn_off"; - data = { - entity_id = light; - }; - } - ]; - } - ]; - # default: on to off - # this works because state 0 checks for "state == off" - default = [{ - service = "light.turn_off"; - data = { - entity_id = light; - }; - }]; - }; - }; - turn_off_all = btn: + inherit (import ../lib) btn_cycle_light; + turn_off_all = btn: #lights: { alias = "Turn of all lights via ${btn} double click"; trigger = { @@ -84,14 +11,17 @@ let }; action = { service = "light.turn_off"; + #entity_id = lights; entity_id = "all"; }; }; in { services.home-assistant.config.automation = [ - # (btn_state "light.arbeitszimmerbeleuchtung" "arbeitszimmer_btn1") - (btn_state "light.schlafzimmer_komode_osram" "schlafzimmer_btn2" 128) - # (btn_state "light.wohnzimmerbeleuchtung" "wohnzimmer_btn3") - (turn_off_all "schlafzimmer_btn2") + # (btn_cycle_light "light.arbeitszimmerbeleuchtung" "arbeitszimmer_btn1") + (btn_cycle_light "light.schlafzimmer_komode_osram" "schlafzimmer_btn2" 128) + + (btn_cycle_light "light.keller_osram" "keller_btn1" 128) + # (btn_cycle_light "light.wohnzimmerbeleuchtung" "wohnzimmer_btn3") + (turn_off_all "schlafzimmer_btn2" ) ]; } |