aboutsummaryrefslogtreecommitdiff
path: root/nixos/modules/home-assistant/sensors.nix
blob: fadd4ebb3ed7eccb379c70474b91dad402f2b07f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[
  {
    name = "Teplota";
    state_class = "measurement";
    state_topic = "bigclown/node/climate-monitor:0/thermometer/0:0/temperature";
    unit_of_measurement = "°C";
  }
  {
    name = "Vlhkost";
    state_class = "measurement";
    state_topic = "bigclown/node/climate-monitor:0/hygrometer/0:4/relative-humidity";
    unit_of_measurement = "%";
  }
  {
    name = "Osvětlení";
    state_class = "measurement";
    state_topic = "bigclown/node/climate-monitor:0/lux-meter/0:0/illuminance";
  }
]