Add Wall Panel

This commit is contained in:
2023-03-22 15:16:54 -07:00
parent 9ab9840395
commit 469e52dd33
3 changed files with 8 additions and 3 deletions

View File

@@ -43,3 +43,7 @@
# Simple Weather Card # Simple Weather Card
- url: /hacsfiles/simple-weather-card/simple-weather-card-bundle.js - url: /hacsfiles/simple-weather-card/simple-weather-card-bundle.js
type: module type: module
# Wall Panel
- url: /hacsfiles/lovelace-wallpanel/wallpanel.js
type: module

View File

@@ -20,6 +20,7 @@ homeassistant:
alarm_control_panel: alarm_control_panel:
- platform: manual - platform: manual
code: !secret alarm_code code: !secret alarm_code
code_arm_required: false
arming_time: 30 arming_time: 30
delay_time: 20 delay_time: 20
trigger_time: 600 trigger_time: 600

View File

@@ -8,7 +8,7 @@ automation:
- platform: sun - platform: sun
event: sunset event: sunset
offset: '-00:30:00' offset: '-00:30:00'
conditions: "{{ not is_state('input_select.house_presence_state', 'Extended Away') }}" conditions: "{{ is_state('input_select.house_presence_state', 'Extended Away') }}"
action: action:
- delay: "00:{{ range(0,59)|random|int }}:00" - delay: "00:{{ range(0,59)|random|int }}:00"
- service: light.turn_on - service: light.turn_on
@@ -22,7 +22,7 @@ automation:
trigger: trigger:
- platform: time - platform: time
at: '18:30:00' at: '18:30:00'
conditions: "{{ not is_state('input_select.house_presence_state', 'Extended Away') }}" conditions: "{{ is_state('input_select.house_presence_state', 'Extended Away') }}"
action: action:
- delay: "00:{{ range(0,59)|random|int }}:00" - delay: "00:{{ range(0,59)|random|int }}:00"
- service: light.turn_off - service: light.turn_off
@@ -39,7 +39,7 @@ automation:
trigger: trigger:
- platform: time - platform: time
at: '20:30:00' at: '20:30:00'
conditions: "{{ not is_state('input_select.house_presence_state', 'Extended Away') }}" conditions: "{{ is_state('input_select.house_presence_state', 'Extended Away') }}"
action: action:
- delay: "00:{{ range(0,59)|random|int }}:00" - delay: "00:{{ range(0,59)|random|int }}:00"
- service: light.turn_off - service: light.turn_off