From ab1cf75a4f20e5274f82d184667bbb9a4d216fe5 Mon Sep 17 00:00:00 2001 From: Artem Sheremet Date: Fri, 21 Jun 2024 21:15:57 +0200 Subject: [PATCH] Add AC config in child east/west rooms --- child-east-ac.yaml | 16 ++++++++++++++++ child-west-ac.yaml | 16 ++++++++++++++++ reflash.sh | 3 +++ 3 files changed, 35 insertions(+) create mode 100644 child-east-ac.yaml create mode 100644 child-west-ac.yaml diff --git a/child-east-ac.yaml b/child-east-ac.yaml new file mode 100644 index 0000000..85dee75 --- /dev/null +++ b/child-east-ac.yaml @@ -0,0 +1,16 @@ +esphome: + name: child-east-ac + friendly_name: "Child East AC" + area: "Child East" + + project: + name: dasfoo.child-east-ac + version: "1.0" + +packages: + device_base: !include templates/esp01m-ir.yaml + +climate: + - platform: tcl112 + name: None # Main entity for the device. + receiver_id: ir_receiver diff --git a/child-west-ac.yaml b/child-west-ac.yaml new file mode 100644 index 0000000..a2983b7 --- /dev/null +++ b/child-west-ac.yaml @@ -0,0 +1,16 @@ +esphome: + name: child-west-ac + friendly_name: "Child West AC" + area: "Child West" + + project: + name: dasfoo.child-west-ac + version: "1.0" + +packages: + device_base: !include templates/esp01m-ir.yaml + +climate: + - platform: tcl112 + name: None # Main entity for the device. + receiver_id: ir_receiver diff --git a/reflash.sh b/reflash.sh index 10ea4bc..2f1c5a4 100755 --- a/reflash.sh +++ b/reflash.sh @@ -39,6 +39,9 @@ for config in \ zigbee-coordinator.yaml \ basementdoorlock.yaml \ frontdoorlock.yaml \ + child-west-ac.yaml \ + child-east-ac.yaml \ + bedroom-ac.yaml \ tools-power.yaml; do flash+=("${command?} ${config?}") done