zigbee2mqtt update

This commit is contained in:
Ingolf Wagner 2021-02-24 05:58:18 +01:00
parent f51eb0be80
commit 8d511e173f
Signed by: palo
GPG key ID: 76BF5F1928B9618B
2 changed files with 16 additions and 4 deletions

View file

@ -9,7 +9,11 @@
password = "hallo";
};
scenes = [
{ name = "default"; }
{
name = "default";
ignored_sensors =
[ "zigbee2mqtt/door_sensor_5" "zigbee2mqtt/door_sensor_1" ];
}
{
name = "outside";
room_tracking_enabled = false;
@ -19,9 +23,6 @@
name = "night";
room_tracking_enabled = false;
brightness = 25;
#disabled_switches = [
#"zigbee2mqtt/light_2"
#];
ignored_sensors =
[ "zigbee2mqtt/motion_sensor_7" "zigbee2mqtt/door_sensor_4" ];
}
@ -54,6 +55,10 @@
topic = "zigbee2mqtt/motion_sensor_6";
room = "office_room";
})
(motion {
topic = "zigbee2mqtt/motion_sensor_8";
room = "office_room";
})
(motion {
topic = "zigbee2mqtt/motion_sensor_7";
room = "sleeping_room";
@ -62,6 +67,10 @@
topic = "zigbee2mqtt/motion_sensor_5";
room = "kitchen";
})
(motion {
topic = "zigbee2mqtt/motion_sensor_4";
room = "storage_room";
})
(door {
topic = "zigbee2mqtt/door_sensor_1";

View file

@ -57,6 +57,9 @@ in {
advanced.pan_id = 1337;
# add last seen information
advanced.last_seen = "ISO_8601_local";
# configure web ui
frontend.port = 9666;
frontend.host = "0.0.0.0";