|
|
|
@ -7,15 +7,15 @@ homeassistant:
|
|
|
|
customize_glob:
|
|
|
|
customize_glob:
|
|
|
|
"device_tracker.nodemcu*":
|
|
|
|
"device_tracker.nodemcu*":
|
|
|
|
icon: mdi:chip
|
|
|
|
icon: mdi:chip
|
|
|
|
|
|
|
|
|
|
|
|
hidden: True
|
|
|
|
hidden: True
|
|
|
|
"sensor.nodemcu*":
|
|
|
|
"sensor.nodemcu*":
|
|
|
|
icon: mdi:alarm-bell
|
|
|
|
icon: mdi:alarm-bell
|
|
|
|
|
|
|
|
|
|
|
|
hidden: False
|
|
|
|
hidden: False
|
|
|
|
"binary_sensor.mcu?_gpio*":
|
|
|
|
"binary_sensor.mcu?_gpio*":
|
|
|
|
icon: mdi:security-home
|
|
|
|
icon: mdi:security-home
|
|
|
|
|
|
|
|
|
|
|
|
hidden: False
|
|
|
|
hidden: False
|
|
|
|
|
|
|
|
|
|
|
|
customize:
|
|
|
|
customize:
|
|
|
|
@ -289,6 +289,37 @@ automation:
|
|
|
|
entity_id: climate.downstairs
|
|
|
|
entity_id: climate.downstairs
|
|
|
|
operation_mode: 'auto'
|
|
|
|
operation_mode: 'auto'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#-------------------------------------------#-------------------------------------------
|
|
|
|
|
|
|
|
- alias: 'Alarm lights in Living room'
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
|
|
|
|
- platform: state
|
|
|
|
|
|
|
|
entity_id:
|
|
|
|
|
|
|
|
- group.entry_points
|
|
|
|
|
|
|
|
- platform: state
|
|
|
|
|
|
|
|
entity_id: group.all_covers
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
condition:
|
|
|
|
|
|
|
|
condition: and
|
|
|
|
|
|
|
|
conditions:
|
|
|
|
|
|
|
|
- condition: state
|
|
|
|
|
|
|
|
entity_id: sun.sun
|
|
|
|
|
|
|
|
state: 'below_horizon'
|
|
|
|
|
|
|
|
- condition: state
|
|
|
|
|
|
|
|
entity_id: group.bed
|
|
|
|
|
|
|
|
state: 'off'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
action:
|
|
|
|
|
|
|
|
- service: light.turn_on
|
|
|
|
|
|
|
|
entity_id:
|
|
|
|
|
|
|
|
- group.living_room_accents
|
|
|
|
|
|
|
|
data_template:
|
|
|
|
|
|
|
|
color_name: >
|
|
|
|
|
|
|
|
{% if states.group.entry_points.state == 'on' or states.group.all_covers.state != 'closed' -%}
|
|
|
|
|
|
|
|
red
|
|
|
|
|
|
|
|
{% else %}
|
|
|
|
|
|
|
|
gold
|
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
|
|
#-------------------------------------------#---
|
|
|
|
#-------------------------------------------#---
|
|
|
|
- alias: "Panel Door opened"
|
|
|
|
- alias: "Panel Door opened"
|
|
|
|
hide_entity: True
|
|
|
|
hide_entity: True
|
|
|
|
|