diff --git a/lovelace/resources.yaml b/lovelace/resources.yaml index d8403c2..53d4f6c 100644 --- a/lovelace/resources.yaml +++ b/lovelace/resources.yaml @@ -43,3 +43,7 @@ # Simple Weather Card - url: /hacsfiles/simple-weather-card/simple-weather-card-bundle.js type: module + +# Wall Panel +- url: /hacsfiles/lovelace-wallpanel/wallpanel.js + type: module diff --git a/packages/security/security.yaml b/packages/security/security.yaml index 62fd454..857c551 100644 --- a/packages/security/security.yaml +++ b/packages/security/security.yaml @@ -20,6 +20,7 @@ homeassistant: alarm_control_panel: - platform: manual code: !secret alarm_code + code_arm_required: false arming_time: 30 delay_time: 20 trigger_time: 600 diff --git a/packages/vacation/vacation.yaml b/packages/vacation/vacation.yaml index 9dcf29d..9b6ac17 100644 --- a/packages/vacation/vacation.yaml +++ b/packages/vacation/vacation.yaml @@ -8,7 +8,7 @@ automation: - platform: sun event: sunset 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: - delay: "00:{{ range(0,59)|random|int }}:00" - service: light.turn_on @@ -22,7 +22,7 @@ automation: trigger: - platform: time 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: - delay: "00:{{ range(0,59)|random|int }}:00" - service: light.turn_off @@ -39,7 +39,7 @@ automation: trigger: - platform: time 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: - delay: "00:{{ range(0,59)|random|int }}:00" - service: light.turn_off