-
Notifications
You must be signed in to change notification settings - Fork 3
/
groups.yaml
55 lines (49 loc) · 1.48 KB
/
groups.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# This group is exposed in the HassIQ Widget on my garmin watch
hassiq:
entities:
- switch.front_door_lock
- cover.linear_nortek_security_control_llc_gd00z_4_garage_door_opener_remote_controller_barrier_state_label
- switch.front_porch_light
- switch.occupancy
- switch.all_audio
media_player_cast:
entities:
- media_player.downstairs
- media_player.everywhere
- media_player.family_room_speaker
- media_player.garage_speaker
- media_player.kitchen_speaker
- media_player.master_bedroom
- media_player.not_the_bedroom
- media_player.chromecast
- media_player.shield
- media_player.upstairs
- media_player.onkyo_txrz820_4f772a
occupancy_sensors:
entities:
- binary_sensor.lil_bee_occupancy
- binary_sensor.thermostat_occupancy
- binary_sensor.office_occupancy
media_player_avr:
entities:
- media_player.downstairs_tx_rz820
#- media_player.downstairs_tx_rz820_zone_2
#- media_player.downstairs_tx_rz820_zone_3
- media_player.rx_v475_a16974
#- media_player.upstairs_tx8050
#- media_player.upstairs_tx8050_zone_2
media_player_roku:
entities:
- media_player.tonysroku3
# I hate to type
template:
name: |
{{ states.group.template.name }}
{% set groups = ['automations', 'media_player', 'binary_sensor', 'sensor', 'switch', 'cover'] %}
{% for g in groups %}
{{g}}_list:
entities:
{% for s in states[g] %}
- {{ s.entity_id }}
{% endfor -%}
{% endfor %}