Created
June 20, 2023 07:41
-
-
Save infrat/4c290a2b85e48d930979091712371076 to your computer and use it in GitHub Desktop.
Turn off septic tank pump
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: | |
- delay: | |
hours: 0 | |
minutes: 10 # to poczekaj 10 minut | |
seconds: 0 | |
milliseconds: 0 | |
- service: switch.turn_off | |
data: {} | |
target: | |
entity_id: switch.septic_tank_pump01 # i wyłącz urządzenie o id encji 'switch.septic_tank_pump01' (tu użyj id Twojej pompki) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment