Perka

Nibe F750 Luxury Mode on Excess Solar with Temperature Check

Aug 23rd, 2025
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.62 KB | None | 0 0
  1. alias: Nibe F750 Luxury Mode on Excess Solar with Temperature Check
  2. description: >-
  3. Switch Nibe F750 to luxury mode when exporting >2kW for 5 minutes and water is
  4. below 56°C between 11:00-21:00 (reverts to NORMAL if export < 0.3kW for 5
  5. minutes or water > 58°C)
  6. triggers:
  7. - trigger: time_pattern
  8. minutes: /5
  9. conditions: []
  10. actions:
  11. - choose:
  12. - conditions:
  13. - condition: time
  14. after: "11:00:00"
  15. before: "21:00:00"
  16. - condition: numeric_state
  17. entity_id: sensor.sh10rt20_total_export_active_power
  18. above: 2
  19. - condition: numeric_state
  20. entity_id: water_heater.f750_hot_water
  21. attribute: current_temperature
  22. below: 56
  23. - condition: not
  24. conditions:
  25. - condition: state
  26. entity_id: select.hot_water_comfort_mode_47041
  27. state: LUXURY
  28. sequence:
  29. - delay:
  30. minutes: 5
  31. - condition: and
  32. conditions:
  33. - condition: numeric_state
  34. entity_id: sensor.sh10rt20_total_export_active_power
  35. above: 2
  36. - condition: numeric_state
  37. entity_id: water_heater.f750_hot_water
  38. attribute: current_temperature
  39. below: 56
  40. - action: select.select_option
  41. target:
  42. entity_id: select.hot_water_comfort_mode_47041
  43. data:
  44. option: LUXURY
  45. - action: switch.turn_on
  46. target:
  47. entity_id: switch.cut_off_frequency_activated_1_48660
  48. data: {}
  49. - action: switch.turn_on
  50. target:
  51. entity_id: switch.cut_off_frequency_activated_2_48659
  52. data: {}
  53. - conditions:
  54. - condition: numeric_state
  55. entity_id: sensor.sh10rt20_total_export_active_power
  56. below: 0.3
  57. - condition: not
  58. conditions:
  59. - condition: state
  60. entity_id: select.hot_water_comfort_mode_47041
  61. state: NORMAL
  62. sequence:
  63. - delay:
  64. minutes: 5
  65. - condition: numeric_state
  66. entity_id: sensor.sh10rt20_total_export_active_power
  67. below: 0.1
  68. - action: select.select_option
  69. target:
  70. entity_id: select.hot_water_comfort_mode_47041
  71. data:
  72. option: NORMAL
  73. - action: switch.turn_off
  74. target:
  75. entity_id: switch.cut_off_frequency_activated_1_48660
  76. data: {}
  77. - action: switch.turn_off
  78. target:
  79. entity_id: switch.cut_off_frequency_activated_2_48659
  80. data: {}
  81. - conditions:
  82. - condition: numeric_state
  83. entity_id: water_heater.f750_hot_water
  84. attribute: current_temperature
  85. above: 58
  86. - condition: not
  87. conditions:
  88. - condition: state
  89. entity_id: select.hot_water_comfort_mode_47041
  90. state: NORMAL
  91. sequence:
  92. - action: select.select_option
  93. target:
  94. entity_id: select.hot_water_comfort_mode_47041
  95. data:
  96. option: NORMAL
  97. - action: switch.turn_off
  98. target:
  99. entity_id: switch.cut_off_frequency_activated_1_48660
  100. data: {}
  101. - action: switch.turn_off
  102. target:
  103. entity_id: switch.cut_off_frequency_activated_2_48659
  104. data: {}
  105. mode: single
  106.  
Advertisement
Add Comment
Please, Sign In to add comment