-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathui-lovelace.yaml
executable file
·6629 lines (6372 loc) · 233 KB
/
ui-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
background: var(--background-image)
title: Home - Main Server
views:
################################################################
# MAIN PAGE
################################################################
- title: Main
icon: mdi:home
cards:
# ##################################
# Left Block
# ##################################a
- type: vertical-stack
cards:
- type: custom:stack-in-card
mode: vertical
cards:
- type: glance
show_name: true
show_state: true
state_color: true
columns: 5
entities:
# - entity: sensor.d1mini_air_freshener_adc
# name: V
# - entity: sensor.radiation_dose_per_hour
# name: RA
# - entity: binary_sensor.rew_day
# name: REW Day
- entity: sensor.pressure_weather_forecast
name: FCST
- entity: binary_sensor.tod_day
name: TOD
- entity: switch.system_dark_mode
name: Dark
tap_action:
action: toggle
- entity: switch.system_silent_mode
name: Zz
tap_action:
action: toggle
- entity: switch.system_guest_mode
name: Guest
tap_action:
action: toggle
- type: glance
show_name: true
show_state: true
state_color: true
columns: 8
entities:
- entity: sensor.zigbee_gateways_unavailable
name: Z GW Off
- entity: sensor.zigbee_devices_unavailable
name: Z Off
- entity: sensor.zigbee_devices_stats_unavailable
name: Z2
- entity: sensor.wifi_devices_unavailable
name: WF Off
- entity: sensor.esp32_node_mb_outside
name: Dallas
- entity: binary_sensor.bed_led_enable
name: Bed LED
- entity: switch.system_music_allowed
name: Night Alice
- entity: binary_sensor.treadmill
name: TMill
- type: glance
show_name: true
show_state: true
state_color: true
columns: 4
entities:
- person.dima
- person.sandra
- person.vova
- entity: person.sasha
name: Sasha
# tap_action:
# action: call-service
# service: input_boolean.toggle
# service_data:
# entity_id: input_boolean.sasha_tracker
- entity: person.natasha
name: Mam
- entity: person.vasya
name: Dad
- entity: person.elena
name: Lena
- entity: person.sergey
name: Serg
- type: horizontal-stack
cards:
- type: glance
columns: 4
entities:
- entity: sensor.pc_s_stats
name: PC S
- entity: sensor.phone_s_stats
name: Phone S
- entity: binary_sensor.pova_5_interactive
name: Phone S
- entity: binary_sensor.school_phone_while_lesson #sensor.school_lesson_number
name: Алярма #Школа
- type: glance
columns: 2
entities:
- entity: sensor.usd_rur
name: USD
- entity: sensor.eur_rur
name: EUR
# - entity: sensor.qiwi_usd_rate
# name: QIWI USD
- type: map
aspect_ratio: "16x9"
default_zoom: 16
hours_to_show: 24
entities:
- person.dima
- person.sandra
- person.vova
- person.sasha #device_tracker.note_9_sasha
- type: custom:weather-chart-card
#- type: custom:weather-card
#- type: weather-forecast
entity: weather.pirateweather
forecast_type: daily
units:
pressure: mmHg
speed: m/s
- type: custom:stack-in-card
mode: vertical
cards:
- type: glance
columns: 5
state_color: true
entities:
- entity: sensor.ms01a_cpu_temp #sensor.processor_temperature
name: CPUT
- entity: sensor.ms01a_cpu_load
name: CPU
- entity: sensor.ms01a_memory_used
name: RAM
- entity: sensor.db_size
name: DB
- entity: sensor.influxdb_folder_size #sensor.influxdb_size #sensor.influxdb_total_size
name: Influx
- type: horizontal-stack
cards:
- type: conditional
conditions:
- condition: state
entity: binary_sensor.ippon_1500_status
state_not: "off"
card:
type: glance
columns: 1
state_color: true
entities:
- entity: sensor.ippon_1500_status_data
name: HB
- type: conditional
conditions:
- condition: state
entity: binary_sensor.ippon_1050_status
state_not: "off"
card:
type: glance
columns: 1
state_color: true
entities:
- entity: sensor.ippon_1050_status_data
name: St
# - type: conditional
# conditions:
# - entity: binary_sensor.cyber_650_status
# state_not: "off"
# card:
# type: glance
# columns: 1
# state_color: true
# entities:
# - entity: sensor.cyber_650_status_data
# name: K
# - type: conditional
# conditions:
# - entity: binary_sensor.ippon_650_status
# state_not: "off"
# card:
# type: glance
# columns: 1
# state_color: true
# entities:
# - entity: sensor.ippon_650_status_data
# name: S
- type: custom:stack-in-card
mode: vertical
cards:
- type: glance
columns: 6
state_color: true
entities:
- entity: media_player.yandex_v
name: V
- entity: media_player.yandex_s
name: S
- entity: media_player.yandex_k
name: K
- entity: media_player.yandex_mb
name: MB
- entity: media_player.yandex_hb
name: HB
- entity: media_player.yandex_b
name: B
- type: glance
columns: 6
state_color: true
entities:
- entity: sensor.yandex_v_alice_state
name: V
- entity: sensor.yandex_s_alice_state
name: S
- entity: sensor.yandex_k_alice_state
name: K
- entity: sensor.yandex_mb_alice_state
name: MB
- entity: sensor.yandex_hb_alice_state
name: HB
- entity: sensor.yandex_b_alice_state
name: B
- type: glance
columns: 6
state_color: true
entities:
- entity: sensor.yandex_v_alice_volume
name: V
- entity: sensor.yandex_s_alice_volume
name: S
- entity: sensor.yandex_k_alice_volume
name: K
- entity: sensor.yandex_mb_alice_volume
name: MB
- entity: sensor.yandex_hb_alice_volume
name: HB
- entity: sensor.yandex_b_alice_volume
name: B
# ##################################
# Center Block
# ##################################
- type: vertical-stack
cards:
# - type: horizontal-stack
# cards:
# - type: picture-entity
# camera_view: live
# aspect_ratio: "16x9"
# entity: camera.pinhole_stream_pinhole_stream #camera.door_hb
# show_name: false
# show_state: false
# - type: picture-entity
# camera_view: live
# aspect_ratio: "16x9"
# entity: camera.g3_flex_entrance
# show_name: false
# show_state: false
# - type: picture-entity
# camera_view: live
# aspect_ratio: "16x9"
# entity: camera.g3_flex_dixy
# show_name: false
# show_state: false
# - type: picture-entity
# camera_view: live
# aspect_ratio: "16x9"
# entity: camera.g3_flex_window
# show_name: false
# show_state: false
- type: horizontal-stack
cards:
- type: custom:webrtc-camera
#entity: camera.pinhole_stream_pinhole_stream
url: g4_doorbell
ui: false
muted: true
intersection: 0.50
background: false
#mode: mse
style: "video {aspect-ratio: 16/9; object-fit: fill;}"
- type: custom:webrtc-camera
url: g3_entrance
ui: false
muted: true
intersection: 0.50
background: false
#mode: mse
- type: custom:webrtc-camera
url: g3_dixy
ui: false
muted: true
intersection: 0.50
background: false
#mode: mse
- type: custom:webrtc-camera
url: g3_window
ui: false
muted: true
intersection: 0.50
background: false
#mode: mse
- type: glance
show_name: true
show_state: false
state_color: true
columns: 5
entities:
- entity: binary_sensor.0x00158d0001e53cda_motion
name: MB
- entity: binary_sensor.motion_s
name: S
- entity: binary_sensor.motion_v
name: V
- entity: binary_sensor.motion_b
name: B
- entity: binary_sensor.0x00158d0001e54280_motion
name: T
- entity: binary_sensor.motion_hb
name: HB
- entity: binary_sensor.motion_hs
name: HS
- entity: binary_sensor.motion_k
name: K
- entity: binary_sensor.motion_st
name: St
- entity: binary_sensor.g4_doorbell_motion #binary_sensor.pinhole_motion
name: Doorbell #Pinhole
- type: glance
show_name: true
show_state: false
state_color: true
columns: 5
entities:
- entity: binary_sensor.occupancy_mb
name: MB
- entity: binary_sensor.occupancy_s
name: S
- entity: binary_sensor.occupancy_v
name: V
- entity: binary_sensor.occupancy_b
name: B
- entity: binary_sensor.occupancy_t
name: T
- entity: binary_sensor.occupancy_hb
name: HB
- entity: binary_sensor.occupancy_hs
name: HS
- entity: binary_sensor.occupancy_k
name: K
- entity: binary_sensor.occupancy_st
name: St
# - entity: binary_sensor.wp_digma801_motion
# name: 801 Motion
- type: glance
show_name: true
show_state: false
state_color: true
columns: 5
entities:
- entity: binary_sensor.wasp_mb
name: MB
- entity: binary_sensor.wasp_s
name: S
- entity: binary_sensor.wasp_v
name: V
- entity: binary_sensor.wasp_b
name: B
- entity: binary_sensor.wasp_t
name: T
# - type: glance
# show_name: true
# show_state: false
# state_color: true
# columns: 6
# entities:
# - entity: binary_sensor.yandex_voice_mb
# name: MB
# - entity: binary_sensor.yandex_voice_s
# name: S
# - entity: binary_sensor.yandex_voice_v
# name: V
# - entity: binary_sensor.yandex_voice_b
# name: B
# - entity: binary_sensor.yandex_voice_hb
# name: HB
# - entity: binary_sensor.yandex_voice_k
# name: K
- type: glance
show_name: true
show_state: false
state_color: true
columns: 6
entities:
- entity: binary_sensor.649e314ce325_occupancy
name: MB
- entity: binary_sensor.radar_s
name: S
- entity: binary_sensor.dced838ea6c7_occupancy
name: V
- entity: binary_sensor.presence_b
name: B
- entity: binary_sensor.presence_t
name: T
- entity: binary_sensor.presence_k #binary_sensor.dced838db04e_occupancy
name: K
- type: horizontal-stack
cards:
- type: glance
show_name: true
show_state: true
state_color: true
columns: 5
entities:
- entity: binary_sensor.0x00158d00023297e7_moisture
name: K
- entity: binary_sensor.54ef44c335f4_water_leak
name: 2K
- entity: binary_sensor.0x00158d0002373a67_moisture
name: B
- entity: binary_sensor.0x00158d0002349f5b_moisture
name: W
- entity: binary_sensor.0x00158d00023684c2_moisture
name: T
- type: glance
show_name: true
show_state: true
state_color: true
entities:
- entity: binary_sensor.fridge_hb
name: ""
- entity: binary_sensor.0x00158d000253722b_contact
name: Frdg
- entity: sensor.ble_temperature_ble_fridge #sensor.0x00158d0002461e5b_temperature
name: ""
- entity: binary_sensor.0x00158d000252acba_contact
name: Friz
- entity: sensor.ble_temperature_ble_freezer #sensor.0x00158d000237167c_temperature
name: ""
- type: horizontal-stack
cards:
- type: glance
columns: 7
show_state: false #true
state_color: true
entities:
# - entity: input_boolean.bathroom_occupancy #binary_sensor.someone_showering
# name: B
# tap_action:
# action: toggle
- entity: binary_sensor.presence_b
name: B
- entity: binary_sensor.presence_t
name: T
# - entity: binary_sensor.0x00158d000232ddd6_contact
# name: Seat
- entity: fan.sonoff_pow_r2_1_bottom_fan
name: BFan B
tap_action:
action: toggle
- entity: fan.esp32_node_b_fan_b
name: Fan B
tap_action:
action: toggle
- entity: fan.esp32_node_b_fan_t
name: Fan T
tap_action:
action: toggle
- entity: button.esp32_node_b_open_valve #switch.esp32_node_b_relay_2
name: W.ON
tap_action:
action: toggle
- entity: button.esp32_node_b_close_valve #switch.esp32_node_b_relay_1
name: W.OFF
tap_action:
action: toggle
- type: glance
columns: 6
show_state: false #true
state_color: true
entities:
- entity: select.breather_v_auto_mode
name: Auto Br V
tap_action:
action: perform_action
perform_action: input_select.select_next
data:
entity_id: input_select.breather_v_auto_mode
- entity: input_boolean.auto_fan_t
name: Auto Fan T
tap_action:
action: toggle
- entity: switch.esp32_node_b_fan_b_force_mode
name: Force Fan B
tap_action:
action: toggle
- entity: input_boolean.hot_water
name: Hot Water
tap_action:
action: toggle
- entity: input_boolean.cold_water
name: Cold Water
tap_action:
action: toggle
- entity: input_boolean.central_heating
name: Heating
tap_action:
action: toggle
- type: glance
show_state: true
columns: 4
state_color: true
entities:
- entity: fan.purifier2s
name: Puri
tap_action:
action: toggle
- entity: fan.breather_v
name: Breather V
tap_action:
action: toggle
- entity: fan.breather_s
name: Breather S
tap_action:
action: toggle
- entity: fan.breather_mb
name: Breather MB
tap_action:
action: toggle
# - type: horizontal-stack
# cards:
# - type: glance
# state_color: true
# entities:
# - entity: fan.purifier2s
# name: Puri
# tap_action:
# action: toggle
# - entity: sensor.purifier_mode
# name: Speed
# tap_action:
# action: call-service
# service: script.cycle_purifier_mode
# - entity: sensor.purifier2s_pm2_5
# name: PM2.5
- type: custom:stack-in-card
mode: vertical
cards:
- type: glance
columns: 7
state_color: true
entities:
- entity: sensor.0x00158d0002464ec0_temperature
name: HB
- entity: sensor.0x00158d0001e586af_temperature
name: K
- entity: sensor.0x00158d000222c746_temperature
name: MB
- entity: sensor.0x00158d0001e6d85a_temperature
name: S
- entity: sensor.0x00158d0001e58714_temperature
name: V
- entity: sensor.0x00158d00020d7c3a_temperature
name: B
- entity: sensor.0x00158d0001e58754_temperature
name: T
- type: glance
columns: 7
show_name: false
show_state: true
state_color: true
entities:
- entity: sensor.0x00158d0002464ec0_humidity
name: HB
- entity: sensor.0x00158d0001e586af_humidity
name: K
- entity: sensor.0x00158d000222c746_humidity
name: MB
- entity: sensor.0x00158d0001e6d85a_humidity
name: S
- entity: sensor.0x00158d0001e58714_humidity
name: V
- entity: sensor.0x00158d00020d7c3a_humidity
name: B
- entity: sensor.0x00158d0001e58754_humidity
name: T
- type: glance
columns: 6
state_color: true
entities:
- entity: sensor.humidity_average
name: avg(H)
- entity: sensor.abs_humidity_h
name: abs(H)
- entity: sensor.abs_humidity_b
name: abs(B)
- entity: sensor.dewpoint_b
name: Dew B
- entity: sensor.dewpoint_t
name: Dew T
- entity: sensor.esp32_node_b_cold_pipe
name: cPipe
- type: horizontal-stack
cards:
- type: glance
columns: 5
entities:
- entity: binary_sensor.esp8266_hood_k_stove_state
name: Stove
- entity: sensor.esp8266_hood_k_tcouple
name: T
- entity: binary_sensor.esp8266_oven_temp_k_oven_state
name: Oven
- entity: sensor.esp8266_oven_temp_k
name: T
- entity: input_select.oven_target_temperature
name: Target
- type: glance
columns: 7
state_color: true
entities:
- entity: binary_sensor.0x00158d0003fa6cf5_contact
name: Door
- entity: input_boolean.washer_door_issue
name: Issue
- entity: input_select.washer_state
name: State
- entity: counter.washing_machine_runs
name: Runs
- entity: input_number.washer_b_run_time
name: RunTime
- entity: input_number.washing_gel_usage
name: Gel
- entity: script.washing_machine_stats_reset
name: Runs Reset
tap_action:
action: perform-action
perform_action: script.washing_machine_stats_reset
- type: glance
columns: 4
state_color: true
entities:
- entity: sensor.0x04cf8cdf3c772824_illuminance
name: inV
- entity: sensor.0x04cf8cdf3c77271d_illuminance
name: oS
- entity: sensor.0x04cf8cdf3c78d26e_illuminance
name: oMB
- entity: sensor.0x04cf8cdf3c7754a8_illuminance
name: oK
# ##################################
# Right Block
# ##################################
- type: vertical-stack
cards:
- type: horizontal-stack
cards:
- type: glance
columns: 7
state_color: true
entities:
- entity: binary_sensor.sonoff_mini_1_switch #binary_sensor.doorbell
name: Doorbell
icon: mdi:doorbell
- entity: binary_sensor.esp32_domofon_incomingcall
name: Intercom
icon: mdi:phone-log
- entity: script.domofon_open_door
name: Open
icon: mdi:lock-open-outline
tap_action:
action: perform-action
perform_action: script.domofon_open_door
- entity: switch.esp32_domofon_mute #input_boolean.domofon_mute
name: Mute
tap_action:
action: toggle
- entity: switch.esp32_domofon_auto_open_once
name: AOpen 1
tap_action:
action: toggle
- entity: switch.esp32_domofon_auto_open
name: AOpen
tap_action:
action: toggle
- entity: switch.esp32_domofon_reject
name: Reject
tap_action:
action: toggle
- type: horizontal-stack
cards:
- type: glance
state_color: true
entities:
- entity: binary_sensor.0x00158d0003262acc_contact
name: 220V State
- type: glance
state_color: true
entities:
- entity: switch.kill_switch
tap_action:
action: toggle
# - type: glance
# entities:
# - entity: script.go2rtc_restart
# name: go2rtc
# double_tap_action:
# action: call-service
# service: script.go2rtc_restart
- type: glance
state_color: true
entities:
- entity: input_number.tv_delay
name: Time
- entity: timer.tv_delay_off
name: Start
tap_action:
action: perform-action
perform_action: script.tv_delay
- type: glance
#title: Lights
show_name: true
show_state: false
columns: 6
state_color: true
entities:
- entity: light.esp32_strip_1s_wadrobe_hb_rgb
name: HB
tap_action:
action: toggle
- entity: light.esp32_strip_1s_entrance_hb_rgb
name: W HB
tap_action:
action: toggle
- entity: light.0x00158d000223921b_channel_1
name: Entrance
tap_action:
action: toggle
icon: mdi:ceiling-light
- entity: light.0x00158d000253f04a_channel_2
name: Fridge
icon: mdi:ceiling-light
tap_action:
action: toggle
# - entity: light.bedside
# name: Lava HB
# icon: mdi:lava-lamp
# tap_action:
# action: toggle
- entity: light.square_led_v
name: Main V
icon: mdi:card
tap_action:
action: toggle
double_tap_action:
action: perform-action
perform_action: light.turn_on
data:
entity_id: light.square_led_v
brightness: 230
kelvin: 5000
- entity: light.square_led_v_nightlight
name: Night V
icon: mdi:card
tap_action:
action: toggle
- entity: light.0x54ef441000d4e7fd_light
name: Desk V
icon: mdi:desk-lamp
tap_action:
action: toggle
- entity: light.d1mini_bed_leds_strip_dima
name: Bed D
icon: mdi:led-strip-variant
tap_action:
action: toggle
- entity: light.d1mini_bed_leds_strip_sandra
name: Bed S
icon: mdi:led-strip-variant
tap_action:
action: toggle
- entity: light.round_led_mb
name: Main MB
icon: mdi:circle
tap_action:
action: toggle
double_tap_action:
action: perform-action
perform_action: light.turn_on
data:
entity_id: light.round_led_mb
brightness: 230
kelvin: 5000
- entity: light.esp32_strip_1s_bookshelf_mb_rgb
name: Str MB
tap_action:
action: toggle
- entity: light.esp32_strip_1s_wadrobe_mb_rgb
name: Str2 MB
tap_action:
action: toggle
- entity: light.0x54ef441000c88fa8_light
name: White MB
icon: mdi:lamp
tap_action:
action: toggle
double_tap_action:
action: perform-action
perform_action: light.turn_on
data:
entity_id: light.0x54ef441000c88fa8_light
brightness: 230
kelvin: 5000
- entity: light.square_led_s
name: Main S
tap_action:
action: toggle
double_tap_action:
action: perform-action
perform_action: light.turn_on
data:
entity_id: light.square_led_s
brightness: 230
kelvin: 5000
- entity: light.esp32_node_s_led
name: Str S
icon: mdi:alarm-light-outline
tap_action:
action: toggle
- entity: light.0x54ef441000d54c6c_light
name: White S
icon: mdi:lamp
tap_action:
action: toggle
- entity: light.0x54ef4410000ea59b_light
name: Color S
icon: mdi:desk-lamp
tap_action:
action: toggle
double_tap_action:
action: perform-action
perform_action: light.turn_on
data:
entity_id: light.0x54ef4410000ea59b_light
brightness: 230
kelvin: 5000
- entity: light.light_bar_s
name: Bar S
icon: mdi:television-ambient-light
tap_action:
action: toggle
- entity: light.s26_socket_1_night_s
name: Night S
icon: mdi:candle
tap_action:
action: toggle
- entity: light.round_led_hs
name: Main HS
tap_action:
action: toggle
- entity: light.mono_strip_1_light
name: Night HS
tap_action:
action: toggle
- entity: light.0x00158d0002a36433_channel_2
name: Bath
tap_action:
action: toggle
- entity: light.mirror_light_b
name: Mirror
tap_action:
action: toggle
- entity: light.0x00158d0002a36f7f_channel_1
name: Main T
tap_action:
action: toggle
- entity: light.esp32_node_b_light
name: Night T
tap_action:
action: toggle
- entity: light.round_led_k
name: Main K
tap_action:
action: perform-action
perform_action: automation.trigger
data:
entity_id: automation.kitchen_main_lamp_on
double_tap_action:
action: perform-action
perform_action: light.turn_on
data:
entity_id: light.round_led_k
brightness: 230
kelvin: 5000
- entity: light.esp32_node_k_light
name: Night K
icon: mdi:candle
tap_action:
action: toggle
- entity: light.d1mini_light_l
name: L
tap_action:
action: toggle
- entity: light.sonoff_mini_4
name: R
tap_action:
action: toggle
- entity: light.esp8266_hood_k
name: Hood
tap_action:
action: toggle
- entity: light.0x54ef441000680083_channel_2
name: Main St
tap_action:
action: toggle
- entity: light.0x54ef441000680083_channel_1
name: Night St
tap_action:
action: toggle
- entity: light.0x00158d0002d3f7c9_light #light.led_color_st
name: Bulb St
tap_action:
action: toggle
- type: glance
show_state: false
columns: 6
state_color: true
entities:
- entity: fan.esp8266_hood_k_fan #switch.esp32_node_k_fan1
name: Hood
tap_action:
action: toggle
- entity: binary_sensor.washer_b
name: Washer
- entity: binary_sensor.kettle_k
name: Kettle
- entity: binary_sensor.microwave_k
name: MW
- entity: media_player.tv_k
name: Samsung
tap_action:
action: toggle
# service: switch.turn_on
# service_data:
# entity_id: switch.digma_ir_k_tv_pwr
# - entity: binary_sensor.mi_stick_k
# name: Stick
# tap_action:
# action: none
- entity: media_player.tv_v
name: Sony
tap_action:
action: toggle #call-service
# service: switch.turn_on
# service_data:
# entity_id: switch.digma_ir_v_tv_pwr
# - entity: binary_sensor.mi_box_v #device_tracker.mi_box_v