light-control: wip
This commit is contained in:
parent
60d9482999
commit
bc1f5ae7ac
1 changed files with 58 additions and 57 deletions
|
@ -45,20 +45,20 @@ in {
|
||||||
};
|
};
|
||||||
}) allDevices;
|
}) allDevices;
|
||||||
|
|
||||||
#services.homeAssistantConfig = {
|
services.homeAssistantConfig = {
|
||||||
|
|
||||||
# light = lib.mapAttrsToList (name:
|
light = lib.mapAttrsToList (name:
|
||||||
# { ... }: {
|
{ ... }: {
|
||||||
# platform = "mqtt";
|
platform = "mqtt";
|
||||||
# name = name;
|
name = name;
|
||||||
# state_topic = "zigbee2mqtt/${name}";
|
state_topic = "zigbee2mqtt/${name}";
|
||||||
# availability_topic = "zigbee2mqtt/bridge/state";
|
availability_topic = "zigbee2mqtt/bridge/state";
|
||||||
# command_topic = "zigbee2mqtt/${name}/set";
|
command_topic = "zigbee2mqtt/${name}/set";
|
||||||
# value_template = "{{ value_json.click }}";
|
value_template = "{{ value_json.click }}";
|
||||||
# brightness = true;
|
brightness = true;
|
||||||
# color_temp = true;
|
color_temp = true;
|
||||||
# schema = "json";
|
schema = "json";
|
||||||
# }) allDevices;
|
}) allDevices;
|
||||||
|
|
||||||
# sensor = with lib;
|
# sensor = with lib;
|
||||||
# mapAttrsToList (name:
|
# mapAttrsToList (name:
|
||||||
|
@ -108,6 +108,7 @@ in {
|
||||||
# all_lights.entities =
|
# all_lights.entities =
|
||||||
# lib.mapAttrsToList (name: { ... }: "light.${name}") allDevices;
|
# lib.mapAttrsToList (name: { ... }: "light.${name}") allDevices;
|
||||||
# };
|
# };
|
||||||
#};
|
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue