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
type: entities | |
entities: | |
- type: button | |
icon: mdi:format-list-bulleted-type | |
name: Journal | |
action_name: NAVIGER | |
tap_action: | |
action: navigate | |
navigation_path: /logbook | |
- type: button |
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
- id: '1688129246113' | |
alias: Irrigation intelligente - Calculer fin arrosage | |
description: '' | |
trigger: | |
- platform: state | |
entity_id: | |
- switch.irrigation_switch | |
to: 'on' | |
from: 'off' | |
condition: |
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
turn_on_kitchen_lights_and_wait_3_seconds: | |
alias: Turn on Kitchen Lights and Wait 3 seconds | |
sequence: | |
- service: light.turn_on | |
data: {} | |
target: | |
entity_id: light.kitchen_lights | |
- delay: | |
hours: 0 | |
minutes: 0 |
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
# https://www.home-assistant.io/integrations/template/ | |
template: | |
- binary_sensor: | |
- name: home_occupied | |
unique_id: home_occupied | |
state: "{{states('zone.home')|int > 0}}" | |
device_class: occupancy | |
attributes: | |
is_home_full: "{{states('zone.home')|int == expand(states.person)|list|count}}" |
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
# This condition will be true if your home is empty | |
condition: | |
- condition: state | |
entity_id: zone.home | |
state: "0" | |
# This condition will be true if your home is occupied | |
condition: | |
- condition: numeric_state | |
entity_id: zone.home |
NewerOlder