-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlovelace_mobile.yml
More file actions
1039 lines (1035 loc) · 35.7 KB
/
lovelace_mobile.yml
File metadata and controls
1039 lines (1035 loc) · 35.7 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
title: Maison
views:
- theme: Mushroom
title: Mobile
path: mobile
type: custom:vertical-layout
icon: mdi:cellphone
badges: []
cards:
- type: custom:mushroom-chips-card
chips:
- type: entity
entity: input_select.mode_dropdown
content_info: none
- type: template
entity: input_boolean.is_jour
icon: |-
{% if is_state('input_boolean.is_jour', 'on') %}
mdi:white-balance-sunny
{% else %}
mdi:weather-night
{% endif %}
icon_color: |2
{% if is_state('input_boolean.is_jour', 'on') %}
green
{% else %}
{% endif %}
content: |-
{% if is_state('input_boolean.is_jour', 'on') %}
Jour
{% else %}
Nuit
{% endif %}
- type: template
icon_color: |2
{% if is_state('input_boolean.presence', 'on') %}
green
{% else %}
red
{% endif %}
entity: input_boolean.presence
content: |2
{% if is_state('input_boolean.presence', 'on') %}
Présent
{% else %}
Absent
{% endif %}
icon: mdi:account
- type: template
entity: input_boolean.guest_mode
icon: |-
{% if is_state('input_boolean.guest_mode', 'on') %}
mdi:party-popper
{% else %}
mdi:home-heart
{% endif %}
icon_color: |-
{% if is_state('input_boolean.guest_mode', 'on') %}
green
{% else %}
{% endif %}
content: |-
{% if is_state('input_boolean.guest_mode', 'on') %}
Invité
{% else %}
Pas d'invité
{% endif %}
- type: template
entity: input_boolean.holidays
icon: |-
{% if is_state('input_boolean.holidays', 'on') %}
mdi:beach
{% else %}
mdi:home-account
{% endif %}
icon_color: |-
{% if is_state('input_boolean.holidays', 'on') %}
red
{% else %}
{% endif %}
content: |-
{% if is_state('input_boolean.holidays', 'on') %}
Vacances
{% else %}
Normal
{% endif %}
alignment: justify
- type: horizontal-stack
cards:
- type: custom:button-card
style: |
ha-card {
border-radius: 20px ;
}
entity: person.gautier
name: Gautier
aspect_ratio: 1/1
show_entity_picture: true
show_icon: false
show_name: false
show_state: false
show_label: true
label: |
[[[
if (states['person.gautier'].state == "home")
return 'Maison';
if (states['person.gautier'].state == "Travail Gautier")
return 'Travail';
return 'Absent'; ]]]
styles:
entity_picture:
- border-radius: 50%
- top: 5%
- left: 5%
- width: 40%
- color: gray
- opacity: 60%
name:
- top: 5%
- left: 8%
- position: absolute
- color: white
- font-size: 85%
state:
- top: 79%
- left: 5%
- position: absolute
label:
- font-size: 130%
- font-weight: bold
- top: 58%
- left: 8%
- position: absolute
- color: |
[[[
if (states['person.gautier'].state == "home")
return 'white';
if (states['person.gautier'].state == "Travail Gautier")
return 'white';
return 'lightgray';
]]]
card:
- font-size: 100%
- opacity: |
[[[
if (states['person.gautier'].state == "home")
return '100%';
if (states['person.gautier'].state == "Travail Gautier")
return '80%';
return '80%';
]]]
- background-color: |
[[[
if (states['person.gautier'].state == "home")
return '';
if (states['person.gautier'].state == "Travail Gautier")
return 'var(--primary-color)';
return 'grey';
]]]
custom_fields:
person_state:
- font-size: 100%
- top: 75%
- left: 8%
- color: lightgray
- position: absolute
circle:
- top: 10%
- left: 55%
- width: 35%
- position: absolute
- letter-spacing: 0.03vw
- stroke: |
[[[
if (states['sensor.pixel_5_niveau_de_batterie'].state < 20)
return 'red';
return 'lightgray';
]]]
extra_styles: |
@keyframes ball-scale {
from {
transform: scale(1);
}
to {
transform: scale(0.90);
}
}
@keyframes ball-scale2 {
from {
transform: scale(1);
}
to {
transform: scale(0.90);
}
}
state:
- value: 'on'
styles:
card:
- box-shadow: ' outset -1px -1px 2px 0px rgb(12, 12, 14) '
- animation: ball-scale 0.2s
- border-width: 1px
- value: 'off'
styles:
card:
- box-shadow: 1px 1px 5px 0px rgb(12, 12, 14)
- animation: ball-scale2 0.2s
- border-width: 1px
custom_fields:
person_state: |
[[[
if (states['sensor.gautier_last_changed'].state == '')
return 'A l\'instant';
return states['sensor.gautier_last_changed'].state;
]]]
circle: |
[[[ if (entity.state != 'unavailable' )
{
;
const radius = 20.5; const circumference = radius * 2 * Math.PI;
return `<svg viewBox="0 0 50 50"><circle cx="25" cy="25" r="${radius}" stroke="lightgray" stroke-width="1" fill="none" style="
transform: rotate(-90deg); transform-origin: 50% 50%; stroke-dasharray: ${circumference}; stroke-dashoffset: ${circumference - states['sensor.pixel_5_niveau_de_batterie'].state / 100 * circumference};" />
<text x="50%" y="54%" fill="lightgray" font-size="13" text-anchor="middle" alignment-baseline="middle">${states['sensor.pixel_5_niveau_de_batterie'].state}%<tspan font-size="10"></tspan></text></svg>`; } ]]]
- type: custom:button-card
style: |
ha-card {
border-radius: 20px ;
}
entity: person.manon
name: Manon
aspect_ratio: 1/1
show_entity_picture: true
show_icon: false
show_name: false
show_state: false
show_label: true
label: |
[[[
if (states['person.manon'].state == "home")
return 'Maison';
if (states['person.manon'].state == "Travail Manon")
return 'Travail';
return 'Absent'; ]]]
styles:
entity_picture:
- border-radius: 50%
- top: 5%
- left: 5%
- width: 40%
- color: gray
- opacity: 60%
name:
- top: 5%
- left: 8%
- position: absolute
- color: white
- font-size: 85%
state:
- top: 79%
- left: 5%
- position: absolute
label:
- font-size: 130%
- font-weight: bold
- top: 58%
- left: 8%
- position: absolute
- color: |
[[[
if (states['person.manon'].state == "home")
return 'white';
if (states['person.manon'].state == "Travail Manon")
return 'white';
return 'lightgray';
]]]
card:
- font-size: 100%
- opacity: |
[[[
if (states['person.manon'].state == "home")
return '100%';
if (states['person.manon'].state == "Travail Manon")
return '80%';
return '80%';
]]]
- background-color: |
[[[
if (states['person.manon'].state == "home")
return '';
if (states['person.manon'].state == "Travail Manon")
return 'var(--primary-color)';
return 'grey';
]]]
custom_fields:
person_state:
- font-size: 100%
- top: 75%
- left: 8%
- color: lightgray
- position: absolute
circle:
- top: 10%
- left: 55%
- width: 35%
- position: absolute
- letter-spacing: 0.03vw
- stroke: |
[[[
if (states['sensor.iphone_de_manon_battery_level'].state < 20)
return 'red';
return 'lightgray';
]]]
extra_styles: |
@keyframes ball-scale {
from {
transform: scale(1);
}
to {
transform: scale(0.90);
}
}
@keyframes ball-scale2 {
from {
transform: scale(1);
}
to {
transform: scale(0.90);
}
}
state:
- value: 'on'
styles:
card:
- box-shadow: ' outset -1px -1px 2px 0px rgb(12, 12, 14) '
- animation: ball-scale 0.2s
- border-width: 1px
- value: 'off'
styles:
card:
- box-shadow: 1px 1px 5px 0px rgb(12, 12, 14)
- animation: ball-scale2 0.2s
- border-width: 1px
custom_fields:
person_state: |
[[[
if (states['sensor.manon_last_changed'].state == '')
return 'A l\'instant';
return states['sensor.manon_last_changed'].state;
]]]
circle: |
[[[ if (entity.state != 'unavailable' )
{
;
const radius = 20.5; const circumference = radius * 2 * Math.PI;
return `<svg viewBox="0 0 50 50"><circle cx="25" cy="25" r="${radius}" stroke="lightgray" stroke-width="1" fill="none" style="
transform: rotate(-90deg); transform-origin: 50% 50%; stroke-dasharray: ${circumference}; stroke-dashoffset: ${circumference - states['sensor.iphone_de_manon_battery_level'].state / 100 * circumference};" />
<text x="50%" y="54%" fill="lightgray" font-size="13" text-anchor="middle" alignment-baseline="middle">${states['sensor.iphone_de_manon_battery_level'].state}%<tspan font-size="10"></tspan></text></svg>`; } ]]]
- type: horizontal-stack
cards:
- type: custom:mushroom-chips-card
chips:
- type: weather
entity: weather.forecast_riom
show_conditions: true
show_temperature: true
- type: conditional
conditions:
- entity: sensor.light_recap
state_not: Toutes les lumières sont éteintes
chip:
type: entity
entity: sensor.light_recap
- type: alarm-control-panel
entity: alarm_control_panel.ha_alarm
- type: template
icon: mdi:window-open-variant
entity: sensor.fenetre_recap
icon_color: >-
{% if is_state("sensor.fenetre_recap", "Toutes les fenêtres
sont fermeés") -%} {%-
else -%} red {%- endif %}
content: >-
{% if is_state("sensor.fenetre_recap", "Toutes les fenêtres
sont fermeés") -%} Fenêtres fermées {%-
else -%} {{states("sensor.fenetre_recap")}} {%- endif %}
- type: entity
entity: sensor.elec_yesterday_price
icon: mdi:lightning-bolt
- type: template
entity: sensor.since_last_motion
icon: >-
{% if is_state("sensor.since_last_motion", "0") -%}
mdi:motion-sensor {%-
else -%} mdi:motion-sensor-off {%- endif %}
icon_color: |-
{% if is_state("sensor.since_last_motion", "0") -%} red {%-
else -%} green {%- endif %}
content: |-
{% if is_state("sensor.since_last_motion", "0") -%} {%-
else -%} {{ states('sensor.since_last_motion') }}
min {%- endif %}
- type: entity
entity: vacuum.xiaomi_vacuum_cleaner
name: Henry
- type: entity
entity: sensor.moon_phases
content_info: state
icon: mdi:moon-waxing-crescent
use_entity_picture: true
alignment: center
- type: custom:mushroom-title-card
title: Information du jour
- type: markdown
content: >
Nous fêtons les :
**{{states.calendar.fetes_des_prenoms.attributes.message }}**
Coût éléctricité hier : **{{ states('sensor.elec_yesterday_price') }}
€**
{% if states("sensor.pollens_63") != "nul" -%} Pollen :
**{{states('sensor.pollens_63')[0]|upper}}{{states('sensor.pollens_63')[1:]}}**
{%- endif %}
{{ states('sensor.savoir_scrape') }}
style:
.: |
ha-card {
# background-color: transparent !important;
box-shadow: none !important;
}
ha-markdown:
$: |
h1 {
font-size: 30px;
font-style: bold;
#text-align: center;
font-weight: bolder;
letter-spacing: '-0.01em';
}
h2 {
font-size: 25px;
font-style: bold;
#text-align: center;
font-weight: lighter;
letter-spacing: '-0.01em';
}
h3 {
font-size: 20px;
font-weight: lighter;
font-style: italic;
text-align: center;
letter-spacing: '-0.01em';
}
- type: custom:mushroom-title-card
title: Lumières
- type: horizontal-stack
cards:
- type: custom:mushroom-light-card
entity: light.lights_salon
show_brightness_control: true
use_light_color: true
show_color_control: false
collapsible_controls: true
tap_action:
action: navigate
navigation_path: /lovelace-test/3
hold_action:
action: toggle
double_tap_action:
action: toggle
icon: hue:room-living
layout: vertical
name: Salon
- type: custom:mushroom-light-card
show_brightness_control: false
use_light_color: true
show_color_control: false
collapsible_controls: true
tap_action:
action: navigate
navigation_path: /lovelace-test/cuisine
icon: hue:room-kitchen
entity: light.lights_cuisine
layout: vertical
hold_action:
action: toggle
double_tap_action:
action: toggle
name: Cuisine
- type: horizontal-stack
cards:
- type: custom:mushroom-light-card
entity: light.lights_entree
show_brightness_control: true
use_light_color: true
show_color_control: false
collapsible_controls: true
show_color_temp_control: false
tap_action:
action: navigate
navigation_path: /lovelace-test/1
hold_action:
action: toggle
double_tap_action:
action: toggle
icon: hue:room-front-door
layout: vertical
name: Entrée
- type: custom:mushroom-light-card
show_brightness_control: true
use_light_color: true
show_color_control: false
collapsible_controls: true
tap_action:
action: navigate
navigation_path: /lovelace-test/4
icon: hue:room-stairs
entity: light.lights_escalier
layout: vertical
hold_action:
action: toggle
double_tap_action:
action: toggle
name: Escalier
- type: horizontal-stack
cards:
- type: custom:mushroom-light-card
show_brightness_control: true
use_light_color: true
show_color_control: false
collapsible_controls: true
icon: hue:room-bedroom
entity: light.chambre
tap_action:
action: navigate
navigation_path: /lovelace-test/2
hold_action:
action: toggle
double_tap_action:
action: toggle
layout: vertical
- type: custom:mushroom-light-card
entity: light.chambre_agathe
show_brightness_control: true
use_light_color: true
show_color_control: false
show_color_temp_control: false
collapsible_controls: true
icon: hue:room-kids
tap_action:
action: navigate
navigation_path: /lovelace-test/chambre-agathe
hold_action:
action: toggle
double_tap_action:
action: toggle
layout: vertical
- type: horizontal-stack
cards:
- type: custom:mushroom-light-card
show_brightness_control: false
use_light_color: true
show_color_control: false
collapsible_controls: true
icon: mdi:shower
tap_action:
action: toggle
hold_action:
action: toggle
double_tap_action:
action: toggle
layout: vertical
name: 'SDB Étage '
entity: light.lights_sdb_etage
- type: custom:mushroom-light-card
show_brightness_control: false
use_light_color: false
show_color_control: false
show_color_temp_control: false
collapsible_controls: true
icon: mdi:shower-head
tap_action:
action: toggle
hold_action:
action: toggle
double_tap_action:
action: toggle
name: SDB Bas
layout: vertical
entity: light.lights_sdb_bas
- type: conditional
conditions:
- entity: sensor.light_recap
state_not: Toutes les lumières sont éteintes
card:
type: horizontal-stack
cards:
- type: conditional
conditions:
- entity: sensor.light_recap
state_not: 0 lampes sont allumées
card:
type: entities
entities:
- type: custom:auto-entities
name: Lumières
filter:
include:
- domain: light
exclude:
- state: 'off'
- state: unavailable
- attributes:
is_hue_group: true
- name: Lights *
show_empty: false
unique: true
card:
type: custom:fold-entity-row
head:
entity: sensor.light_recap
icon: mdi:lamp
name: Lumières
collapse: 4
- type: custom:mushroom-title-card
title: Température
- type: horizontal-stack
cards:
- type: custom:mushroom-entity-card
entity: sensor.netatmo_maison_salon_temperature
layout: vertical
fill_container: false
primary_info: name
name: Salon
- type: custom:mushroom-entity-card
entity: sensor.netatmo_maison_salon_chambre_temperature
layout: vertical
fill_container: false
primary_info: name
name: Chambre
- type: custom:mushroom-entity-card
entity: sensor.netatmo_maison_salon_agathe_temperature
layout: vertical
fill_container: false
primary_info: name
name: Agathe
- type: horizontal-stack
cards:
- type: custom:mushroom-entity-card
entity: sensor.netatmo_maison_salon_exterieur_temperature
layout: vertical
fill_container: false
primary_info: name
name: Exterieur
- type: custom:mushroom-entity-card
entity: sensor.netatmo_maison_salon_bureau_temperature
layout: vertical
fill_container: false
primary_info: name
name: Bureau
- type: custom:mushroom-entity-card
entity: sensor.temperature_ble_sdb
layout: vertical
fill_container: false
primary_info: name
name: SDB
- type: horizontal-stack
cards:
- type: custom:mushroom-entity-card
entity: sensor.temperature_ble_cuisine
layout: vertical
fill_container: false
primary_info: name
name: Cuisine
- type: custom:mushroom-entity-card
entity: sensor.temperature_ble_hall
layout: vertical
fill_container: false
primary_info: name
name: Hall
- type: custom:mushroom-entity-card
entity: sensor.temperature_ble_entree
layout: vertical
fill_container: false
primary_info: name
name: Entrée
- type: custom:mushroom-title-card
title: Volets
alignment: start
- type: horizontal-stack
cards:
- type: custom:mushroom-cover-card
entity: cover.salon_1
show_position_control: true
show_buttons_control: true
secondary_info: none
- type: custom:mushroom-cover-card
entity: cover.salon_2
show_position_control: true
show_buttons_control: true
secondary_info: none
- type: horizontal-stack
cards:
- type: custom:mushroom-cover-card
entity: cover.cuisine
show_position_control: true
show_buttons_control: true
secondary_info: none
- type: custom:mushroom-cover-card
entity: cover.bureau
show_position_control: true
show_buttons_control: true
secondary_info: none
- type: custom:mushroom-title-card
title: Camera
- type: vertical-stack
cards:
- type: horizontal-stack
cards:
- show_name: false
show_state: false
type: picture-entity
camera_image: camera.salon_sd
camera_view: live
entity: camera.salon_sd
- show_state: false
show_name: false
camera_view: live
type: picture-entity
camera_image: camera.chambre_agathe_sd
entity: camera.chambre_agathe_sd
- type: horizontal-stack
cards:
- entity: camera.netatmo_welcom
show_name: false
show_state: false
type: picture-entity
camera_view: live
aspect_ratio: 48%
- entity: camera.nesthub
show_name: false
show_state: false
type: picture-entity
camera_image: camera.nesthub
camera_view: live
- type: custom:mushroom-title-card
title: Clim
name: Test
- type: horizontal-stack
cards:
- type: custom:mushroom-climate-card
entity: climate.rdc
show_temperature_control: true
collapsible_controls: true
hvac_modes:
- heat
- auto
- 'off'
secondary_info: state
tap_action:
action: call-service
service: climate.set_hvac_mode
data:
hvac_mode: 'off'
target:
entity_id: climate.rdc
hold_action:
action: call-service
service: climate.set_temperature
data:
target_temp_high: 20.5
target_temp_low: 18.5
hvac_mode: heat
target:
entity_id: climate.rdc
- type: custom:mushroom-climate-card
entity: climate.etage
show_temperature_control: true
collapsible_controls: true
hvac_modes:
- heat
- auto
- 'off'
secondary_info: state
- theme: Backend-selected
subview: true
icon: hue:room-front-door
title: 'Entrée '
badges: []
cards:
- type: horizontal-stack
cards:
- type: custom:mushroom-light-card
entity: light.entree_plafond
fill_container: true
layout: vertical
use_light_color: true
show_brightness_control: true
collapsible_controls: true
secondary_info: none
- type: custom:mushroom-light-card
entity: light.hue_go_entree
icon: hue:go
layout: vertical
fill_container: true
use_light_color: true
show_brightness_control: true
collapsible_controls: true
secondary_info: none
- theme: Backend-selected
subview: true
title: 'Chambre '
icon: hue:room-bedroom
badges: []
cards:
- type: horizontal-stack
cards:
- type: custom:mushroom-light-card
entity: light.chambre_plafond
layout: vertical
fill_container: true
use_light_color: true
show_brightness_control: true
collapsible_controls: true
secondary_info: none
- type: custom:mushroom-light-card
entity: light.hue_lightstrip_lit
icon: hue:lightstrip
fill_container: true
layout: vertical
secondary_info: none
use_light_color: true
show_brightness_control: true
collapsible_controls: true
- theme: Backend-selected
icon: hue:room-living
subview: true
title: Salon
badges: []
cards:
- type: horizontal-stack
cards:
- type: custom:mushroom-light-card
layout: vertical
fill_container: true
use_light_color: true
show_brightness_control: true
show_color_temp_control: false
show_color_control: true
collapsible_controls: true
secondary_info: none
icon: hue:adore-mirror
entity: light.lumiere_indirecte
- type: custom:mushroom-light-card
layout: vertical
fill_container: true
use_light_color: true
show_brightness_control: true
show_color_control: true
collapsible_controls: true
secondary_info: none
icon: hue:play-bar-v-two-out
entity: light.hue_plays_group
- type: horizontal-stack
cards:
- type: custom:mushroom-light-card
entity: light.hue_go_canape
layout: vertical
fill_container: true
use_light_color: true
show_brightness_control: true
show_color_temp_control: false
show_color_control: true
collapsible_controls: true
secondary_info: none
icon: hue:go
- type: custom:mushroom-light-card
entity: light.hue_go_salon
layout: vertical
fill_container: true
use_light_color: true
show_brightness_control: true
show_color_control: true
collapsible_controls: true
secondary_info: none
icon: hue:go
- type: horizontal-stack
cards:
- type: custom:mushroom-light-card
layout: vertical
fill_container: true
use_light_color: true
show_brightness_control: true
show_color_temp_control: false
show_color_control: true
collapsible_controls: true
secondary_info: none
entity: light.hue_lightstrip_salon_meuble
icon: hue:lightstrip
- type: custom:mushroom-light-card
layout: vertical
fill_container: true
use_light_color: true
show_brightness_control: true
show_color_control: true
collapsible_controls: true
secondary_info: none
entity: light.lampadaire_enfants
icon: hue:beyond
- type: horizontal-stack
cards:
- type: custom:mushroom-light-card
layout: vertical
fill_container: true
use_light_color: true
show_brightness_control: true
show_color_temp_control: false
show_color_control: true
collapsible_controls: true
secondary_info: none
entity: light.salon_plafond
icon: hue:ceiling-beyond
- type: custom:mushroom-light-card
layout: vertical
fill_container: true
use_light_color: true
show_brightness_control: true
show_color_control: true
collapsible_controls: true
secondary_info: none
icon: hue:ceiling-beyond
entity: light.salle_a_manger_plafond
- type: horizontal-stack
cards:
- type: custom:mushroom-light-card
entity: light.wled_group
icon: hue:lightstrip-tv
fill_container: true
layout: vertical
use_light_color: true
show_brightness_control: true
show_color_control: true
collapsible_controls: true
- theme: Backend-selected
subview: true
title: Escalier
icon: hue:room-stairs
badges: []
cards:
- type: horizontal-stack
cards:
- type: custom:mushroom-light-card
entity: light.escalier_bas
fill_container: true
use_light_color: true
show_brightness_control: true
collapsible_controls: true
layout: vertical
secondary_info: none
- type: custom:mushroom-light-card
entity: light.escalier_haut
layout: vertical
use_light_color: true
show_brightness_control: true
collapsible_controls: true
secondary_info: none
- type: horizontal-stack
cards:
- type: custom:mushroom-light-card
entity: light.hue_lightstrip_hall
layout: vertical
fill_container: true
use_light_color: true
show_brightness_control: true
collapsible_controls: true
icon: hue:lightstrip
secondary_info: none
- type: custom:mushroom-light-card
entity: light.hall_etage
icon: hue:bulb-filament-a19-hung
fill_container: true
layout: vertical
use_light_color: true
show_brightness_control: true
collapsible_controls: true
secondary_info: none
- theme: Backend-selected
title: Chambre Agathe
path: chambre-agathe
icon: hue:room-kids
subview: true
badges: []
cards:
- type: horizontal-stack
cards:
- type: custom:mushroom-light-card
entity: light.agathe_plafond
fill_container: true