summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/bureautomation/light
diff options
context:
space:
mode:
Diffstat (limited to 'makefu/2configs/bureautomation/light')
-rw-r--r--makefu/2configs/bureautomation/light/buzzer.nix30
-rw-r--r--makefu/2configs/bureautomation/light/statuslight.nix58
2 files changed, 0 insertions, 88 deletions
diff --git a/makefu/2configs/bureautomation/light/buzzer.nix b/makefu/2configs/bureautomation/light/buzzer.nix
deleted file mode 100644
index 4851dbd9..00000000
--- a/makefu/2configs/bureautomation/light/buzzer.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-let
- tasmota_pwm = name: topic: pwmid: max:
- let
- id = "PWM${toString pwmid}";
- in { platform = "mqtt";
- inherit name;
- state_topic = "/bam/${topic}/stat/RESULT";
- state_value_template = ''{%- if value_json["PWM"]["${id}"]| int > 0 -%} ${toString max} {%- else -%} 0 {%- endif -%}'';
-
- command_topic = "/bam/${topic}/cmnd/${id}";
- on_command_type = "brightness";
- brightness_command_topic = "/bam/${topic}/cmnd/${id}";
- brightness_value_template = ''{{value_json["PWM"]["${id}"]}}'';
- brightness_scale = max;
- payload_on = "${toString max}";
- payload_off = "0";
- availability_topic = "/bam/${topic}/tele/LWT";
- payload_available= "Online";
- payload_not_available= "Offline";
- retain = true;
- optimistic = false;
- qos = 0;
- };
-in {
- services.home-assistant.config.light =
- [
- # (tasmota_pwm "RedButton LED" "redbutton" 1 1023) #LED PWM1
- # (tasmota_pwm "RedButton Buzzer" "redbutton" 2 512) #buzzer PWM2
- ];
-}
diff --git a/makefu/2configs/bureautomation/light/statuslight.nix b/makefu/2configs/bureautomation/light/statuslight.nix
deleted file mode 100644
index de65a237..00000000
--- a/makefu/2configs/bureautomation/light/statuslight.nix
+++ /dev/null
@@ -1,58 +0,0 @@
-let
- tasmota_rgb = name: topic:
-# LED WS2812b
-# effect_state_topic: "stat/led/Scheme"
-# effect_command_topic: "cmnd/led/Scheme"
-# effect_value_template: "{{ value_json.Scheme }}"
- { platform = "mqtt";
- inherit name;
- retain = false;
- qos = 1;
- #optimistic = true;
- # state
- command_topic = "/bam/${topic}/cmnd/POWER";
- state_topic = "/bam/${topic}/tele/STATE";
- value_template = "{{ value_json.POWER }}";
- availability_topic = "/bam/${topic}/tele/LWT";
- payload_on = "ON";
- payload_off = "OFF";
- payload_available= "Online";
- payload_not_available= "Offline";
- # brightness
- brightness_state_topic = "/bam/${topic}/tele/STATE";
- brightness_value_template = "{{value_json.Dimmer|default(100)}}";
- brightness_command_topic = "/bam/${topic}/cmnd/Dimmer";
- brightness_scale = 100;
- # color
- rgb_state_topic = "/bam/${topic}/stat/RESULT";
- rgb_command_topic = "/bam/${topic}/cmnd/Color2";
- rgb_value_template = "{{(value_json.Channel[0]*2.55)|int}},{{(value_json.Channel[1]*2.55)|int}},{{(value_json.Channel[2]*2.55)|int}}";
-
- # effects
- effect_state_topic = "/bam/${topic}/tele/STATE";
- effect_value_template = "{{value_json.Scheme|default(0)}}";
- effect_command_topic = "/bam/${topic}/cmnd/Scheme";
- effect_list = [
- 0 # single color for LED light
- 1 # start wake up sequence (same as Wakeup)
- 2 # cycle up through colors using Speed option
- 3 # cycle down through colors using Speed option
- 4 # random cycle through colors using Speed and Fade
- 5 # clock mode (example)
- 6 # candlelight pattern
- 7 # RGB pattern
- 8 # Christmas pattern
- 9 # Hannukah pattern
- 10 # Kwanzaa pattern
- 11 # rainbow pattern
- 12 # fire pattern
- ];
- };
-in {
- services.home-assistant.config.light =
- [
- (tasmota_rgb "Status Felix" "status1")
- (tasmota_rgb "Status Daniel" "status2")
- (tasmota_rgb "Buslicht" "buslicht")
- ];
-}