-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathui-lovelace-export.yaml
1740 lines (1729 loc) · 45.7 KB
/
ui-lovelace-export.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: Home Mautomation
views:
- badges: []
cards:
- cards:
- card:
entities:
- entity: sensor.dar_voorkant_morgen
icon: mdi:trash-can-outline
name: Afval morgen
type: entities
conditions:
- entity: sensor.dar_voorkant_morgen
state_not: Geen
- entity: sensor.dar_voorkant_morgen
state_not: unknown
type: conditional
- card:
entities:
- entity: sensor.dar_voorkant_vandaag
icon: mdi:trash-can-outline
name: Afval vandaag
type: entities
conditions:
- entity: sensor.dar_voorkant_vandaag
state_not: Geen
- entity: sensor.dar_voorkant_vandaag
state_not: unknown
type: conditional
- card:
entities:
- entity: sensor.dar_zijkant_morgen
icon: mdi:trash-can-outline
name: Papier zijkant morgen
type: entities
conditions:
- entity: sensor.dar_zijkant_morgen
state_not: Geen
- entity: sensor.dar_zijkant_morgen
state_not: unknown
type: conditional
- card:
entities:
- entity: sensor.dar_zijkant_vandaag
icon: mdi:trash-can-outline
name: Papier zijkant vandaag
type: entities
conditions:
- entity: sensor.dar_zijkant_vandaag
state_not: Geen
- entity: sensor.dar_zijkant_vandaag
state_not: unknown
type: conditional
type: vertical-stack
- cards:
- cards:
- entity: switch.gui_power_up
icon_height: 20px
tap_action:
action: call-service
service: switch.turn_on
service_data:
entity_id: switch.gui_power_up
theme: other-button
type: entity-button
- entity: switch.gui_power_down
icon_height: 20px
tap_action:
action: call-service
confirmation:
text: Zeker weten?
service: switch.turn_on
service_data:
entity_id: switch.gui_power_down
theme: other-button
type: entity-button
type: horizontal-stack
- content: WOONKAMER
theme: separator
type: markdown
- cards:
- entity: scene.woonkamer_bingen
hold_action:
action: more-info
icon: mdi:eye-outline
icon_height: 30px
name: Bingen
tap_action:
action: call-service
service: script.activate_scene
service_data:
area: woonkamer
scene: woonkamer_bingen
theme: light-button
type: entity-button
- entity: scene.woonkamer_klaprozen
hold_action:
action: more-info
icon: mdi:flower
icon_height: 30px
name: Klaprozen
tap_action:
action: call-service
service: script.activate_scene
service_data:
area: woonkamer
scene: woonkamer_klaprozen
theme: light-button
type: entity-button
- entity: scene.woonkamer_feet_up
hold_action:
action: more-info
icon: mdi:foot-print
icon_height: 30px
name: Feet up
tap_action:
action: call-service
service: script.activate_scene
service_data:
area: woonkamer
scene: woonkamer_feet_up
theme: light-button
type: entity-button
type: horizontal-stack
- cards:
- card:
entity: switch.gui_terraslampjes
icon_height: 30px
tap_action:
action: toggle
theme: other-button
type: entity-button
conditions:
- entity: input_boolean.automatische_terraslampjes
state: 'off'
type: conditional
- card:
entity: switch.gui_kerst
hold_action:
action: call-service
service: switch.turn_on
service_data:
entity_id: switch.gui_kerst
icon_height: 30px
tap_action:
action: toggle
theme: other-button
type: entity-button
conditions:
- entity: binary_sensor.kerst_modus
state: 'on'
type: conditional
- card:
entity: switch.gui_woonkamer_ventilator
icon_height: 30px
tap_action:
action: toggle
theme: other-button
type: entity-button
conditions:
- entity: switch.gui_woonkamer_ventilator
state_not: unavailable
type: conditional
- entity: switch.gui_woonkamer_stroom
hold_action:
action: call-service
service: switch.turn_on
service_data:
entity_id: switch.gui_woonkamer_stroom
icon_height: 30px
tap_action:
action: toggle
theme: other-button
type: entity-button
- entity: switch.gui_woonkamer_licht
hold_action:
action: call-service
service: switch.turn_on
service_data:
entity_id: switch.gui_woonkamer_licht
icon_height: 30px
tap_action:
action: toggle
theme: other-button
type: entity-button
type: horizontal-stack
- content: KEUKEN
theme: separator
type: markdown
- cards:
- entity: scene.keuken_koken
icon: mdi:chef-hat
icon_height: 30px
name: Koken
tap_action:
action: call-service
service: script.activate_scene
service_data:
area: keuken
scene: keuken_koken
theme: light-button
type: entity-button
- entity: scene.keuken_gedimd
icon: mdi:weather-sunny
icon_height: 30px
name: Gedimd
tap_action:
action: call-service
service: script.activate_scene
service_data:
area: keuken
scene: keuken_gedimd
theme: light-button
type: entity-button
- entity: scene.keuken_automatisch_nacht
icon: mdi:weather-night
icon_height: 30px
name: Nachtlicht
tap_action:
action: call-service
service: script.activate_scene
service_data:
area: keuken
scene: keuken_automatisch_nacht
theme: light-button
type: entity-button
type: horizontal-stack
- cards:
- entity: switch.gui_koffiezetapparaat_stroom
icon_height: 30px
tap_action:
action: toggle
theme: other-button
type: entity-button
- entity: switch.gui_keuken_licht
hold_action:
action: call-service
service: switch.turn_on
service_data:
entity_id: switch.gui_keuken_licht
icon_height: 30px
tap_action:
action: toggle
theme: other-button
type: entity-button
type: horizontal-stack
- content: OVERIGE
theme: separator
type: markdown
- cards:
- entity: switch.gui_gang_licht
icon_height: 30px
tap_action:
action: toggle
theme: other-button
type: entity-button
- entity: switch.gui_hal_licht
icon_height: 30px
tap_action:
action: toggle
theme: other-button
type: entity-button
- entity: switch.gui_voordeur_buiten_licht
icon_height: 30px
tap_action:
action: toggle
theme: other-button
type: entity-button
type: horizontal-stack
- cards:
- entity: switch.gui_toilet_licht
icon_height: 30px
tap_action:
action: toggle
theme: other-button
type: entity-button
- entity: switch.gui_badkamer_licht
icon_height: 30px
tap_action:
action: toggle
theme: other-button
type: entity-button
- entity: switch.gui_slaapkamer_licht
icon_height: 30px
tap_action:
action: toggle
theme: other-button
type: entity-button
type: horizontal-stack
type: vertical-stack
icon: mdi:home
path: default_view
title: Home
- badges: []
cards:
- elements:
- entity: timer.woonkamer_recent
image: /local/transparent.png
state_image:
active: /local/beneden_v1/activiteit_woonkamer.png
style:
height: 100%
left: 50%
top: 50%
width: 100%
title: null
type: image
- entity: timer.keuken_recent
image: /local/transparent.png
state_image:
active: /local/beneden_v1/activiteit_keuken.png
style:
height: 100%
left: 50%
top: 50%
width: 100%
title: null
type: image
- entity: timer.gang_recent
image: /local/transparent.png
state_image:
active: /local/beneden_v1/activiteit_gang.png
style:
height: 100%
left: 50%
top: 50%
width: 100%
title: null
type: image
- entity: timer.trap_recent
image: /local/transparent.png
state_image:
active: /local/beneden_v1/activiteit_trap.png
style:
height: 100%
left: 50%
top: 50%
width: 100%
title: null
type: image
- entity: timer.toilet_recent
image: /local/transparent.png
state_image:
active: /local/beneden_v1/activiteit_toilet.png
style:
height: 100%
left: 50%
top: 50%
width: 100%
title: null
type: image
- entity: timer.hal_recent
image: /local/transparent.png
state_image:
active: /local/beneden_v1/activiteit_hal.png
style:
height: 100%
left: 50%
top: 50%
width: 100%
title: null
type: image
- entity: switch.gui_stekker_links_van_de_bank
style:
--iron-icon-height: 30px
--iron-icon-width: 30px
left: 15%
top: 68%
type: state-icon
- entity: switch.gui_tvkast_rechts_stroom
style:
--iron-icon-height: 30px
--iron-icon-width: 30px
left: 56%
top: 88%
type: state-icon
- entity: switch.gui_terraslampjes
icon: mdi:wall-sconce-flat
style:
--iron-icon-height: 30px
--iron-icon-width: 30px
left: 15%
top: 9%
tap_action:
action: toggle
type: state-icon
- entity: switch.gui_koffiezetapparaat_stroom
style:
--iron-icon-height: 30px
--iron-icon-width: 30px
left: 56%
top: 39%
tap_action:
action: toggle
type: state-icon
- conditions:
- entity: switch.gui_tvkast_links_stroom
state_not: unavailable
elements:
- entity: switch.gui_tvkast_links_stroom
style:
--iron-icon-height: 30px
--iron-icon-width: 30px
left: 56%
top: 66%
type: state-icon
type: conditional
- conditions:
- entity: switch.gui_kerstboom
state_not: unavailable
elements:
- entity: switch.gui_kerstboom
style:
--iron-icon-height: 30px
--iron-icon-width: 30px
left: 54.5%
top: 66%
tap_action:
action: toggle
type: state-icon
type: conditional
- conditions:
- entity: switch.gui_woonkamer_ventilator
state_not: unavailable
elements:
- entity: switch.gui_woonkamer_ventilator
style:
--iron-icon-height: 30px
--iron-icon-width: 30px
left: 54.3%
top: 66%
tap_action:
action: toggle
type: state-icon
type: conditional
- entity: light.kast_boven
icon: mdi:circle
style:
--iron-icon-height: 25px
--iron-icon-width: 25x
left: 15%
top: 77%
tap_action:
action: toggle
title: Boven
type: state-icon
- entity: light.kast_midden
icon: mdi:circle
style:
--iron-icon-height: 25px
--iron-icon-width: 25px
left: 15%
top: 83%
tap_action:
action: toggle
title: Midden
type: state-icon
- entity: light.kast_onder
icon: mdi:circle
style:
--iron-icon-height: 25px
--iron-icon-width: 25px
left: 15%
top: 89%
tap_action:
action: toggle
title: Onder
type: state-icon
- entity: light.leeslampje_bank
icon: mdi:track-light
style:
--iron-icon-height: 30px
--iron-icon-width: 30px
left: 17%
top: 86%
transform: rotate(180deg)
tap_action:
action: toggle
title: Leeslampje
type: state-icon
- entity: light.zon
icon: mdi:ceiling-light
style:
--iron-icon-height: 33px
--iron-icon-width: 33px
left: 32%
top: 90%
tap_action:
action: toggle
title: Zon
type: state-icon
- entity: light.staande_lamp
icon: mdi:floor-lamp
style:
--iron-icon-height: 45px
--iron-icon-width: 45px
left: 49%
top: 89%
tap_action:
action: toggle
title: Staande lamp
type: state-icon
- entity: light.achter_tv_strip
icon: mdi:led-strip-variant
style:
--iron-icon-height: 40px
--iron-icon-width: 40px
left: 55%
top: 74%
tap_action:
action: toggle
title: TV strip
type: state-icon
- entity: light.droogkap
icon: mdi:floor-lamp
style:
--iron-icon-height: 45px
--iron-icon-width: 45px
left: 17%
top: 59%
tap_action:
action: toggle
title: Droogkap
type: state-icon
- entity: switch.gui_vaaslamp_licht
style:
--iron-icon-height: 30px
--iron-icon-width: 30px
left: 17.5%
top: 44%
tap_action:
action: toggle
type: state-icon
- entity: light.achter_de_koelkast
icon: mdi:led-strip-variant
style:
--iron-icon-height: 40px
--iron-icon-width: 40px
left: 51%
top: 19%
tap_action:
action: toggle
title: Koelkast strip
type: state-icon
- conditions:
- entity: binary_sensor.heater_on
state: 'off'
elements:
- entity: binary_sensor.heater_on
icon: mdi:radiator-disabled
style:
--iron-icon-height: 35px
--iron-icon-width: 35px
left: 53%
top: 57%
type: state-icon
type: conditional
- conditions:
- entity: binary_sensor.heater_on
state: 'on'
elements:
- entity: binary_sensor.heater_on
icon: mdi:radiator
style:
--iron-icon-height: 35px
--iron-icon-width: 35px
left: 53%
top: 57%
type: state-icon
type: conditional
- conditions:
- entity: binary_sensor.iemand_komt_voor_binnen
state: 'on'
elements:
- entity: binary_sensor.iemand_komt_voor_binnen
style:
--iron-icon-height: 18px
--iron-icon-width: 18px
left: 64.4%
top: 98.3%
type: state-icon
type: conditional
- conditions:
- entity: binary_sensor.iemand_komt_achter_binnen
state: 'on'
elements:
- entity: binary_sensor.iemand_komt_achter_binnen
style:
--iron-icon-height: 18px
--iron-icon-width: 18px
left: 64%
top: 12%
type: state-icon
type: conditional
- conditions:
- entity: switch.settopbox
state_not: 'off'
elements:
- entity: switch.settopbox
style:
--iron-icon-height: 40px
--iron-icon-width: 40px
left: 45%
top: 79%
type: state-icon
type: conditional
- conditions:
- entity: media_player.sony_bravia_tv
state_not: 'off'
elements:
- entity: media_player.sony_bravia_tv
style:
--iron-icon-height: 40px
--iron-icon-width: 40px
left: 45%
top: 74%
type: state-icon
type: conditional
- conditions:
- entity: media_player.ps4
state: 'on'
elements:
- entity: media_player.ps4
style:
--iron-icon-height: 34px
--iron-icon-width: 34x
left: 45%
top: 67%
type: state-icon
type: conditional
- conditions:
- entity: sensor.telefoon
state_not: idle
elements:
- entity: sensor.telefoon
icon: mdi:phone
style:
--iron-icon-height: 32px
--iron-icon-width: 32x
left: 55%
top: 81%
type: state-icon
type: conditional
- entity: sensor.power_consumption
prefix: 'Verbruik: '
style:
font-size: 15px
left: 49%
top: 2%
type: state-label
- conditions:
- entity: binary_sensor.voordeur_buiten_beweging
state: 'on'
elements:
- entity: binary_sensor.voordeur_buiten_beweging
style:
--iron-icon-height: 25px
--iron-icon-width: 25px
left: 74%
top: 98%
type: state-icon
type: conditional
- conditions:
- entity: binary_sensor.woonkamer_beweging
state: 'on'
elements:
- entity: binary_sensor.woonkamer_beweging
style:
--iron-icon-height: 25px
--iron-icon-width: 25px
left: 38%
top: 52%
type: state-icon
type: conditional
- conditions:
- entity: binary_sensor.keuken_aanrecht_beweging
state: 'on'
elements:
- entity: binary_sensor.keuken_aanrecht_beweging
style:
--iron-icon-height: 25px
--iron-icon-width: 25px
left: 85%
top: 38.5%
type: state-icon
type: conditional
- conditions:
- entity: binary_sensor.keuken_beweging
state: 'on'
elements:
- entity: binary_sensor.keuken_beweging
style:
--iron-icon-height: 25px
--iron-icon-width: 25px
left: 63%
top: 27%
type: state-icon
type: conditional
- conditions:
- entity: binary_sensor.gang_beweging
state: 'on'
elements:
- entity: binary_sensor.gang_beweging
style:
--iron-icon-height: 25px
--iron-icon-width: 25px
left: 68%
top: 68%
type: state-icon
type: conditional
- conditions:
- entity: binary_sensor.hal_beweging
state: 'on'
elements:
- entity: binary_sensor.hal_beweging
style:
--iron-icon-height: 25px
--iron-icon-width: 25px
left: 81%
top: 85.4%
type: state-icon
type: conditional
- conditions:
- entity: binary_sensor.trap_beweging
state: 'on'
elements:
- entity: binary_sensor.trap_beweging
style:
--iron-icon-height: 25px
--iron-icon-width: 25px
left: 83%
top: 62%
type: state-icon
type: conditional
- conditions:
- entity: binary_sensor.toilet_beweging
state: 'on'
elements:
- entity: binary_sensor.toilet_beweging
style:
--iron-icon-height: 25px
--iron-icon-width: 25px
left: 79.5%
top: 46.5%
type: state-icon
type: conditional
- conditions:
- entity: binary_sensor.kelderdeur_open
state: 'on'
elements:
- entity: binary_sensor.kelderdeur_open
icon: mdi:slash-forward
style:
--iron-icon-height: 55px
--iron-icon-width: 55px
left: 72%
top: 58%
transform: rotate(131deg)
type: state-icon
type: conditional
- conditions:
- entity: binary_sensor.toiletdeur_open
state: 'on'
elements:
- entity: binary_sensor.toiletdeur_open
icon: mdi:slash-forward
style:
--iron-icon-height: 55px
--iron-icon-width: 55px
left: 72%
top: 49%
type: state-icon
type: conditional
- conditions:
- entity: binary_sensor.voordeur_open
state: 'on'
elements:
- entity: binary_sensor.voordeur_open
icon: mdi:slash-forward
style:
--iron-icon-height: 55px
--iron-icon-width: 55px
left: 63%
top: 87.3%
transform: rotate(45deg)
type: state-icon
type: conditional
- conditions:
- entity: binary_sensor.achterdeur_open
state: 'on'
elements:
- entity: binary_sensor.achterdeur_open
icon: mdi:slash-forward
style:
--iron-icon-height: 65px
--iron-icon-width: 65px
left: 67%
top: 7%
transform: rotate(90deg)
type: state-icon
type: conditional
- conditions:
- entity: binary_sensor.tuindeuren_open
state: 'on'
elements:
- entity: binary_sensor.tuindeuren_open
icon: mdi:slash-forward
style:
--iron-icon-height: 65px
--iron-icon-width: 65px
left: 36%
top: 7%
transform: rotate(90deg)
type: state-icon
- entity: binary_sensor.tuindeuren_open
icon: mdi:slash-forward
style:
--iron-icon-height: 65px
--iron-icon-width: 65px
left: 16%
top: 6%
transform: rotate(45deg)
type: state-icon
type: conditional
- entity: sensor.voordeur_buiten_temperatuur
style:
font-size: 13px
left: 85%
top: 2%
type: state-label
- entity: sensor.woonkamer_temperatuur
style:
font-size: 13px
left: 36%
top: 62%
type: state-label
- entity: sensor.toiletdeur_temperatuur
style:
font-size: 10px
left: 82.5%
top: 54%
type: state-label
- entity: sensor.achterdeur_temperatuur
style:
font-size: 10px
left: 72%
top: 19.5%
type: state-label
- entity: sensor.tuindeuren_temperatuur
style:
font-size: 10px
left: 28%
top: 19.5%
type: state-label
- entity: sensor.hal_temperatuur
style:
font-size: 10px
left: 75%
top: 84.5%
type: state-label
- entity: sensor.voordeur_temperatuur
style:
font-size: 10px
left: 75%
top: 92.4%
type: state-label
- entity: sensor.gang_temperatuur
style:
font-size: 13px
left: 68%
top: 46%
type: state-label
- entity: sensor.trap_temperatuur
style:
background: white
font-size: 11px
left: 82%
line-height: 11px
padding: 0px
top: 79%
type: state-label
- entity: sensor.br_humidity
style:
font-size: 15px
left: 85.6%
top: 5%
type: state-label
- entity: sensor.periode_van_de_dag
style:
font-size: 15px
left: 17%
top: 2%
type: state-label
- entity: sensor.br_symbol
style:
left: 75%
top: 3%
type: state-icon
- entity: light.keukenspot1
icon: mdi:circle
style:
--iron-icon-height: 20px
--iron-icon-width: 20px
left: 80%
top: 26%
tap_action:
action: toggle
title: Keukenspot 1
type: state-icon
- entity: light.keukenspot2
icon: mdi:circle
style:
--iron-icon-height: 20px
--iron-icon-width: 20px
left: 80%
top: 30.5%
tap_action:
action: toggle
title: Keukenspot 2
type: state-icon
- entity: light.keukenspot3
icon: mdi:circle
style:
--iron-icon-height: 20px
--iron-icon-width: 20px
left: 80%
top: 35%
tap_action:
action: toggle
title: Keukenspot 3
type: state-icon
- entity: light.keukenspot4
icon: mdi:circle
style:
--iron-icon-height: 20px
--iron-icon-width: 20px
left: 74%
top: 35%
tap_action:
action: toggle
title: Keukenspot 4
type: state-icon
- entity: light.keukenspot5
icon: mdi:circle
style:
--iron-icon-height: 20px
--iron-icon-width: 20px
left: 68%
top: 35%
tap_action:
action: toggle
title: Keukenspot 5
type: state-icon
- entity: light.keukenspot6
icon: mdi:circle
style:
--iron-icon-height: 20px
--iron-icon-width: 20px
left: 62%
top: 35%
tap_action:
action: toggle
title: Keukenspot 6
type: state-icon
- entity: switch.gui_gang_licht
style:
--iron-icon-height: 25px
--iron-icon-width: 25x
left: 68%
top: 60%
tap_action:
action: toggle
type: state-icon
- entity: switch.gui_hal_licht
style:
--iron-icon-height: 25px
--iron-icon-width: 25x
left: 75%
top: 88%
tap_action:
action: toggle
type: state-icon
- conditions:
- entity: switch.gui_stekker_bij_de_deurbel
state_not: unavailable
elements:
- entity: switch.gui_stekker_bij_de_deurbel
style:
--iron-icon-height: 25px
--iron-icon-width: 25x
left: 63%
top: 78%
tap_action:
action: toggle
type: state-icon
type: conditional
- conditions:
- entity: switch.gui_hal_kerstlampjes
state_not: unavailable
elements: