ma ham/esphome: rip, replaced with autodiscovery
This commit is contained in:
parent
910686f656
commit
bcbc9ad903
@ -12,7 +12,6 @@ let
|
|||||||
zigbee = import ./multi/zigbee2mqtt.nix;
|
zigbee = import ./multi/zigbee2mqtt.nix;
|
||||||
flurlicht = import ./multi/flurlicht.nix;
|
flurlicht = import ./multi/flurlicht.nix;
|
||||||
kurzzeitwecker = import ./multi/kurzzeitwecker.nix;
|
kurzzeitwecker = import ./multi/kurzzeitwecker.nix;
|
||||||
esphome = import ./multi/esphome.nix;
|
|
||||||
# switch
|
# switch
|
||||||
# automation
|
# automation
|
||||||
# binary_sensor
|
# binary_sensor
|
||||||
@ -34,7 +33,7 @@ in {
|
|||||||
longitude = "9.2478";
|
longitude = "9.2478";
|
||||||
elevation = 247;
|
elevation = 247;
|
||||||
};
|
};
|
||||||
#discovery = {};
|
discovery = {};
|
||||||
conversation = {};
|
conversation = {};
|
||||||
history = {};
|
history = {};
|
||||||
logbook = {};
|
logbook = {};
|
||||||
@ -110,7 +109,6 @@ in {
|
|||||||
};
|
};
|
||||||
binary_sensor =
|
binary_sensor =
|
||||||
zigbee.binary_sensor
|
zigbee.binary_sensor
|
||||||
++ esphome.binary_sensor
|
|
||||||
++ flurlicht.binary_sensor;
|
++ flurlicht.binary_sensor;
|
||||||
sensor = [
|
sensor = [
|
||||||
{ platform = "speedtest";
|
{ platform = "speedtest";
|
||||||
@ -119,10 +117,9 @@ in {
|
|||||||
# https://www.home-assistant.io/cookbook/automation_for_rainy_days/
|
# https://www.home-assistant.io/cookbook/automation_for_rainy_days/
|
||||||
]
|
]
|
||||||
++ ((import ./sensor/outside.nix) {inherit lib;})
|
++ ((import ./sensor/outside.nix) {inherit lib;})
|
||||||
++ esphome.sensor
|
|
||||||
++ zigbee.sensor ;
|
++ zigbee.sensor ;
|
||||||
frontend = { };
|
frontend = { };
|
||||||
light = flurlicht.light ++ esphome.light;
|
light = flurlicht.light;
|
||||||
group =
|
group =
|
||||||
{ default_view =
|
{ default_view =
|
||||||
{ view = "yes";
|
{ view = "yes";
|
||||||
@ -166,8 +163,7 @@ in {
|
|||||||
};
|
};
|
||||||
http = { };
|
http = { };
|
||||||
switch =
|
switch =
|
||||||
esphome.switch
|
zigbee.switch;
|
||||||
++ zigbee.switch;
|
|
||||||
automation =
|
automation =
|
||||||
flurlicht.automation
|
flurlicht.automation
|
||||||
++ kurzzeitwecker.automation
|
++ kurzzeitwecker.automation
|
||||||
|
@ -1,45 +0,0 @@
|
|||||||
# provides:
|
|
||||||
# switch
|
|
||||||
# automation
|
|
||||||
# binary_sensor
|
|
||||||
# sensor
|
|
||||||
# input_select
|
|
||||||
# timer
|
|
||||||
let
|
|
||||||
inherit (import ../lib) esphome;
|
|
||||||
sonoff_s20 = host: {
|
|
||||||
sensor = [
|
|
||||||
(esphome.ip { inherit host;})
|
|
||||||
(esphome.wifi { inherit host;})
|
|
||||||
(esphome.temp { inherit host;})
|
|
||||||
(esphome.hum { inherit host;})
|
|
||||||
];
|
|
||||||
binary_sensor = [
|
|
||||||
(esphome.btn { inherit host;})
|
|
||||||
];
|
|
||||||
light = [
|
|
||||||
(esphome.monoled { inherit host;})
|
|
||||||
];
|
|
||||||
switch = [
|
|
||||||
(esphome.relay { inherit host;})
|
|
||||||
(esphome.restart { inherit host;})
|
|
||||||
];
|
|
||||||
};
|
|
||||||
dusche = sonoff_s20 "dusche_plug";
|
|
||||||
schlafzimmer = sonoff_s20 "schlafzimmer_plug";
|
|
||||||
in {
|
|
||||||
sensor = [
|
|
||||||
(esphome.pressure {host = "dusche_plug";})
|
|
||||||
]
|
|
||||||
++ dusche.sensor
|
|
||||||
++ schlafzimmer.sensor;
|
|
||||||
binary_sensor =
|
|
||||||
dusche.binary_sensor
|
|
||||||
++ schlafzimmer.binary_sensor;
|
|
||||||
light =
|
|
||||||
dusche.light
|
|
||||||
++ schlafzimmer.light;
|
|
||||||
switch =
|
|
||||||
dusche.switch
|
|
||||||
++ schlafzimmer.switch;
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user