Automations - ramses-rf/ramses_cc GitHub Wiki

Always have hot water

Below is an automation that will turn on the DHW using Boost to reheat the hot water when it drops below 46 degrees.

id: '1642243052302'
alias: Hot Water
description: ''
trigger:
  - platform: numeric_state
    below: '46'
    entity_id: sensor.07_******_temperature
condition:
  - condition: template
    value_template: '{{ state_attr("water_heater.stored_hw", "mode").active == false }}'
action:
  - service: water_heater.set_operation_mode
    data:
      operation_mode: boost
    target:
      entity_id: water_heater.stored_hw
mode: single

Auto-reload integration

This is an automation to reload the integration if a problem is detected (thanks @brucemiranda).

NOTE: this work-around only applies to config flow (>0.41.x - current) releases of the RAMSES RF HA integration.

alias: Reload Ramses CC
description: Reload Ramses CC when HGI80 shows a Problem
trigger:
  - platform: state
    entity_id:
      - binary_sensor.18_002563_status
    to: "on"
condition: []
action:
  - service: homeassistant.reload_config_entry
    data:
      entry_id: 14f6287491ba233d7310fd7a82b32fec
mode: single