mirror of
https://github.com/CeeWeasel/fresh-home.git
synced 2026-08-09 10:30:14 -04:00
Getting things back in sync?
This commit is contained in:
@@ -66,7 +66,7 @@ sensors:
|
||||
unique_id: templatebinarysensor.kids_possible
|
||||
friendly_name: Kids Possible
|
||||
icon_template: mdi:human-male-female-child
|
||||
value_template: "{{ is_state('binary_sensor.have_custody','on') or is_state('input_boolean.kristy_home','on') or is_state('input_boolean.ebin_home','on') or is_state('input_select.weaver_kids','Home') or is_state('input_select.podein_kids','Home') }}"
|
||||
value_template: "{{ is_state('binary_sensor.have_custody','on') or is_state('binary_sensor.even_week','on') or is_state('input_boolean.kristy_home','on') or is_state('input_boolean.ebin_home','on') or is_state('input_select.weaver_kids','Home') or is_state('input_select.podein_kids','Home') }}"
|
||||
|
||||
double_planter_needs_water:
|
||||
unique_id: templatebinarysensor.double_planter_needs_water
|
||||
@@ -654,14 +654,14 @@ sensors:
|
||||
master_bedroom_light_left_on:
|
||||
unique_id: templatebinarysensor.master_bedroom_light_left_on
|
||||
friendly_name: Master Bedroom Light Left On
|
||||
value_template: "{{ is_state('light.master_bedroom_ceiling_hue','on') and is_state('input_boolean.master_bedroom_occupied','off') }}"
|
||||
value_template: "{{ is_state('light.master_bedroom_hue','on') and is_state('input_boolean.master_bedroom_occupied','off') }}"
|
||||
delay_on:
|
||||
seconds: 30
|
||||
|
||||
nursery_light_left_on:
|
||||
unique_id: templatebinarysensor.nursery_light_left_on
|
||||
friendly_name: Nursery Light Left On
|
||||
value_template: "{{ is_state('light.nursery_ceiling_hue','on') and is_state('input_boolean.nursery_occupied','off') }}"
|
||||
value_template: "{{ is_state('light.nursery_hue','on') and is_state('input_boolean.nursery_occupied','off') }}"
|
||||
delay_on:
|
||||
seconds: 30
|
||||
|
||||
@@ -723,3 +723,4 @@ sensors:
|
||||
icon_template: mdi:fridge-variant
|
||||
delay_on:
|
||||
minutes: 3
|
||||
|
||||
|
||||
@@ -8,9 +8,3 @@ kids_bedtime_announcement_time:
|
||||
name: Kids Bedtime
|
||||
has_date: false
|
||||
has_time: true
|
||||
|
||||
|
||||
kids_five_minute_warning_time:
|
||||
name: Kids Warning Time
|
||||
has_date: false
|
||||
has_time: true
|
||||
|
||||
@@ -33,6 +33,7 @@ recorder:
|
||||
- input_select.outdoor_camera_cycle
|
||||
- input_select.indoor_camera_cycle
|
||||
- sensor.nws_alerts_last_updated
|
||||
- sensor.pixel_7_active_notification_count
|
||||
entity_globs:
|
||||
- sensor.*_text
|
||||
- sensor.*_last_motion
|
||||
|
||||
@@ -1,37 +1,44 @@
|
||||
template:
|
||||
- binary_sensor:
|
||||
- name: White Bed Occupied
|
||||
state: "{{ is_state('binary_sensor.bed_presence_2d14a4_bed_occupied_either', 'on') }}"
|
||||
icon: >
|
||||
{% if is_state("binary_sensor.white_bed_occupied", "on") %}
|
||||
mdi:bed-single
|
||||
{% else %}
|
||||
mdi:bed-single-outline
|
||||
{% endif %}
|
||||
|
||||
- name: Master Bed Occupied
|
||||
state: "{{ is_state('binary_sensor.bed_presence_2d14a4_bed_occupied_either', 'on') }}"
|
||||
icon: >
|
||||
{% if is_state("binary_sensor.master_bed_occupied", "on") %}
|
||||
mdi:bed-king
|
||||
{% else %}
|
||||
mdi:bed-king-outline
|
||||
{% endif %}
|
||||
|
||||
- name: Master Bed Left Occupied
|
||||
state: "{{ is_state('binary_sensor.bed_presence_c175a4_bed_occupied_left', 'on') }}"
|
||||
icon: >
|
||||
{% if is_state("binary_sensor.master_bed_left_occupied", "on") %}
|
||||
mdi:bed-king
|
||||
{% else %}
|
||||
mdi:bed-king-outline
|
||||
{% endif %}
|
||||
|
||||
- name: Master Bed Right Occupied
|
||||
state: "{{ is_state('binary_sensor.bed_presence_c175a4_bed_occupied_right', 'on') }}"
|
||||
icon: >
|
||||
{% if is_state("binary_sensor.master_bed_right_occupied", "on") %}
|
||||
mdi:bed-king
|
||||
{% else %}
|
||||
mdi:bed-king-outline
|
||||
{% endif %}
|
||||
template:
|
||||
- binary_sensor:
|
||||
- name: White Bed Occupied
|
||||
state: "{{ is_state('binary_sensor.bed_presence_2d14a4_bed_occupied_either', 'on') }}"
|
||||
icon: >
|
||||
{% if is_state("binary_sensor.white_bed_occupied", "on") %}
|
||||
mdi:bed-single
|
||||
{% else %}
|
||||
mdi:bed-single-outline
|
||||
{% endif %}
|
||||
|
||||
- name: Master Bed Occupied
|
||||
state: "{{ is_state('binary_sensor.bed_presence_2d14a4_bed_occupied_either', 'on') }}"
|
||||
icon: >
|
||||
{% if is_state("binary_sensor.master_bed_occupied", "on") %}
|
||||
mdi:bed-king
|
||||
{% else %}
|
||||
mdi:bed-king-outline
|
||||
{% endif %}
|
||||
|
||||
- name: Master Bed Left Occupied
|
||||
state: "{{ is_state('binary_sensor.bed_presence_c175a4_bed_occupied_left', 'on') }}"
|
||||
icon: >
|
||||
{% if is_state("binary_sensor.master_bed_left_occupied", "on") %}
|
||||
mdi:bed-king
|
||||
{% else %}
|
||||
mdi:bed-king-outline
|
||||
{% endif %}
|
||||
|
||||
- name: Master Bed Right Occupied
|
||||
state: "{{ is_state('binary_sensor.bed_presence_c175a4_bed_occupied_right', 'on') }}"
|
||||
icon: >
|
||||
{% if is_state("binary_sensor.master_bed_right_occupied", "on") %}
|
||||
mdi:bed-king
|
||||
{% else %}
|
||||
mdi:bed-king-outline
|
||||
{% endif %}
|
||||
|
||||
- sensor:
|
||||
- name: ESPHome Pending Updates
|
||||
state: "{{ states.update | selectattr('state', 'eq', 'on') | map(attribute='entity_id') | select ('in',integration_entities('esphome')) | list | count }}"
|
||||
icon: mdi:chip
|
||||
attributes:
|
||||
devices: "{{ states.update | selectattr('state', 'eq', 'on') | map(attribute='entity_id') | select ('in',integration_entities('esphome')) | list }}"
|
||||
@@ -4,7 +4,7 @@ logger:
|
||||
logs:
|
||||
|
||||
# WebRTC issues
|
||||
custom_components.webrtc: debug
|
||||
# custom_components.webrtc: debug
|
||||
|
||||
# Grocy issues
|
||||
# pygrocy.grocy_api_client: debug
|
||||
@@ -47,7 +47,7 @@ logger:
|
||||
pychromecast.socket_client:
|
||||
- ".*socket.*"
|
||||
- ".*Failed to connect to service.*"
|
||||
custom_components.grocy:
|
||||
- ".*last_used.*"
|
||||
# custom_components.grocy:
|
||||
# - ".*last_used.*"
|
||||
homeassistant.components.roku.coordinator:
|
||||
- ".*Timeout occurred.*"
|
||||
@@ -27,20 +27,20 @@ lovelace:
|
||||
show_in_sidebar: true
|
||||
filename: ui-phone.yaml
|
||||
cams-yml:
|
||||
mode: yaml
|
||||
title: Cams
|
||||
icon: mdi:camcorder
|
||||
show_in_sidebar: false
|
||||
filename: ui-cams.yaml
|
||||
mode: yaml
|
||||
title: Cams
|
||||
icon: mdi:camcorder
|
||||
show_in_sidebar: false
|
||||
filename: ui-cams.yaml
|
||||
camera-casting-yml:
|
||||
mode: yaml
|
||||
title: Camera Casting
|
||||
icon: mdi:cast
|
||||
show_in_sidebar: false
|
||||
filename: ui-camera-cast.yaml
|
||||
mode: yaml
|
||||
title: Camera Casting
|
||||
icon: mdi:cast
|
||||
show_in_sidebar: false
|
||||
filename: ui-camera-cast.yaml
|
||||
details-yml:
|
||||
mode: yaml
|
||||
title: Details
|
||||
icon: mdi:magnify
|
||||
show_in_sidebar: false
|
||||
filename: ui-details.yaml
|
||||
mode: yaml
|
||||
title: Details
|
||||
icon: mdi:magnify
|
||||
show_in_sidebar: false
|
||||
filename: ui-details.yaml
|
||||
Reference in New Issue
Block a user