Skip to content

Commit

Permalink
Autocommit: Config at 2024-10-08 15:16:54
Browse files Browse the repository at this point in the history
  • Loading branch information
avbor committed Oct 8, 2024
1 parent a3d7b68 commit e54b2bd
Show file tree
Hide file tree
Showing 70 changed files with 1,992 additions and 1,790 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ _Remote site (country house):_
- eWelink DIN rail Switch with Energy Meter (SMT002, Coolkit PSF-X67)\
Integration "Sonoff LAN" by [AlexxIT](https://github.com/AlexxIT/SonoffLAN)

- Sonoff POW R3 16D Elite flashed to [ESPHome](https://esphome.io/)\
Integration "ESPHome"

- Plugs:
- TP-Link HS110\
Integration "TP-Link Kasa Smart"
Expand Down
32 changes: 16 additions & 16 deletions automations/auto_humidor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,52 +4,52 @@

- alias: 'Humidity in humidor too low'
id: 4ccbd0aa-829a-45d3-abe7-33ae2552215b
trigger:
platform: numeric_state
triggers:
trigger: numeric_state
entity_id: sensor.atc_3d13_humidity
below: 65
for:
minutes: 30
action:
- service: notify.telegram_group_system
actions:
- action: notify.telegram_group_system
data:
message: Влажность в хьюмидоре ниже 65% (текущая {{ states("sensor.atc_3d13_humidity") }}%)

- alias: 'Humidity in humidor too high'
id: f6158c69-c088-4258-a623-6c2ee3c2cf72
trigger:
platform: numeric_state
triggers:
trigger: numeric_state
entity_id: sensor.atc_3d13_humidity
above: 80
for:
minutes: 30
action:
- service: notify.telegram_group_system
actions:
- action: notify.telegram_group_system
data:
message: Влажность в хьюмидоре выше 80% (текущая {{ states("sensor.atc_3d13_humidity") }}%)

- alias: 'Temperature in humidor too low'
id: 0d95f393-ab18-4aef-8eb9-9bf5165d6638
trigger:
platform: numeric_state
triggers:
trigger: numeric_state
entity_id: sensor.atc_3d13_temperature
below: 20
for:
minutes: 30
action:
- service: notify.telegram_group_system
actions:
- action: notify.telegram_group_system
data:
message: Температура в хьюмидоре ниже 20°C (текущая {{ states("sensor.atc_3d13_temperature") }}°C)

- alias: 'Temperature in humidor too high'
id: dcfce935-f705-4ae5-be45-ffb780b3f290
trigger:
platform: numeric_state
triggers:
trigger: numeric_state
entity_id: sensor.atc_3d13_temperature
above: 25
for:
minutes: 30
action:
- service: notify.telegram_group_system
actions:
- action: notify.telegram_group_system
data:
message: Температура в хьюмидоре выше 25°C (текущая {{ states("sensor.atc_3d13_temperature") }}°C)
21 changes: 10 additions & 11 deletions automations/auto_media.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@

- alias: "PowerOff all media when nobody at home"
id: 0e2312c7-3cab-413a-aefb-20ff5802c718
trigger:
platform: state
triggers:
trigger: state
entity_id: group.family_persons
to: "not_home"
for:
minutes: 5
condition:
condition: or
conditions:
conditions:
- or:
- condition: state
entity_id: group.all_tv
state: "on"
Expand All @@ -29,15 +28,15 @@
- condition: state
entity_id: group.all_xbox
state: "on"
action:
- service: homeassistant.turn_off
data:
actions:
- action: homeassistant.turn_off
target:
entity_id: group.all_tv
- service: media_player.media_stop
data:
- action: media_player.media_stop
target:
entity_id:
- group.all_chromecasts
- service: media_player.turn_off
- action: media_player.turn_off
target:
entity_id:
- group.all_yandex_stations
Expand Down
Loading

0 comments on commit e54b2bd

Please sign in to comment.