Skip to content

Instantly share code, notes, and snippets.

@kai-zer-ru
Last active February 8, 2024 03:42
Show Gist options
  • Save kai-zer-ru/982e2f4006492b32c7c10fd5dcb57717 to your computer and use it in GitHub Desktop.
Save kai-zer-ru/982e2f4006492b32c7c10fd5dcb57717 to your computer and use it in GitHub Desktop.
Redmond RK-M216S autiomations
- alias: Вскипятить чайник
description: ''
trigger:
- platform: numeric_state
entity_id: water_heater.skykettle_rk_m216s
attribute: current_temperature
below: 35
for:
hours: 0
minutes: 0
seconds: 0
condition:
- condition: state
entity_id: switch.skykettle_rk_m216s
state: 'off'
- condition: time
after: 06:00:00
before: '23:50:00'
action:
- service: water_heater.set_operation_mode
data:
operation_mode: Boil+Heat
target:
entity_id: water_heater.skykettle_rk_m216s
mode: single
- alias: Подогрев после кипячения
description: ''
trigger:
- platform: numeric_state
entity_id: water_heater.skykettle_rk_m216s
attribute: current_temperature
above: 98
condition: []
action:
- delay:
hours: 0
minutes: 0
seconds: 10
milliseconds: 0
- service: water_heater.set_temperature
data:
temperature: 70
operation_mode: Heat
target:
entity_id: water_heater.skykettle_rk_m216s
mode: single
- alias: Подогрев
description: ''
trigger:
- platform: numeric_state
entity_id:
- water_heater.skykettle_rk_m216s
attribute: current_temperature
below: 60
condition:
- condition: state
entity_id: switch.skykettle_rk_m216s
state: 'off'
- condition: time
after: 06:00:00
before: '23:50:00'
action:
- service: water_heater.set_temperature
data:
temperature: 70
operation_mode: Heat
target:
entity_id: water_heater.skykettle_rk_m216s
mode: single
- alias: Утро
description: ''
trigger:
- platform: time
at: 07:00:00
condition:
- condition: time
weekday:
- fri
- thu
- wed
- tue
- mon
enabled: true
action:
- service: water_heater.set_temperature
data:
temperature: 70
operation_mode: Heat
target:
entity_id: water_heater.skykettle_rk_m216s
mode: single
- alias: Вскипяти чайник
description: ''
trigger:
- platform: event
event_type: yandex_intent
event_data:
text: Вскипяти чайник
condition: []
action:
- service: water_heater.set_operation_mode
data:
operation_mode: Boil+Heat
target:
entity_id: water_heater.skykettle_rk_m216s
mode: single
- alias: Нагрей чайник
description: ''
trigger:
- platform: event
event_type: yandex_intent
event_data:
text: Нагрей чайник
condition: []
action:
- service: water_heater.set_temperature
data:
temperature: 70
operation_mode: Heat
target:
entity_id: water_heater.skykettle_rk_m216s
mode: single
- alias: Перед сном
description: ''
trigger:
- platform: time
at: 00:00:00
condition: []
action:
- service: water_heater.set_operation_mode
data:
operation_mode: 'off'
target:
entity_id: water_heater.skykettle_rk_m216s
mode: single
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment