Got bored and added icons to a bunch of stuff...lol
This commit is contained in:
@ -42,6 +42,7 @@
|
||||
{{ states | selectattr('state', 'eq', 'unavailable') | map(attribute='entity_id') | list | count }}
|
||||
current_lights_on:
|
||||
friendly_name: Current Lights On
|
||||
icon: mdi:lamps
|
||||
unit_of_measurement: 'on'
|
||||
value_template: >-
|
||||
{% set lights = [
|
||||
@ -71,6 +72,7 @@
|
||||
{{ lights | selectattr('state','eq','on') | list | count }}
|
||||
first_floor_lights_on:
|
||||
friendly_name: First Floor Lights On
|
||||
icon: mdi:lamps
|
||||
unit_of_measurement: 'on'
|
||||
value_template: >-
|
||||
{% set lights = [
|
||||
@ -87,6 +89,7 @@
|
||||
{{ lights | selectattr('state','eq','on') | list | count }}
|
||||
second_floor_lights_on:
|
||||
friendly_name: Second Floor Lights On
|
||||
icon: mdi:lamps
|
||||
unit_of_measurement: 'on'
|
||||
value_template: >-
|
||||
{% set lights = [
|
||||
@ -103,6 +106,7 @@
|
||||
{{ lights | selectattr('state','eq','on') | list | count }}
|
||||
basement_lights_on:
|
||||
friendly_name: Basement Lights On
|
||||
icon: mdi:lamps
|
||||
unit_of_measurement: 'on'
|
||||
value_template: >-
|
||||
{% set lights = [
|
||||
@ -114,6 +118,7 @@
|
||||
{{ lights | selectattr('state','eq','on') | list | count }}
|
||||
current_fans_on:
|
||||
friendly_name: Current Fans On
|
||||
icon: mdi:fan
|
||||
unit_of_measurement: 'on'
|
||||
value_template: >-
|
||||
{% set fans = [
|
||||
@ -125,6 +130,7 @@
|
||||
{{ fans | selectattr('state','eq','on') | list | count }}
|
||||
current_outdoor_lights_on:
|
||||
friendly_name: Current Outdoor Lights On
|
||||
icon: mdi:outdoor-lamp
|
||||
unit_of_measurement: 'on'
|
||||
value_template: >-
|
||||
{% set lights = [
|
||||
@ -133,6 +139,7 @@
|
||||
{{ lights | selectattr('state','eq','on') | list | count }}
|
||||
front_porch_color_temp:
|
||||
friendly_name: Front Porch Color Temp
|
||||
icon: mdi:palette
|
||||
unit_of_measurement: 'mireds'
|
||||
value_template: >
|
||||
{% if is_state('light.front_porch_light','off') %}
|
||||
@ -146,6 +153,7 @@
|
||||
|
||||
- platform: history_stats
|
||||
name: Basement TV Time
|
||||
icon: mdi:chart-timeline-variant-shimmer
|
||||
entity_id: media_player.basement_tv
|
||||
state: 'playing'
|
||||
type: time
|
||||
@ -154,6 +162,7 @@
|
||||
hours: 24
|
||||
- platform: history_stats
|
||||
name: Basement TV Chromecast Time
|
||||
icon: mdi:chart-timeline-variant-shimmer
|
||||
entity_id: media_player.basement_tv_chromecast
|
||||
state: 'playing'
|
||||
type: time
|
||||
@ -162,6 +171,7 @@
|
||||
hours: 24
|
||||
- platform: history_stats
|
||||
name: Living Room TV Time
|
||||
icon: mdi:chart-timeline-variant-shimmer
|
||||
entity_id: media_player.living_room_tv
|
||||
state: 'playing'
|
||||
type: time
|
||||
@ -170,6 +180,7 @@
|
||||
hours: 24
|
||||
- platform: history_stats
|
||||
name: Living Room TV Chromecast Time
|
||||
icon: mdi:chart-timeline-variant-shimmer
|
||||
entity_id: media_player.living_room_tv_chromecast
|
||||
state: 'playing'
|
||||
type: time
|
||||
@ -178,6 +189,7 @@
|
||||
hours: 24
|
||||
- platform: history_stats
|
||||
name: Master Bedroom TV Time
|
||||
icon: mdi:chart-timeline-variant-shimmer
|
||||
entity_id: media_player.master_bedroom_firetv
|
||||
state: 'playing'
|
||||
type: time
|
||||
@ -186,6 +198,7 @@
|
||||
hours: 24
|
||||
- platform: history_stats
|
||||
name: Living Room Xbox One Time
|
||||
icon: mdi:chart-timeline-variant-shimmer
|
||||
entity_id: media_player.xboxone
|
||||
state: 'playing'
|
||||
type: time
|
||||
@ -194,6 +207,7 @@
|
||||
hours: 24
|
||||
- platform: history_stats
|
||||
name: Outside Lights
|
||||
icon: mdi:chart-timeline-variant-shimmer
|
||||
entity_id: light.outside_lights
|
||||
state: 'on'
|
||||
type: time
|
||||
|
Reference in New Issue
Block a user