Apparently some sensors don't like icons. Lame.
This commit is contained in:
@ -41,7 +41,6 @@ sensor:
|
|||||||
sensors:
|
sensors:
|
||||||
tony_location:
|
tony_location:
|
||||||
friendly_name: "Tony"
|
friendly_name: "Tony"
|
||||||
icon: mdi:map-marker
|
|
||||||
unit_of_measurement: ""
|
unit_of_measurement: ""
|
||||||
value_template: >-
|
value_template: >-
|
||||||
{% set person = states.person.tony_stork.state %}
|
{% set person = states.person.tony_stork.state %}
|
||||||
@ -58,7 +57,6 @@ sensor:
|
|||||||
sensors:
|
sensors:
|
||||||
tina_location:
|
tina_location:
|
||||||
friendly_name: "Tina"
|
friendly_name: "Tina"
|
||||||
icon: mdi:map-marker
|
|
||||||
unit_of_measurement: ""
|
unit_of_measurement: ""
|
||||||
value_template: >-
|
value_template: >-
|
||||||
{% set person = states.person.christina_stork.state %}
|
{% set person = states.person.christina_stork.state %}
|
||||||
@ -77,7 +75,6 @@ sensor:
|
|||||||
sensors:
|
sensors:
|
||||||
kallen_location:
|
kallen_location:
|
||||||
friendly_name: "Kallen"
|
friendly_name: "Kallen"
|
||||||
icon: mdi:map-marker
|
|
||||||
unit_of_measurement: ""
|
unit_of_measurement: ""
|
||||||
value_template: >-
|
value_template: >-
|
||||||
{% if is_state('input_boolean.kallen_school', 'on') %}
|
{% if is_state('input_boolean.kallen_school', 'on') %}
|
||||||
|
@ -20,7 +20,6 @@
|
|||||||
sensors:
|
sensors:
|
||||||
basement_tv_current_app:
|
basement_tv_current_app:
|
||||||
friendly_name: 'Basement TV Current App'
|
friendly_name: 'Basement TV Current App'
|
||||||
icon: mdi:television-play
|
|
||||||
value_template: >-
|
value_template: >-
|
||||||
{% if is_state('media_player.basement_tv','off') %}
|
{% if is_state('media_player.basement_tv','off') %}
|
||||||
Off
|
Off
|
||||||
@ -29,7 +28,6 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
living_room_tv_current_app:
|
living_room_tv_current_app:
|
||||||
friendly_name: 'Living Room TV Current App'
|
friendly_name: 'Living Room TV Current App'
|
||||||
icon: mdi:television-play
|
|
||||||
value_template: >-
|
value_template: >-
|
||||||
{% if is_state('media_player.living_room_tv','off') %}
|
{% if is_state('media_player.living_room_tv','off') %}
|
||||||
Off
|
Off
|
||||||
@ -38,7 +36,6 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
master_bedroom_tv_current_app:
|
master_bedroom_tv_current_app:
|
||||||
friendly_name: 'Master Bedroom TV Current App'
|
friendly_name: 'Master Bedroom TV Current App'
|
||||||
icon: mdi:television-play
|
|
||||||
value_template: >-
|
value_template: >-
|
||||||
{% if is_state('media_player.master_bedroom_firetv','off') %}
|
{% if is_state('media_player.master_bedroom_firetv','off') %}
|
||||||
Off
|
Off
|
||||||
|
@ -42,7 +42,6 @@
|
|||||||
{{ states | selectattr('state', 'eq', 'unavailable') | map(attribute='entity_id') | list | count }}
|
{{ states | selectattr('state', 'eq', 'unavailable') | map(attribute='entity_id') | list | count }}
|
||||||
current_lights_on:
|
current_lights_on:
|
||||||
friendly_name: Current Lights On
|
friendly_name: Current Lights On
|
||||||
icon: mdi:lamps
|
|
||||||
unit_of_measurement: 'on'
|
unit_of_measurement: 'on'
|
||||||
value_template: >-
|
value_template: >-
|
||||||
{% set lights = [
|
{% set lights = [
|
||||||
@ -72,7 +71,6 @@
|
|||||||
{{ lights | selectattr('state','eq','on') | list | count }}
|
{{ lights | selectattr('state','eq','on') | list | count }}
|
||||||
first_floor_lights_on:
|
first_floor_lights_on:
|
||||||
friendly_name: First Floor Lights On
|
friendly_name: First Floor Lights On
|
||||||
icon: mdi:lamps
|
|
||||||
unit_of_measurement: 'on'
|
unit_of_measurement: 'on'
|
||||||
value_template: >-
|
value_template: >-
|
||||||
{% set lights = [
|
{% set lights = [
|
||||||
@ -89,7 +87,6 @@
|
|||||||
{{ lights | selectattr('state','eq','on') | list | count }}
|
{{ lights | selectattr('state','eq','on') | list | count }}
|
||||||
second_floor_lights_on:
|
second_floor_lights_on:
|
||||||
friendly_name: Second Floor Lights On
|
friendly_name: Second Floor Lights On
|
||||||
icon: mdi:lamps
|
|
||||||
unit_of_measurement: 'on'
|
unit_of_measurement: 'on'
|
||||||
value_template: >-
|
value_template: >-
|
||||||
{% set lights = [
|
{% set lights = [
|
||||||
@ -106,7 +103,6 @@
|
|||||||
{{ lights | selectattr('state','eq','on') | list | count }}
|
{{ lights | selectattr('state','eq','on') | list | count }}
|
||||||
basement_lights_on:
|
basement_lights_on:
|
||||||
friendly_name: Basement Lights On
|
friendly_name: Basement Lights On
|
||||||
icon: mdi:lamps
|
|
||||||
unit_of_measurement: 'on'
|
unit_of_measurement: 'on'
|
||||||
value_template: >-
|
value_template: >-
|
||||||
{% set lights = [
|
{% set lights = [
|
||||||
@ -118,7 +114,6 @@
|
|||||||
{{ lights | selectattr('state','eq','on') | list | count }}
|
{{ lights | selectattr('state','eq','on') | list | count }}
|
||||||
current_fans_on:
|
current_fans_on:
|
||||||
friendly_name: Current Fans On
|
friendly_name: Current Fans On
|
||||||
icon: mdi:fan
|
|
||||||
unit_of_measurement: 'on'
|
unit_of_measurement: 'on'
|
||||||
value_template: >-
|
value_template: >-
|
||||||
{% set fans = [
|
{% set fans = [
|
||||||
@ -130,7 +125,6 @@
|
|||||||
{{ fans | selectattr('state','eq','on') | list | count }}
|
{{ fans | selectattr('state','eq','on') | list | count }}
|
||||||
current_outdoor_lights_on:
|
current_outdoor_lights_on:
|
||||||
friendly_name: Current Outdoor Lights On
|
friendly_name: Current Outdoor Lights On
|
||||||
icon: mdi:outdoor-lamp
|
|
||||||
unit_of_measurement: 'on'
|
unit_of_measurement: 'on'
|
||||||
value_template: >-
|
value_template: >-
|
||||||
{% set lights = [
|
{% set lights = [
|
||||||
@ -139,7 +133,6 @@
|
|||||||
{{ lights | selectattr('state','eq','on') | list | count }}
|
{{ lights | selectattr('state','eq','on') | list | count }}
|
||||||
front_porch_color_temp:
|
front_porch_color_temp:
|
||||||
friendly_name: Front Porch Color Temp
|
friendly_name: Front Porch Color Temp
|
||||||
icon: mdi:palette
|
|
||||||
unit_of_measurement: 'mireds'
|
unit_of_measurement: 'mireds'
|
||||||
value_template: >
|
value_template: >
|
||||||
{% if is_state('light.front_porch_light','off') %}
|
{% if is_state('light.front_porch_light','off') %}
|
||||||
@ -153,7 +146,6 @@
|
|||||||
|
|
||||||
- platform: history_stats
|
- platform: history_stats
|
||||||
name: Basement TV Time
|
name: Basement TV Time
|
||||||
icon: mdi:chart-timeline-variant-shimmer
|
|
||||||
entity_id: media_player.basement_tv
|
entity_id: media_player.basement_tv
|
||||||
state: 'playing'
|
state: 'playing'
|
||||||
type: time
|
type: time
|
||||||
@ -162,7 +154,6 @@
|
|||||||
hours: 24
|
hours: 24
|
||||||
- platform: history_stats
|
- platform: history_stats
|
||||||
name: Basement TV Chromecast Time
|
name: Basement TV Chromecast Time
|
||||||
icon: mdi:chart-timeline-variant-shimmer
|
|
||||||
entity_id: media_player.basement_tv_chromecast
|
entity_id: media_player.basement_tv_chromecast
|
||||||
state: 'playing'
|
state: 'playing'
|
||||||
type: time
|
type: time
|
||||||
@ -171,7 +162,6 @@
|
|||||||
hours: 24
|
hours: 24
|
||||||
- platform: history_stats
|
- platform: history_stats
|
||||||
name: Living Room TV Time
|
name: Living Room TV Time
|
||||||
icon: mdi:chart-timeline-variant-shimmer
|
|
||||||
entity_id: media_player.living_room_tv
|
entity_id: media_player.living_room_tv
|
||||||
state: 'playing'
|
state: 'playing'
|
||||||
type: time
|
type: time
|
||||||
@ -180,7 +170,6 @@
|
|||||||
hours: 24
|
hours: 24
|
||||||
- platform: history_stats
|
- platform: history_stats
|
||||||
name: Living Room TV Chromecast Time
|
name: Living Room TV Chromecast Time
|
||||||
icon: mdi:chart-timeline-variant-shimmer
|
|
||||||
entity_id: media_player.living_room_tv_chromecast
|
entity_id: media_player.living_room_tv_chromecast
|
||||||
state: 'playing'
|
state: 'playing'
|
||||||
type: time
|
type: time
|
||||||
@ -189,7 +178,6 @@
|
|||||||
hours: 24
|
hours: 24
|
||||||
- platform: history_stats
|
- platform: history_stats
|
||||||
name: Master Bedroom TV Time
|
name: Master Bedroom TV Time
|
||||||
icon: mdi:chart-timeline-variant-shimmer
|
|
||||||
entity_id: media_player.master_bedroom_firetv
|
entity_id: media_player.master_bedroom_firetv
|
||||||
state: 'playing'
|
state: 'playing'
|
||||||
type: time
|
type: time
|
||||||
@ -198,7 +186,6 @@
|
|||||||
hours: 24
|
hours: 24
|
||||||
- platform: history_stats
|
- platform: history_stats
|
||||||
name: Living Room Xbox One Time
|
name: Living Room Xbox One Time
|
||||||
icon: mdi:chart-timeline-variant-shimmer
|
|
||||||
entity_id: media_player.xboxone
|
entity_id: media_player.xboxone
|
||||||
state: 'playing'
|
state: 'playing'
|
||||||
type: time
|
type: time
|
||||||
@ -207,7 +194,6 @@
|
|||||||
hours: 24
|
hours: 24
|
||||||
- platform: history_stats
|
- platform: history_stats
|
||||||
name: Outside Lights
|
name: Outside Lights
|
||||||
icon: mdi:chart-timeline-variant-shimmer
|
|
||||||
entity_id: light.outside_lights
|
entity_id: light.outside_lights
|
||||||
state: 'on'
|
state: 'on'
|
||||||
type: time
|
type: time
|
||||||
|
Reference in New Issue
Block a user