summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/bureautomation/sensor/tasmota_firmware.nix
blob: 1a4738e12f11b8b2def8eebca4cd83333470ad19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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"
  ]