This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
description: "Turn off septic tank pump" | |
mode: single | |
trigger: | |
- platform: state | |
entity_id: | |
- binary_sensor.septic_tank_sensor01 # Jeżeli stan encji o id 'binary_sensor.septic_tank_sensor01' (tu użyj id Twojego presostatu) | |
from: "on" # zmieni się z on | |
to: "off" # na off | |
condition: [] | |
action: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
description: Turn on septic tank pump | |
mode: single | |
trigger: | |
- platform: time_pattern | |
minutes: /5 # Co 5 minut | |
hours: 22-23,0-5 # codziennie między 22 a 5:59 | |
condition: | |
- condition: state | |
entity_id: binary_sensor.septic_tank_sensor01 # Sprawdź czy encja o id 'binary_sensor.septic_tank_sensor01' (tu użyj id Twojego presostatu) | |
state: "on" # Ma stan "on" (czyli presostat wskazuje wysoki stan w zbiorniku) |