-
Notifications
You must be signed in to change notification settings - Fork 1
/
lovelace.yaml
1944 lines (1944 loc) · 65.1 KB
/
lovelace.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
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: Alex Home
views:
- icon: 'mdi:floor-plan'
panel: true
path: overview
title: OVERVIEW
badges: []
cards:
- elements:
- entity: switch.chambre
image: /local/images/chambre.png
state_image:
'off': /local/images/chambre_off.png
'on': /local/images/chambre.png
style:
left: 30%
top: 64.5%
width: 24.5%
tap_action:
action: none
type: image
- entity: switch.chambre
image: /local/images/garage_off.png
style:
left: 67%
top: 16.8%
width: 31.5%
tap_action:
action: none
type: image
- entity: switch.sdb
image: /local/images/sdb.png
state_image:
'off': /local/images/sdb_off.png
'on': /local/images/sdb.png
style:
left: 30%
top: 13.5%
width: 24.5%
tap_action:
action: none
type: image
- entity: light.yeelight_color1_7811dc6a9651
image: /local/images/couloir_bas.png
state_image:
'off': /local/images/couloir_bas_off.png
'on': /local/images/couloir_bas.png
style:
left: 46.8%
top: 54.1%
width: 9.2%
tap_action:
action: none
type: image
- entity: light.yeelight_color2_7c49eb157ed5
image: /local/images/couloir_haut.png
state_image:
'off': /local/images/couloir_haut_off.png
'on': /local/images/couloir_haut.png
style:
left: 46.8%
top: 20.8%
width: 8.7%
tap_action:
action: none
type: image
- entity: switch.cuisine1
image: /local/images/salon_haut.png
state_image:
'off': /local/images/salon_haut_off.png
'on': /local/images/salon_haut.png
style:
left: 67%
top: 44%
width: 32.5%
tap_action:
action: none
type: image
- entity: switch.plug_158d0001a5d465
image: /local/images/salon_bas.png
state_image:
'off': /local/images/salon_bas_off.png
'on': /local/images/salon_bas.png
style:
left: 67%
top: 79.2%
width: 32.5%
tap_action:
action: none
type: image
- entity: switch.chiottelum
image: /local/images/chiotte.png
state_image:
'off': /local/images/chiotte_off.png
'on': /local/images/chiotte.png
style:
left: 46.5%
top: 77%
width: 9%
tap_action:
action: none
type: image
- entity: switch.chambredoud
image: /local/images/chambre_doudou.png
state_image:
'off': /local/images/chambre_doudou_off.png
'on': /local/images/chambre_doudou.png
style:
left: 30%
top: 34%
width: 24.5%
tap_action:
action: none
type: image
- entity: switch.tv_composite
image: /local/images/tv.png
state_image:
'off': /local/images/tv_off.png
'on': /local/images/tv.png
style:
left: 58%
top: 68.5%
width: 6%
tap_action:
action: toggle
type: image
- entity: light.yeelight_strip2_04cf8c7acfe8
image: /local/images/ledstrip.png
state_image:
'off': /local/images/ledstrip_off.png
playing: /local/images/ledstrip.png
style:
left: 28%
top: 23.5%
width: 18%
tap_action:
action: toggle
title: ledstrip bureau doudou
type: image
- entity: light.yeelight_strip1_7811dc66e549
image: /local/images/ledstrip.png
state_image:
'off': /local/images/ledstrip_off.png
playing: /local/images/ledstrip.png
style:
left: 73%
top: 30.3%
width: 18%
tap_action:
action: toggle
title: ledstrip cuisine
type: image
- entity: light.yeelight_strip1_7811dca22953
image: /local/images/ledstrip_v.png
state_image:
'off': /local/images/ledstrip_v_off.png
playing: /local/images/ledstrip_v.png
style:
left: 54%
top: 69%
width: 1.5%
tap_action:
action: toggle
title: ledstrip tv
type: image
- entity: binary_sensor.door_window_sensor_158d0001ab1b67
image: /local/images/door_o_b.png
state_image:
'off': /local/images/door_c_b.png
'on': /local/images/door_o_b.png
style:
left: 46.5%
top: 66.9%
width: 5.6%
title: porte chiotte
type: image
- entity: binary_sensor.door_window_sensor_158d0001d8526a
image: /local/images/door_o_l.png
state_image:
'off': /local/images/door_c_l.png
'on': /local/images/door_o_l.png
style:
left: 53.7%
top: 22.2%
width: 5.6%
title: porte garage
type: image
- entity: binary_sensor.door_window_sensor_158d000239438b
image: /local/images/door_o_l.png
state_image:
'off': /local/images/door_c_l.png
'on': /local/images/door_o_l.png
style:
left: 85.2%
top: 54.7%
width: 5.6%
title: fenetre terasse 2
type: image
- entity: binary_sensor.door_window_sensor_158d0001dbd24f
image: /local/images/door_o_l.png
state_image:
'off': /local/images/door_c_l.png
'on': /local/images/door_o_l.png
style:
left: 85.2%
top: 45.2%
width: 5.6%
title: fenetre terasse
type: image
- entity: binary_sensor.door_window_sensor_158d0001de78e5
image: /local/images/door_o_r.png
state_image:
'off': /local/images/door_c_r.png
'on': /local/images/door_o_r.png
style:
left: 15%
top: 15.7%
width: 5.6%
title: fenetre salle de bains
type: image
- entity: binary_sensor.door_window_sensor_158d0002391048
image: /local/images/door_o_r.png
state_image:
'off': /local/images/door_c_r.png
'on': /local/images/door_o_r.png
style:
left: 15%
top: 39.7%
width: 5.6%
title: fenetre chambre doudou
type: image
- entity: binary_sensor.door_window_sensor_158d00023949af
image: /local/images/door_o_r.png
state_image:
'off': /local/images/door_c_r.png
'on': /local/images/door_o_r.png
style:
left: 15%
top: 57.4%
width: 5.6%
title: fenetre chambre
type: image
- entity: binary_sensor.door_window_sensor_158d0001ab5aaa
image: /local/images/door_o_t.png
state_image:
'off': /local/images/door_c_t.png
'on': /local/images/door_o_t.png
style:
left: 46.4%
top: 9.1%
width: 5.6%
title: porte entrée
type: image
- entity: binary_sensor.door_window_sensor_158d000272f13c
image: /local/images/door_o_r2.png
state_image:
'off': /local/images/door_c_r2.png
'on': /local/images/door_o_r2.png
style:
left: 39.7%
top: 16.5%
width: 5.6%
title: porte salle de bains
type: image
- entity: cover.garage_door
image: /local/images/door_u_garage.png
state_image:
closed: /local/images/door_c_garage.png
open: /local/images/door_o_garage.png
unknown: /local/images/door_u_garage.png
style:
left: 86.6%
top: 16.5%
width: 8.6%
title: porte garage
type: image
- entity: camera.dafang1
icon: 'mdi:cctv'
style:
'--iron-icon-height': 40px
'--iron-icon-width': 40px
left: 82%
top: 30.5%
title: camera dafang
type: icon
- camera_image: null
entity: camera.frigo
icon: 'mdi:cctv'
style:
'--iron-icon-height': 40px
'--iron-icon-width': 40px
left: 52%
top: 30.5%
title: camera frigo
type: icon
- entity: switch.chambre
style:
'--iron-icon-height': 60px
'--iron-icon-width': 60px
left: 28%
top: 50%
tap_action:
action: toggle
title: lumiere chambre
type: state-icon
- entity: switch.chambredoud
style:
'--iron-icon-height': 60px
'--iron-icon-width': 60px
left: 28%
top: 34%
tap_action:
action: toggle
title: lumiere chambre doudou
type: state-icon
- entity: switch.cuisine1
style:
'--iron-icon-height': 50px
'--iron-icon-width': 50px
left: 55%
top: 40%
tap_action:
action: toggle
title: lumiere cuisine
type: state-icon
- entity: switch.cuisine1
style:
'--iron-icon-height': 50px
'--iron-icon-width': 50px
left: 65%
top: 40%
tap_action:
action: toggle
title: lumiere cuisine
type: state-icon
- entity: switch.appliquesalon
style:
'--iron-icon-height': 30px
'--iron-icon-width': 30px
left: 52.5%
top: 69%
tap_action:
action: toggle
title: lumiere applique salon
type: state-icon
- entity: switch.lustresalon
style:
'--iron-icon-height': 80px
'--iron-icon-width': 80px
left: 69%
top: 69%
tap_action:
action: toggle
title: lumiere lustre salon
type: state-icon
- entity: switch.cuisine2
style:
'--iron-icon-height': 50px
'--iron-icon-width': 50px
left: 75%
top: 40%
tap_action:
action: toggle
title: lumiere cuisine
type: state-icon
- entity: switch.chiottelum
style:
'--iron-icon-height': 45px
'--iron-icon-width': 45px
left: 46.3%
top: 74%
tap_action:
action: toggle
title: lumiere chiotte
type: state-icon
- entity: switch.plug_158d0001de56c2
style:
'--iron-icon-height': 30px
'--iron-icon-width': 30px
left: 69%
top: 35%
tap_action:
action: toggle
title: spots cuisine
type: state-icon
- entity: switch.plug_158d0001de56c2
style:
'--iron-icon-height': 30px
'--iron-icon-width': 30px
left: 77%
top: 35%
tap_action:
action: toggle
title: spots cuisine
type: state-icon
- entity: light.yeelight_color2_7c49eb157ed5
style:
'--iron-icon-height': 60px
'--iron-icon-width': 60px
left: 45%
top: 17%
tap_action:
action: toggle
title: lampe couloir entrée
type: state-icon
- entity: switch.sdb
style:
'--iron-icon-height': 60px
'--iron-icon-width': 60px
left: 28%
top: 10%
tap_action:
action: toggle
title: lampe salle de bains
type: state-icon
- entity: light.yeelight_color1_7811dc6a9651
style:
'--iron-icon-height': 60px
'--iron-icon-width': 60px
left: 45%
top: 45%
tap_action:
action: toggle
title: lampe couloir
type: state-icon
- entity: switch.ambiance_salon
style:
'--iron-icon-height': 40px
'--iron-icon-width': 40px
left: 82.5%
top: 60%
tap_action:
action: toggle
title: lumières salon
type: state-icon
- entity: switch.ambiance_salon
style:
'--iron-icon-height': 40px
'--iron-icon-width': 40px
left: 82.5%
top: 75%
tap_action:
action: toggle
title: lumières salon
type: state-icon
- entity: switch.ambiance_salon
style:
'--iron-icon-height': 40px
'--iron-icon-width': 40px
left: 52.5%
top: 80%
tap_action:
action: toggle
title: lumières salon
type: state-icon
- entity: light.bedside_philips
style:
'--iron-icon-height': 45px
'--iron-icon-width': 45px
left: 33%
top: 70%
title: lampe de chevet
type: state-icon
- entity: light.yeelight_bslamp1_7811dc904840
style:
'--iron-icon-height': 45px
'--iron-icon-width': 45px
left: 20%
top: 64%
title: lampe de chevet 2
type: state-icon
- entity: switch.chiotteventil
style:
'--iron-icon-height': 35px
'--iron-icon-width': 35px
left: 44%
top: 80%
tap_action:
action: toggle
title: Ventilation Chiotte
type: state-icon
- entity: switch.plug_158d0001a5d465
style:
'--iron-icon-height': 42px
'--iron-icon-width': 42px
left: 72.1%
top: 78.9%
tap_action:
action: toggle
title: Lampadaire
type: state-icon
- entity: binary_sensor.motion_sensor_158d0001e47f52
style:
'--iron-icon-height': 20px
'--iron-icon-width': 20px
'--paper-item-icon-active-color': red
'--paper-item-icon-color': lightgreen
left: 19%
top: 9%
title: Mouvement Salle de bains
type: state-icon
- entity: binary_sensor.motion_sensor_158d0001e47d34
style:
'--iron-icon-height': 20px
'--iron-icon-width': 20px
'--paper-item-icon-active-color': red
'--paper-item-icon-color': lightgreen
left: 44%
top: 12%
title: Mouvement Entrée
type: state-icon
- entity: binary_sensor.motion_sensor_158d0001ddca38
style:
'--iron-icon-height': 20px
'--iron-icon-width': 20px
'--paper-item-icon-active-color': red
'--paper-item-icon-color': lightgreen
left: 44%
top: 63%
title: Mouvement Couloir
type: state-icon
- entity: binary_sensor.motion_sensor_158d0001b7542d
style:
'--iron-icon-height': 20px
'--iron-icon-width': 20px
'--paper-item-icon-active-color': red
'--paper-item-icon-color': lightgreen
left: 80%
top: 85%
type: state-icon
- entity: binary_sensor.motion_sensor_158d0001d6675f
style:
'--iron-icon-height': 20px
'--iron-icon-width': 20px
'--paper-item-icon-active-color': red
'--paper-item-icon-color': lightgreen
left: 44%
top: 75%
title: mouvement chiotte
type: state-icon
- entity: vacuum.xiaomi_vacuum_cleaner
style:
'--iron-icon-height': 40px
'--iron-icon-width': 40px
left: 54%
top: 54%
type: state-icon
- entity: sensor.yr_temperature
prefix: 'YR: '
style:
font-size: 15px
left: 91%
top: 32%
title: température yr
type: state-label
- entity: sensor.temperature_158d000272e88d
prefix: 'Mesurée: '
style:
font-size: 15px
left: 91%
top: 34%
title: température exterieure
type: state-label
- entity: weather.dark_sky
style:
left: 91%
top: 45%
title: dark sky
type: state-badge
- entity: sensor.temperature_158d0001b96127
style:
font-size: 15px
left: 35%
top: 41%
title: température chanmbre Doudou
type: state-label
- entity: sensor.temperature_158d0001b8f1b1
style:
font-size: 15px
left: 55%
top: 46%
title: température salon
type: state-label
- entity: sensor.temperature_158d0001b92bcc
style:
font-size: 15px
left: 39%
top: 50%
title: température chambre
type: state-label
- entity: sensor.temperature_158d00022734f8
style:
font-size: 15px
left: 25%
top: 7%
title: température salle de bains
type: state-label
- entity: sensor.temperature_158d000273a1ce
style:
font-size: 15px
left: 58%
top: 31%
title: température frigo
type: state-label
- entity: sensor.temperature_158d0002c8bc1c
style:
font-size: 15px
left: 58%
top: 9%
title: température garage
type: state-label
- entity: sensor.humidity_158d0001b96127
style:
font-size: 15px
left: 35%
top: 43%
title: humidité chanmbre Doudou
type: state-label
- entity: sensor.humidity_158d0001b8f1b1
style:
font-size: 15px
left: 55%
top: 48%
title: humidité salon
type: state-label
- entity: sensor.humidity_158d0001b92bcc
style:
font-size: 15px
left: 39%
top: 52%
title: humidité chambre
type: state-label
- entity: sensor.humidity_158d00022734f8
style:
font-size: 15px
left: 25%
top: 9%
title: humidité salle de bains
type: state-label
- entity: sensor.humidity_158d000273a1ce
style:
font-size: 15px
left: 58%
top: 33%
title: humidité frigo
type: state-label
- entity: sensor.humidity_158d0002c8bc1c
style:
font-size: 15px
left: 58%
top: 11%
title: humidité garage
type: state-label
- entity: input_boolean.mode_present
state_image:
'off': /local/images/away.png
'on': /local/images/home.png
style:
left: 6%
top: 10%
width: 10%
tap_action:
action: toggle
title: mode présent/absent
type: image
- entity: switch.terasse
style:
'--iron-icon-height': 60px
'--iron-icon-width': 60px
left: 84%
top: 67%
tap_action:
action: toggle
title: lumiere terasse
type: state-icon
- entity: input_boolean.mode_waf
state_image:
'off': /local/images/waf_off.png
'on': /local/images/waf.png
style:
left: 6%
top: 28%
width: 9%
tap_action:
action: toggle
title: mode diana
type: image
- entity: input_boolean.mode_waf
state_image:
'off': /local/images/waf_off.png
'on': /local/images/waf.png
style:
left: 6%
top: 28%
width: 9%
tap_action:
action: toggle
title: mode diana
type: image
- entity: input_boolean.mode_nuit
state_image:
'off': /local/images/day.png
'on': /local/images/night.png
style:
left: 6%
top: 45%
width: 9%
tap_action:
action: toggle
title: mode nuit
type: image
- entity: input_boolean.heating
state_image:
'off': /local/images/heating_off.png
'on': /local/images/heating_on.png
style:
left: 6%
top: 60%
width: 9%
tap_action:
action: toggle
title: chauffage
type: image
- entity: climate.chambre_alex
style:
'--iron-icon-height': 40px
'--iron-icon-width': 40px
left: 20%
top: 50%
title: radiateur chambre
type: state-icon
- entity: climate.salon
style:
'--iron-icon-height': 40px
'--iron-icon-width': 40px
left: 80%
top: 92%
title: radiateur salon
type: state-icon
- entity: climate.chambre_doudou
style:
'--iron-icon-height': 40px
'--iron-icon-width': 40px
left: 40%
top: 26%
title: radiateur doudou
type: state-icon
- entity: climate.salle_de_bains
style:
'--iron-icon-height': 40px
'--iron-icon-width': 40px
left: 20%
top: 19%
title: radiateur sdb
type: state-icon
- entity: climate.cuisine
style:
'--iron-icon-height': 40px
'--iron-icon-width': 40px
left: 80%
top: 38%
title: radiateur cuisine
type: state-icon
- entity: input_boolean.mode_douche
state_image:
'off': /local/images/shower_off.png
'on': /local/images/shower_on.png
style:
left: 38%
top: 10%
width: 4.5%
tap_action:
action: toggle
title: mode douche
type: image
- entity: input_boolean.home_office
state_image:
'off': /local/images/homeoffice_off.png
'on': /local/images/homeoffice_on.png
style:
left: 6%
top: 80%
width: 4.5%
tap_action:
action: toggle
title: mode confinement
type: image
image: /local/images/floorplan.png
type: picture-elements
- badges: []
cards:
- elements:
- entity: switch.appliquesalon
image: /local/images/salon/applique2.png
state_image:
'off': /local/images/salon/applique2_off.png
'on': /local/images/salon/applique2.png
style:
left: 30.55%
top: 31.9%
width: 14.5%
tap_action:
action: toggle
type: image
- entity: switch.couloir
image: /local/images/salon/couloir.png
state_image:
'off': /local/images/salon/couloir_off.png
'on': /local/images/salon/couloir.png
style:
left: 44.45%
top: 36.3%
width: 6.2%
tap_action:
action: toggle
type: image
- entity: switch.lustresalon
image: /local/images/salon/lustre_on.png
state_image:
'off': /local/images/salon/lustre_off.png
'on': /local/images/salon/lustre_on.png
style:
left: 49.25%
top: 13.9%
width: 20.2%
tap_action:
action: toggle
type: image
- entity: switch.cuisine1
image: /local/images/salon/cuisine1.png
state_image:
'off': /local/images/salon/cuisine1_off.png
'on': /local/images/salon/cuisine1.png
style:
left: 68.35%
top: 30.5%
width: 15%
tap_action:
action: toggle
type: image
- entity: switch.cuisine2
image: /local/images/salon/cuisine2.png
state_image:
'off': /local/images/salon/cuisine2_off.png
'on': /local/images/salon/cuisine2.png
style:
left: 97.7%
top: 16.8%
width: 4.5%
tap_action:
action: toggle
type: image
- entity: switch.plug_158d0001a5d465
image: /local/images/salon/lampadaire.png
state_image:
'off': /local/images/salon/lampadaire_off.png
'on': /local/images/salon/lampadaire.png
style:
left: 8.4%
top: 16.7%
width: 16.9%
tap_action:
action: toggle
type: image
- entity: switch.ambiance_salon
image: /local/images/salon/ambiance.png
state_image:
'off': /local/images/salon/ambiance_off.png
'on': /local/images/salon/ambiance.png
style:
left: 14.1%
top: 52.5%
width: 7.2%
tap_action:
action: toggle
type: image
- entity: switch.plan_travail
image: /local/images/salon/plantravailfull.png
state_image:
'off': /local/images/salon/plantravailfull.png
'on': /local/images/salon/plantravailfull_on.png
style:
left: 89.6%
top: 37.5%
width: 21.05%
tap_action:
action: toggle
type: image
- entity: switch.tv_composite
image: /local/images/salon/tv_on.png
state_image:
'off': /local/images/salon/tv.png
'on': /local/images/salon/tv_on.png
style:
left: 31.5%
top: 48.2%
width: 15%
tap_action:
action: toggle
type: image
image: /local/images/Salon2.jpg
type: picture-elements
panel: true
path: salon
title: Salon
- badges: []
cards:
- card:
title: Lumières Allumées
type: entities
filter:
include:
- entity_id: light.*
state: 'on'
type: 'custom:auto-entities'
- card:
title: Personnes présentes
type: glance
filter:
include:
- entity_id: device_tracker.*
state: home
type: 'custom:auto-entities'
- card:
title: Interrupteurs Allumées
type: entities
filter:
exclude:
- entity_id: switch.tv_ch
- entity_id: switch.sound_bar_vol
- entity_id: switch.synology_home_mode
- entity_id: switch.dafang*
- entity_id: switch.tv
include:
- entity_id: switch.*
state: 'on'
type: 'custom:auto-entities'
- card:
title: Portes/fenêtres ouvertes
type: glance
filter:
include:
- entity_id: binary_sensor.door_window_sensor*
state: 'on'
type: 'custom:auto-entities'
- card:
title: Batteries inférieures a 33%
type: glance
filter:
include:
- entity_id: sensor.bat*
state: < 30
type: 'custom:auto-entities'
- card:
title: Radiateurs Allumés
type: glance
filter:
include:
- entity_id: sensor.*_heating*
state: '> 0'
type: 'custom:auto-entities'
title: DYNAMIC
- badges:
- entity: binary_sensor.floorplan
- entity: binary_sensor.vibration_158d0002a6e053
- entity: device_tracker.desktopdrhclh3
- entity: device_tracker.iphone_2
- entity: device_tracker.samsung_galaxy_s7
- entity: sensor.coordination_158d0002a6e053
- entity: sensor.yr_wind_speed
- entity: sensor.date_time
- entity: sensor.garage_door_since
- entity: sensor.sigi
- entity: sensor.tilt_angle_158d0002a6e053
- entity: sensor.bed_activity_158d0002a6e053
- entity: sensor.garage_door_status
- entity: sensor.illumination_34ce00fb5df0
cards:
- entities:
- entity: switch.chambre
- entity: switch.chambredoud
- entity: switch.chiottelum
- entity: switch.cuisine1
- entity: switch.cuisine2
- entity: switch.plug_158d0001de56c2
- entity: light.yeelight_strip1_7811dc66e549
- entity: light.yeelight_color2_7c49eb157ed5
- entity: light.yeelight_color2_7c49eb157a7e
- entity: light.yeelight_color1_7811dc6a9651
- entity: light.yeelight_bslamp1_7811dc904840
- entity: group.light_salon
- entity: switch.plug_158d0001a5d465
- entity: light.bedside_philips
- entity: light.yeelight_strip2_04cf8c7acfe8
show_header_toggle: true
title: Contrôle lumieres
type: entities
- entities:
- entity: light.gateway_light_34ce00fb5df0
- entity: light.yeelight_color2_7c49eb157ed5