Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- alias: Nibe F750 Luxury Mode on Excess Solar with Temperature Check
- description: >-
- Switch Nibe F750 to luxury mode when exporting >2kW for 5 minutes and water is
- below 56°C between 11:00-21:00 (reverts to NORMAL if export < 0.3kW for 5
- minutes or water > 58°C)
- triggers:
- - trigger: time_pattern
- minutes: /5
- conditions: []
- actions:
- - choose:
- - conditions:
- - condition: time
- after: "11:00:00"
- before: "21:00:00"
- - condition: numeric_state
- entity_id: sensor.sh10rt20_total_export_active_power
- above: 2
- - condition: numeric_state
- entity_id: water_heater.f750_hot_water
- attribute: current_temperature
- below: 56
- - condition: not
- conditions:
- - condition: state
- entity_id: select.hot_water_comfort_mode_47041
- state: LUXURY
- sequence:
- - delay:
- minutes: 5
- - condition: and
- conditions:
- - condition: numeric_state
- entity_id: sensor.sh10rt20_total_export_active_power
- above: 2
- - condition: numeric_state
- entity_id: water_heater.f750_hot_water
- attribute: current_temperature
- below: 56
- - action: select.select_option
- target:
- entity_id: select.hot_water_comfort_mode_47041
- data:
- option: LUXURY
- - action: switch.turn_on
- target:
- entity_id: switch.cut_off_frequency_activated_1_48660
- data: {}
- - action: switch.turn_on
- target:
- entity_id: switch.cut_off_frequency_activated_2_48659
- data: {}
- - conditions:
- - condition: numeric_state
- entity_id: sensor.sh10rt20_total_export_active_power
- below: 0.3
- - condition: not
- conditions:
- - condition: state
- entity_id: select.hot_water_comfort_mode_47041
- state: NORMAL
- sequence:
- - delay:
- minutes: 5
- - condition: numeric_state
- entity_id: sensor.sh10rt20_total_export_active_power
- below: 0.1
- - action: select.select_option
- target:
- entity_id: select.hot_water_comfort_mode_47041
- data:
- option: NORMAL
- - action: switch.turn_off
- target:
- entity_id: switch.cut_off_frequency_activated_1_48660
- data: {}
- - action: switch.turn_off
- target:
- entity_id: switch.cut_off_frequency_activated_2_48659
- data: {}
- - conditions:
- - condition: numeric_state
- entity_id: water_heater.f750_hot_water
- attribute: current_temperature
- above: 58
- - condition: not
- conditions:
- - condition: state
- entity_id: select.hot_water_comfort_mode_47041
- state: NORMAL
- sequence:
- - action: select.select_option
- target:
- entity_id: select.hot_water_comfort_mode_47041
- data:
- option: NORMAL
- - action: switch.turn_off
- target:
- entity_id: switch.cut_off_frequency_activated_1_48660
- data: {}
- - action: switch.turn_off
- target:
- entity_id: switch.cut_off_frequency_activated_2_48659
- data: {}
- mode: single
Advertisement
Add Comment
Please, Sign In to add comment