summaryrefslogtreecommitdiffstats
path: root/2configs/bureautomation/sensor
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2019-04-17 20:46:58 +0200
committermakefu <github@syntax-fehler.de>2019-04-17 20:46:58 +0200
commit86a04cded20d67d60b348b81d31305bcb04ff12a (patch)
tree1be199ba22a2230b01752ef43bd3c17d1c976642 /2configs/bureautomation/sensor
parent2dd3f5f8f95284814a3a69f96e6d1affaf7a1ac1 (diff)
ma bureautomation: refactor
Diffstat (limited to '2configs/bureautomation/sensor')
-rw-r--r--2configs/bureautomation/sensor/tasmota_firmware.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/2configs/bureautomation/sensor/tasmota_firmware.nix b/2configs/bureautomation/sensor/tasmota_firmware.nix
new file mode 100644
index 000000000..1a4738e12
--- /dev/null
+++ b/2configs/bureautomation/sensor/tasmota_firmware.nix
@@ -0,0 +1,16 @@
+let
+ tasmota_firmware = topic:
+ { platform = "mqtt";
+ name = "${topic} Firmware";
+ state_topic = "/bam/${topic}/stat/STATUS2";
+ availability_topic = "/bam/${topic}/tele/LWT";
+ value_template = "v{{value_json.StatusFWR.Version}}";
+ payload_available= "Online";
+ payload_not_available= "Offline";
+ };
+in
+ map tasmota_firmware [
+ "plug" "plug2" "plug3" "plug4" "plug5"
+ "status1" "status2" "buslicht"
+ "rfbridge"
+ ]