-
Notifications
You must be signed in to change notification settings - Fork 0
/
scenes.yaml
1557 lines (1557 loc) · 34.3 KB
/
scenes.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
- id: '1601832420345'
name: Home Night
entities:
light.office_ceiling_lights:
supported_color_modes:
- onoff
entity_id:
- light.office_back_light
- light.office_front_light
icon: mdi:ceiling-light-multiple
friendly_name: Office Ceiling Lights
supported_features: 8
state: 'off'
light.night_not_lights:
min_color_temp_kelvin: 2202
max_color_temp_kelvin: 6535
min_mireds: 153
max_mireds: 454
supported_color_modes:
- color_temp
off_with_transition: false
off_brightness:
icon: mdi:lightbulb-group
friendly_name: Night Not Lights
supported_features: 40
state: 'off'
light.night_lights:
min_color_temp_kelvin: 1801
max_color_temp_kelvin: 6535
min_mireds: 153
max_mireds: 555
effect_list:
- colorloop
supported_color_modes:
- color_temp
- xy
color_mode: color_temp
brightness: 212
hs_color:
- 33.105
- 5.284
rgb_color:
- 255
- 248
- 241
xy_color:
- 0.335
- 0.336
off_with_transition: false
off_brightness:
icon: mdi:lightbulb-group
friendly_name: Night Lights
supported_features: 44
color_temp_kelvin: 6172
color_temp: 162
state: 'on'
light.panel_mirror_switch:
supported_color_modes:
- onoff
color_mode: onoff
icon: mdi:mirror-rectangle
friendly_name: Panel Mirror Switch
supported_features: 0
state: 'on'
light.bedroom_nightstand_lights:
min_color_temp_kelvin: 2702
max_color_temp_kelvin: 6535
min_mireds: 153
max_mireds: 370
supported_color_modes:
- color_temp
off_with_transition: false
off_brightness: 31
icon: mdi:lightbulb-multiple
friendly_name: Bedroom Nightstand Lights
supported_features: 40
state: 'off'
metadata:
light.office_ceiling_lights:
entity_only: true
light.night_not_lights:
entity_only: true
light.night_lights:
entity_only: true
light.panel_mirror_switch:
entity_only: true
light.bedroom_nightstand_lights:
entity_only: true
- id: '1602060945201'
name: Kitchen Cabinet White
entities:
light.kitchen_cabinet_light:
min_color_temp_kelvin: 2020
max_color_temp_kelvin: 6329
min_mireds: 158
max_mireds: 495
effect_list:
- colorloop
supported_color_modes:
- color_temp
- xy
off_with_transition: false
off_brightness:
icon: mdi:led-strip-variant
friendly_name: Kitchen Cabinet Light
supported_features: 44
color_mode: color_temp
brightness: 204
hs_color:
- 44.098
- 2.43
rgb_color:
- 255
- 253
- 248
xy_color:
- 0.328
- 0.334
color_temp_kelvin: 6451
color_temp: 155
state: 'on'
icon: mdi:file-cabinet
metadata: {}
- id: '1602355780411'
name: Night Toilet Light
entities:
light.bedroom_bed_light:
min_color_temp_kelvin: 2020
max_color_temp_kelvin: 6451
min_mireds: 155
max_mireds: 495
effect_list:
- colorloop
supported_color_modes:
- color_temp
- xy
off_with_transition: false
off_brightness:
icon: mdi:bed
friendly_name: Bedroom Bed Light
supported_features: 44
color_mode: xy
brightness: 38
hs_color:
- 44.941
- 100
rgb_color:
- 255
- 191
- 0
xy_color:
- 0.527
- 0.447
state: 'on'
icon: hass:toilet
metadata:
light.bedroom_bed_light:
entity_only: true
- id: '1602522741384'
name: "Love \U0001F60D"
entities:
light.bedroom_bed_light:
min_color_temp_kelvin: 2020
max_color_temp_kelvin: 6451
min_mireds: 155
max_mireds: 495
effect_list:
- colorloop
supported_color_modes:
- color_temp
- xy
off_with_transition: false
off_brightness:
icon: mdi:bed
friendly_name: Bedroom Bed Light
supported_features: 44
color_mode: xy
brightness: 102
hs_color:
- 0
- 100
rgb_color:
- 255
- 0
- 0
xy_color:
- 0.701
- 0.299
state: 'on'
light.kitchen_cabinet_light:
min_color_temp_kelvin: 2020
max_color_temp_kelvin: 6329
min_mireds: 158
max_mireds: 495
effect_list:
- colorloop
supported_color_modes:
- color_temp
- xy
off_with_transition: false
off_brightness:
icon: mdi:led-strip-variant
friendly_name: Kitchen Cabinet Light
supported_features: 44
color_mode: xy
brightness: 204
hs_color:
- 0
- 100
rgb_color:
- 255
- 0
- 0
xy_color:
- 0.701
- 0.299
state: 'on'
light.bathroom_lamp_light:
min_color_temp_kelvin: 2000
max_color_temp_kelvin: 6535
min_mireds: 153
max_mireds: 500
supported_color_modes:
- color_temp
- xy
off_with_transition: false
off_brightness:
icon: mdi:hot-tub
friendly_name: Bathroom Lamp Light
supported_features: 40
color_mode: xy
brightness: 254
hs_color:
- 0
- 100
rgb_color:
- 255
- 0
- 0
xy_color:
- 0.701
- 0.299
state: 'on'
light.office_desk_light:
min_color_temp_kelvin: 2020
max_color_temp_kelvin: 6451
min_mireds: 155
max_mireds: 495
effect_list:
- colorloop
supported_color_modes:
- color_temp
- xy
off_with_transition: false
off_brightness:
friendly_name: Office Desk Light
supported_features: 44
icon: mdi:desk
color_mode: xy
brightness: 204
hs_color:
- 0
- 100
rgb_color:
- 255
- 0
- 0
xy_color:
- 0.701
- 0.299
state: 'on'
icon: mdi:head-heart
metadata: {}
- id: '1607445104403'
name: Office Desk White
entities:
light.office_desk_light:
min_color_temp_kelvin: 2020
max_color_temp_kelvin: 6451
min_mireds: 155
max_mireds: 495
effect_list:
- colorloop
supported_color_modes:
- color_temp
- xy
color_mode: color_temp
brightness: 204
hs_color:
- 44.098
- 2.43
rgb_color:
- 255
- 253
- 248
xy_color:
- 0.328
- 0.334
off_with_transition: false
off_brightness:
friendly_name: Office Desk Light
supported_features: 44
icon: mdi:desk
color_temp_kelvin: 6451
color_temp: 155
state: 'on'
icon: mdi:desk
metadata: {}
- id: '1610138242037'
name: Bathroom Warm
entities:
light.bathroom_lights:
brightness: 64
color_temp: 351
entity_id:
- light.bathroom_back_left_light
- light.bathroom_mirror_light_switch
state: 'on'
icon: mdi:shower
- id: '1610138327508'
name: Bathroom Cold
entities:
light.bathroom_lights:
brightness: 254
color_temp: 200
state: 'on'
icon: mdi:shower
- id: '1612985607737'
name: Kitchen Cabinet Green
entities:
light.kitchen_cabinet_light:
brightness: 55
rgb_color:
- 0
- 255
- 64
state: 'on'
icon: mdi:file-cabinet
- id: '1612985635802'
name: Kitchen Cabinet Blue
entities:
light.kitchen_cabinet_light:
brightness: 55
rgb_color:
- 19
- 8
- 255
state: 'on'
icon: mdi:file-cabinet
- id: '1612985673557'
name: Kitchen Cabinet Purple
entities:
light.kitchen_cabinet_light:
brightness: 55
rgb_color:
- 166
- 78
- 255
state: 'on'
icon: mdi:file-cabinet
- id: '1612985714915'
name: Kitchen Cabinet Night
entities:
light.kitchen_cabinet_light:
brightness: 25
color_temp: 430
state: 'on'
icon: mdi:file-cabinet
- id: '1614371683931'
name: Terrace Plants Spots Green
entities:
light.terrace_plants_spots_light:
brightness: 166
xy_color:
- 0.163989
- 0.590982
state: 'on'
icon: mdi:flower
metadata:
light.terrace_plants_spots_light:
entity_only: true
- id: '1615504295983'
name: Terrace Plants Spots Purple
entities:
light.terrace_plants_spots_light:
brightness: 166
xy_color:
- 0.226978
- 0.081987
state: 'on'
icon: mdi:flower
metadata:
light.terrace_plants_spots_light:
entity_only: true
- id: '1668357806255'
name: Terrace Plants Spots Blue
entities:
light.terrace_plants_spots_light:
brightness: 166
xy_color:
- 0.135981
- 0.039994
state: 'on'
icon: mdi:flower
metadata:
light.terrace_plants_spots_light:
entity_only: true
- id: '1615493477115'
name: Office Desk Purple
entities:
light.office_desk_light:
min_color_temp_kelvin: 2020
max_color_temp_kelvin: 6451
min_mireds: 155
max_mireds: 495
effect_list:
- colorloop
supported_color_modes:
- color_temp
- xy
color_mode: xy
brightness: 204
hs_color:
- 285
- 98.824
rgb_color:
- 192
- 3
- 255
xy_color:
- 0.301
- 0.116
off_with_transition: false
off_brightness:
friendly_name: Office Desk Light
supported_features: 44
icon: mdi:desk
state: 'on'
icon: mdi:desk
metadata: {}
- id: '1615493508591'
name: Office Desk Green
entities:
light.office_desk_light:
min_color_temp_kelvin: 2020
max_color_temp_kelvin: 6451
min_mireds: 155
max_mireds: 495
effect_list:
- colorloop
supported_color_modes:
- color_temp
- xy
color_mode: xy
brightness: 204
hs_color:
- 135.059
- 100
rgb_color:
- 0
- 255
- 64
xy_color:
- 0.17
- 0.703
off_with_transition: false
off_brightness:
friendly_name: Office Desk Light
supported_features: 44
icon: mdi:desk
state: 'on'
icon: mdi:desk
metadata: {}
- id: '1669333649580'
name: Office Desk Night
entities:
light.office_desk_light:
min_color_temp_kelvin: 2020
max_color_temp_kelvin: 6451
min_mireds: 155
max_mireds: 495
effect_list:
- colorloop
supported_color_modes:
- color_temp
- xy
color_mode: color_temp
brightness: 66
color_temp_kelvin: 2331
color_temp: 429
hs_color:
- 29.359
- 79.015
rgb_color:
- 255
- 152
- 53
xy_color:
- 0.565
- 0.389
off_with_transition: false
off_brightness:
friendly_name: Office Desk Light
supported_features: 44
icon: mdi:desk
state: 'on'
icon: mdi:desk
metadata:
light.office_desk_light:
entity_only: true
- id: '1672352605509'
name: Bedroom Bed Blue
entities:
light.bedroom_bed_light:
min_color_temp_kelvin: 2020
max_color_temp_kelvin: 6451
min_mireds: 155
max_mireds: 495
effect_list:
- colorloop
supported_color_modes:
- color_temp
- xy
off_with_transition: false
off_brightness:
icon: mdi:bed
friendly_name: Bedroom Bed Light
supported_features: 44
color_mode: xy
brightness: 28
hs_color:
- 242.588
- 100
rgb_color:
- 11
- 0
- 255
xy_color:
- 0.136
- 0.04
state: 'on'
icon: mdi:bed-double
metadata:
light.bedroom_bed_light:
entity_only: true
- id: '1672352639236'
name: Bedroom Bed Night
entities:
light.bedroom_bed_light:
min_color_temp_kelvin: 2020
max_color_temp_kelvin: 6451
min_mireds: 155
max_mireds: 495
effect_list:
- colorloop
supported_color_modes:
- color_temp
- xy
off_with_transition: false
off_brightness:
icon: mdi:bed
friendly_name: Bedroom Bed Light
supported_features: 44
color_mode: xy
brightness: 59
hs_color:
- 44.941
- 100
rgb_color:
- 255
- 191
- 0
xy_color:
- 0.527
- 0.447
state: 'on'
icon: mdi:bed-double
metadata:
light.bedroom_bed_light:
entity_only: true
- id: '1672352679978'
name: Bedroom Bed Purple
entities:
light.bedroom_bed_light:
min_color_temp_kelvin: 2020
max_color_temp_kelvin: 6451
min_mireds: 155
max_mireds: 495
effect_list:
- colorloop
supported_color_modes:
- color_temp
- xy
color_mode: xy
brightness: 38
hs_color:
- 270.824
- 100
rgb_color:
- 131
- 0
- 255
xy_color:
- 0.217
- 0.077
off_with_transition: false
off_brightness:
icon: mdi:bed
friendly_name: Bedroom Bed Light
supported_features: 44
state: 'on'
icon: mdi:bed-double
metadata:
light.bedroom_bed_light:
entity_only: true
- id: '1672352721457'
name: Bedroom Bed White
entities:
light.bedroom_bed_light:
min_color_temp_kelvin: 2020
max_color_temp_kelvin: 6451
min_mireds: 155
max_mireds: 495
effect_list:
- colorloop
supported_color_modes:
- color_temp
- xy
color_mode: color_temp
brightness: 74
hs_color:
- 44.098
- 2.43
rgb_color:
- 255
- 253
- 248
xy_color:
- 0.328
- 0.334
off_with_transition: false
off_brightness:
icon: mdi:bed
friendly_name: Bedroom Bed Light
supported_features: 44
color_temp_kelvin: 6451
color_temp: 155
state: 'on'
icon: mdi:bed-double
metadata:
light.bedroom_bed_light:
entity_only: true
- id: '1672774585531'
name: Terrace Plants Spots White
entities:
light.terrace_plants_spots_light:
min_color_temp_kelvin: 1801
max_color_temp_kelvin: 6535
min_mireds: 153
max_mireds: 555
effect_list:
- colorloop
supported_color_modes:
- color_temp
- xy
color_mode: color_temp
brightness: 217
hs_color:
- 41.14
- 2.841
rgb_color:
- 255
- 252
- 247
xy_color:
- 0.329
- 0.334
off_with_transition: false
off_brightness:
friendly_name: Plants
supported_features: 44
icon: mdi:flower
color_temp_kelvin: 6410
color_temp: 156
state: 'on'
icon: mdi:flower
metadata:
light.terrace_plants_spots_light:
entity_only: true
- id: '1672774661218'
name: Terrace Plants Spots Night
entities:
light.terrace_plants_spots_light:
min_color_temp_kelvin: 1801
max_color_temp_kelvin: 6535
min_mireds: 153
max_mireds: 555
effect_list:
- colorloop
supported_color_modes:
- color_temp
- xy
color_mode: color_temp
brightness: 219
hs_color:
- 30.227
- 100
rgb_color:
- 255
- 128
- 0
xy_color:
- 0.611
- 0.375
off_with_transition: false
off_brightness:
friendly_name: Plants
supported_features: 44
icon: mdi:flower
color_temp_kelvin: 1838
color_temp: 544
state: 'on'
icon: mdi:flower
metadata:
light.terrace_plants_spots_light:
entity_only: true
- id: '1672775296563'
name: Bedroom Bed Green
entities:
light.bedroom_bed_light:
min_color_temp_kelvin: 2020
max_color_temp_kelvin: 6451
min_mireds: 155
max_mireds: 495
effect_list:
- colorloop
supported_color_modes:
- color_temp
- xy
off_with_transition: false
off_brightness:
icon: mdi:bed
friendly_name: Bedroom Bed Light
supported_features: 44
color_mode: xy
brightness: 59
hs_color:
- 120
- 100
rgb_color:
- 0
- 255
- 0
xy_color:
- 0.172
- 0.747
state: 'on'
icon: mdi:bed-double
metadata:
light.bedroom_bed_light:
entity_only: true
- id: '1672775341411'
name: Office Desk Blue
entities:
light.office_desk_light:
min_color_temp_kelvin: 2020
max_color_temp_kelvin: 6451
min_mireds: 155
max_mireds: 495
effect_list:
- colorloop
supported_color_modes:
- color_temp
- xy
color_mode: xy
brightness: 204
hs_color:
- 242.588
- 100
rgb_color:
- 11
- 0
- 255
xy_color:
- 0.136
- 0.04
off_with_transition: false
off_brightness:
friendly_name: Office Desk Light
supported_features: 44
icon: mdi:desk
state: 'on'
icon: mdi:desk
metadata: {}
- id: '1673029781123'
name: Bathroom Lamp Red
entities:
light.bathroom_mirror_light_switch:
supported_color_modes:
- onoff
friendly_name: Bathroom Mirror Light
supported_features: 8
icon: mdi:mirror
state: 'off'
light.bathroom_back_left_light:
min_color_temp_kelvin: 2702
max_color_temp_kelvin: 6535
min_mireds: 153
max_mireds: 370
supported_color_modes:
- color_temp
off_with_transition: false
off_brightness: 254
friendly_name: Bathroom Back Left Light
supported_features: 40
state: 'off'
light.bathroom_lamp_light:
min_color_temp_kelvin: 2000
max_color_temp_kelvin: 6535
min_mireds: 153
max_mireds: 500
supported_color_modes:
- color_temp
- xy
color_mode: xy
brightness: 254
hs_color:
- 0
- 100
rgb_color:
- 255
- 0
- 0
xy_color:
- 0.701
- 0.299
off_with_transition: false
off_brightness:
icon: mdi:hot-tub
friendly_name: Bathroom Lamp Light
supported_features: 40
state: 'on'
icon: mdi:hot-tub
metadata: {}
- id: '1673389166501'
name: Floor Front Night
entities:
light.floor_front_light:
min_color_temp_kelvin: 2202
max_color_temp_kelvin: 5000
min_mireds: 200
max_mireds: 454
supported_color_modes:
- color_temp
color_mode: color_temp
brightness: 51
color_temp_kelvin: 2398
color_temp: 417
hs_color:
- 29.157
- 76.348
rgb_color:
- 255
- 154
- 60
xy_color:
- 0.559
- 0.389
off_with_transition: false
off_brightness:
friendly_name: Floor Front Light
supported_features: 40
state: 'on'
icon: mdi:lightbulb-spot
metadata: {}
- id: '1673605189875'
name: Bathroom Lamp Green
entities:
light.bathroom_mirror_light_switch:
supported_color_modes:
- onoff
friendly_name: Bathroom Mirror Light
supported_features: 8
icon: mdi:mirror
state: 'off'
light.bathroom_back_left_light:
min_color_temp_kelvin: 2702
max_color_temp_kelvin: 6535
min_mireds: 153
max_mireds: 370
supported_color_modes:
- color_temp
off_with_transition: false
off_brightness: 254
friendly_name: Bathroom Back Left Light
supported_features: 40
state: 'off'
light.bathroom_lamp_light:
min_color_temp_kelvin: 2000
max_color_temp_kelvin: 6535
min_mireds: 153
max_mireds: 500
supported_color_modes:
- color_temp
- xy
color_mode: xy
brightness: 254
hs_color:
- 120
- 100
rgb_color:
- 0
- 255
- 0
xy_color:
- 0.172
- 0.747
off_with_transition: false
off_brightness:
icon: mdi:hot-tub
friendly_name: Bathroom Lamp Light
supported_features: 40
state: 'on'
icon: mdi:hot-tub
metadata: {}
- id: '1673605222815'
name: Bathroom Lamp Blue
entities:
light.bathroom_mirror_light_switch:
supported_color_modes:
- onoff
friendly_name: Bathroom Mirror Light
supported_features: 8
icon: mdi:mirror
state: 'off'
light.bathroom_back_left_light:
min_color_temp_kelvin: 2702
max_color_temp_kelvin: 6535
min_mireds: 153
max_mireds: 370
supported_color_modes:
- color_temp
off_with_transition: false
off_brightness: 254
friendly_name: Bathroom Back Left Light
supported_features: 40
state: 'off'
light.bathroom_lamp_light:
min_color_temp_kelvin: 2000
max_color_temp_kelvin: 6535
min_mireds: 153
max_mireds: 500
supported_color_modes:
- color_temp
- xy
color_mode: xy
brightness: 254
hs_color:
- 242.588
- 100
rgb_color:
- 11
- 0
- 255
xy_color:
- 0.136
- 0.04
off_with_transition: false
off_brightness:
icon: mdi:hot-tub
friendly_name: Bathroom Lamp Light
supported_features: 40
state: 'on'
icon: mdi:hot-tub
metadata: {}
- id: '1673605233765'
name: Bathroom Lamp Purple
entities:
light.bathroom_mirror_light_switch:
supported_color_modes:
- onoff
friendly_name: Bathroom Mirror Light
supported_features: 8
icon: mdi:mirror
state: 'off'
light.bathroom_back_left_light:
min_color_temp_kelvin: 2702
max_color_temp_kelvin: 6535
min_mireds: 153
max_mireds: 370
supported_color_modes:
- color_temp
off_with_transition: false
off_brightness: 254
friendly_name: Bathroom Back Left Light
supported_features: 40
state: 'off'
light.bathroom_lamp_light:
min_color_temp_kelvin: 2000
max_color_temp_kelvin: 6535