-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInterface-Configuration.yml
More file actions
2779 lines (2760 loc) · 143 KB
/
Interface-Configuration.yml
File metadata and controls
2779 lines (2760 loc) · 143 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: Home-CCB
views:
- theme: Backend-selected
title: Welcome
path: welcome
icon: mdi:home-account
type: panel
badges: []
cards:
- type: vertical-stack
cards:
- type: entities
entities:
- type: custom:hui-element
card_type: markdown
content: >-
<center>
## Votre planning du jour :
{% if is_state('calendar.agenda_prenoms_agenda_prenoms','on')
%}
### <ha-icon icon="mdi:calendar-account-outline"></ha-icon> -
Fête : {{
states.calendar.agenda_prenoms_agenda_prenoms.attributes.message
}}
{% endif %}
{% if
is_state('calendar.agenda_anniversaires_agenda_anniversaires','on')
%}
### <ha-icon icon="mdi:cake-variant-outline"></ha-icon>
Anniversaires : {{
states.calendar.agenda_anniversaires_agenda_anniversaires.attributes.message
}}
{% endif %}
{% if is_state('calendar.agenda_fetes_agenda_fetes','on') %}
### <ha-icon icon="mdi:calendar-alert-outline"></ha-icon> -
Profiter c'est les {{
states.calendar.agenda_fetes_agenda_fetes.attributes.message
}}
{% endif %}
### <ha-icon icon="mdi:clock-check-outline"></ha-icon>
Prochain réveil :
{{(((state_attr('sensor.sm_a528b_next_alarm', 'Time in
Milliseconds') | int / 1000) + 0*60 ) |
timestamp_custom('%H:%M - %a %d %b'))}}
</center>
- type: custom:hui-element
card_type: custom:tabbed-card
options:
defaultTabIndex: 0
tabs:
- attributes:
label: Météo du jour
icon: mdi:weather-cloudy-clock
card:
entity: weather.viry_chatillon
type: weather-forecast
name: Prévision météo du jour
show_current: true
show_forecast: true
- attributes:
label: Météo de la semaine
icon: mdi:weather-cloudy-arrow-right
card:
entity: weather.home_ccb
type: weather-forecast
name: Prévision météo semaine
show_current: true
show_forecast: true
- type: custom:hui-element
card_type: custom:tabbed-card
options:
defaultTabIndex: 0
tabs:
- attributes:
label: RER > Paris
icon: mdi:train
card:
name: Viry-Châtillon → Châtelet les Halles (VUPA)
type: custom:idfm-card
line: line:IDFM:C01728
station: stop_area:IDFM:60981
arrivalStation: stop_area:IDFM:474151
maxTrainsShown: '4'
- attributes:
label: RER > Viry-Châtillon
icon: mdi:train
card:
name: Châtelet les Halles → Viry-Châtillon (RUPO)
type: custom:idfm-card
line: line:IDFM:C01728
station: stop_area:IDFM:474151
arrivalStation: stop_area:IDFM:60981
maxTrainsShown: '4'
- type: custom:hui-element
card_type: button
name: Ligne Noctilien N144 | Gare de Lyon → Viry-Châtillon
show_name: true
show_icon: true
show_state: false
icon: mdi:bus-clock
icon_height: 25px
tap_action:
action: url
url_path: https://www.transilien.com/fr/page-lignes/noctilien/n144
- type: custom:hui-element
card_type: calendar
title: Planning de la semaine
initial_view: listWeek
entities:
- calendar.agenda_anniversaires_agenda_anniversaires
- calendar.agenda_fetes_agenda_fetes
- calendar.planning_gmao_planning_gmao
- theme: Backend-selected
title: Bibliothèques
path: bibliotheques
icon: mdi:multimedia
type: panel
badges: []
cards:
- type: vertical-stack
cards:
- type: entities
entities:
- type: custom:hui-element
card_type: vertical-stack
cards:
- type: custom:mini-media-player
name: Spotify Control
info: scroll
entity: media_player.spotifyccb
artwork: cover
hide:
volume: true
source: false
icon_state: false
icon: false
power: true
shortcuts:
columns: 3
buttons:
- name: Daily Mix
icon: mdi:account-music
type: service
id: spotcast.start
data:
device_name: ECHOCCB
uri: spotify:playlist:37i9dQZF1E36ob265EuUZs
random_song: true
shuffle: true
start_volume: 50
- name: News
type: service
id: spotcast.start
data:
device_name: ECHOCCB
uri: spotify:playlist:37i9dQZEVXbme2tgo7hwsW
random_song: true
shuffle: true
start_volume: 50
- name: '2020'
type: service
id: spotcast.start
data:
device_name: ECHOCCB
uri: spotify:playlist:37i9dQZF1EM1nWEFUgCRz3
random_song: true
shuffle: true
start_volume: 50
- name: Decouverte
icon: mdi:account-music-outline
type: service
id: spotcast.start
data:
device_name: ECHOCCB
uri: spotify:playlist:37i9dQZEVXcOEmnBe1nsjW
random_song: true
shuffle: true
start_volume: 50
- name: Rock
type: service
id: spotcast.start
data:
device_name: ECHOCCB
uri: spotify:playlist:37i9dQZF1EQpj7X7UK8OOF
random_song: true
shuffle: true
start_volume: 50
- type: custom:mini-media-player
entity: media_player.youtube_music_player
name: Youtube Control
icon: mdi:youtube
info: scroll
artwork: cover
hide:
power: true
shuffle: false
volume: true
icon_state: false
shortcuts:
columns: 3
buttons:
- name: Mon SuperMix
type: Mon SuperMix
id: RDTMAK5uy_kset8DisdE7LSD4TNjEVvrKRTmG7a56sY
- name: Mix News
type: playlist
id: RDTMAK5uy_lr0LWzGrq6FU9GIxWvFHTRPQD2LHMqlFA
- name: Top Tendance
type: playlist
id: PLsa-dEwv56FaoevRy1iSkp2YWt9udgkdJ
- name: Favoris
type: playlist
id: PL5MAIfydPY3zrU3XeazT7eSIDwyp6wS_s
- type: custom:hui-element
card_type: horizontal-stack
title: Streaming Application
cards:
- name: Ebooks
show_name: true
icon: mdi:bookshelf
show_icon: true
type: button
tap_action:
action: url
url_path: https://librairie.cunatbrule.fr/
- name: Spotify Web
show_name: true
icon: mdi:spotify
show_icon: true
type: button
tap_action:
action: url
url_path: https://open.spotify.com/
- name: You Tube Web
show_name: true
icon: mdi:youtube
show_icon: true
type: button
tap_action:
action: url
url_path: https://youtube.com/
- theme: Backend-selected
title: Divertissement
views:
theme: Backend-selected
path: default_view
title: Divertissement
icon: mdi:multimedia
type: horizontal-stack
icon: mdi:remote
badges:
- entity: remote.harmonyccb
icon: mdi:remote-tv
name: Remote TV
tap_action:
action: fire-dom-event
browser_mod:
service: browser_mod.popup
data:
title: Telecommande Harmony TV
content:
type: vertical-stack
cards:
- type: horizontal-stack
cards:
- type: vertical-stack
cards:
- type: vertical-stack
cards:
- type: horizontal-stack
cards:
- type: custom:button-card
entity: select.harmonyccb_activities
name: Power
color: lawngreen
state:
- value: PowerOff
color: red
tap_action:
action: call-service
service: remote.turn_off
service_data:
entity_id: remote.harmonyccb
activity: '-1'
icon: mdi:power
- type: custom:button-card
entity: select.harmonyccb_activities
name: SmartTV
state:
- value: SmartTV
color: lawngreen
tap_action:
action: call-service
service: remote.turn_on
service_data:
entity_id: remote.harmonyccb
activity: '45915040'
icon: mdi:television-guide
- type: custom:button-card
entity: select.harmonyccb_activities
icon: mdi:music
name: Musique
state:
- value: Musique
color: lawngreen
tap_action:
action: call-service
service: remote.turn_on
service_data:
entity_id: remote.harmonyccb
activity: '51079713'
- type: custom:button-card
entity: select.harmonyccb_activities
icon: mdi:microsoft-xbox-controller
name: Jeux
state:
- value: Jeux
color: lawngreen
tap_action:
action: call-service
service: remote.turn_on
service_data:
entity_id: remote.harmonyccb
activity: '51016897'
- type: vertical-stack
cards:
- type: horizontal-stack
cards:
- show_name: true
show_icon: true
type: button
name: Sources
show_state: false
icon: mdi:import
tap_action:
action: fire-dom-event
browser_mod:
service: browser_mod.popup
data:
title: Mes sources
content:
type: vertical-stack
cards:
- type: horizontal-stack
cards:
- type: button
name: SHIELD
show_state: false
icon: mdi:controller
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: AVRCCB
command: InputDvd
- type: button
name: PC
show_state: false
icon: mdi:desktop-tower-monitor
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: AVRCCB
command: InputBlu-ray
- type: button
name: AUX1
show_state: false
icon: mdi:hdmi-port
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: AVRCCB
command: InputAux1
- type: horizontal-stack
cards:
- type: button
name: HEOS
show_state: false
icon: mdi:cast-audio
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: AVRCCB
command: InputHEOS
- type: button
name: Bluetooth
show_state: false
icon: mdi:bluetooth
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: AVRCCB
command: InputBluetooth
- type: button
name: Radio
show_state: false
icon: mdi:radio
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: AVRCCB
command: InputInternetRadio
- show_name: true
show_icon: true
type: button
name: Audio Mode
show_state: false
icon: mdi:surround-sound
tap_action:
action: fire-dom-event
browser_mod:
service: browser_mod.popup
data:
title: Reglages Audio
content:
type: vertical-stack
cards:
- type: horizontal-stack
cards:
- show_name: true
show_icon: true
type: button
name: ModePure
show_state: false
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: AVRCCB
command: ModePure
icon: ''
- show_name: true
show_icon: true
type: button
name: ModeMusic
show_state: false
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: AVRCCB
command: ModeMusic
icon: mdi:music
- show_name: true
show_icon: true
type: button
name: ModeVideoGame
show_state: false
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: AVRCCB
command: ModeVideoGame
icon: mdi:controller-classic
- show_name: true
show_icon: true
type: button
name: ModeMovie
show_state: false
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: AVRCCB
command: ModeMovie
icon: mdi:movie
- type: custom:mini-media-player
entity: media_player.davrccb
name: Sound Mode actif
sound_mode: full
group: true
hide:
icon: true
info: true
power: true
source: true
controls: true
progress: true
state_label: true
volume: true
mute: true
sound_mode: false
shortcuts:
columns: 1
buttons:
- name: Sound Mode AUTO
type: sound_mode
id: AUTO
- type: button
entity: light.hue_whitecolor2
icon: mdi:television-ambient-light
show_name: true
show_icon: true
show_state: true
name: Ambilight+hue
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: TVCCB
command: Ambilight
hold_action:
action: call-service
service: switch.toggle
target:
entity_id: switch.tvccb_ambilight_hue
- show_name: true
show_icon: true
type: button
name: Info
show_state: false
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: AVRCCB
command: Info
hold_action:
action: call-service
service: remote.send_command
data:
device: TVCCB
command: Options
target:
entity_id: remote.harmonyccb
icon: mdi:information
- type: horizontal-stack
cards:
- show_name: true
name: YouTube
icon: mdi:youtube
show_icon: true
type: button
tap_action:
action: toggle
entity: script.start_youtube
- show_name: true
name: Spotify
icon: mdi:spotify
show_icon: true
type: button
tap_action:
action: toggle
entity: script.start_spotify
- show_name: true
name: KODI
icon: mdi:kodi
show_icon: true
type: button
tap_action:
action: toggle
entity: script.start_kodi
- show_name: true
name: Netflix
icon: mdi:netflix
show_icon: true
type: button
tap_action:
action: toggle
entity: script.start_netflix
- type: horizontal-stack
cards:
- type: vertical-stack
cards:
- type: custom:mini-media-player
entity: media_player.davrccb
name: Sound Mode actif
sound_mode: full
group: true
hide:
icon: true
info: true
power: true
source: true
controls: true
progress: true
state_label: true
volume: true
mute: true
sound_mode: false
- type: custom:mini-media-player
entity: media_player.davrccb
name: Level Sound
group: true
hide:
name: true
icon: true
info: true
power: true
source: true
controls: true
progress: true
state_label: true
- type: horizontal-stack
cards:
- show_name: true
show_icon: true
type: button
name: Mute
show_state: false
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: AVRCCB
command: Mute
icon: mdi:volume-mute
- show_name: true
show_icon: true
type: button
name: Settings
show_state: false
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: TVCCB
command: Settings
hold_action:
action: call-service
service: remote.send_command
data:
device: AVRCCB
command: Setup
target:
entity_id: remote.harmonyccb
icon: mdi:cog
- type: horizontal-stack
cards:
- show_name: true
show_icon: true
type: button
name: VolUp
show_state: false
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: AVRCCB
command: VolumeUp
icon: mdi:volume-plus
hold_action:
action: call-service
service: remote.send_command
data:
device: AVRCCB
command: VolumeUp
num_repeats: 15
target:
entity_id: remote.harmonyccb
- show_name: false
show_icon: true
type: button
name: DirectionUp
show_state: false
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: TVCCB
command: DirectionUp
icon: mdi:arrow-up
- show_name: true
show_icon: true
type: button
name: ChannelUp
show_state: false
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: TVCCB
command: ChannelUp
icon: mdi:arrow-up-bold
- type: horizontal-stack
cards:
- show_name: false
show_icon: true
type: button
name: DirectionLeft
show_state: false
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: TVCCB
command: DirectionLeft
icon: mdi:arrow-left
- show_name: true
show_icon: false
type: button
name: OK
show_state: false
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: TVCCB
command: OK
icon: ''
- show_name: false
show_icon: true
type: button
name: DirectionRight
show_state: false
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: TVCCB
command: DirectionRight
icon: mdi:arrow-right
- type: horizontal-stack
cards:
- show_name: true
show_icon: true
type: button
name: VolDown
show_state: false
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: AVRCCB
command: VolumeDown
hold_action:
action: call-service
service: remote.send_command
data:
device: AVRCCB
command: VolumeDown
num_repeats: 21
target:
entity_id: remote.harmonyccb
icon: mdi:volume-minus
- show_name: false
show_icon: true
type: button
name: DirectionDown
show_state: false
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: TVCCB
command: DirectionDown
icon: mdi:arrow-down
- show_name: true
show_icon: true
type: button
name: ChannelDown
show_state: false
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: TVCCB
command: ChannelDown
icon: mdi:arrow-down-bold
- type: horizontal-stack
cards:
- show_name: true
show_icon: true
type: button
name: Rewind
show_state: false
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: TVCCB
command: Rewind
icon: mdi:rewind
- show_name: true
show_icon: true
type: button
name: Play
show_state: false
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: TVCCB
command: Play
icon: mdi:play
- show_name: true
show_icon: true
type: button
name: FastForward
show_state: false
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: TVCCB
command: FastForward
icon: mdi:fast-forward
- type: horizontal-stack
cards:
- show_name: true
show_icon: true
type: button
name: Record
show_state: false
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: TVCCB
command: Record
icon: mdi:record
- show_name: true
show_icon: true
type: button
name: Pause
show_state: false
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: TVCCB
command: Pause
icon: mdi:pause
- show_name: true
show_icon: true
type: button
name: Stop
show_state: false
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: TVCCB
command: Stop
icon: mdi:stop
- type: horizontal-stack
cards:
- show_name: true
show_icon: true
type: button
name: Home
show_state: false
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: NVIDIACCB
command: Home
hold_action:
action: call-service
service: remote.send_command
data:
device: TVCCB
command: Home
target:
entity_id: remote.harmonyccb
icon: mdi:home
- show_name: true
show_icon: true
type: button
name: Back
show_state: false
tap_action:
action: call-service
service: remote.send_command
service_data:
entity_id: remote.harmonyccb
device: TVCCB
command: Back
icon: mdi:arrow-u-left-bottom
- entity: person.christian
tap_action:
action: fire-dom-event
browser_mod:
service: browser_mod.popup
data:
title: Christian - Samsung A52s
content:
type: vertical-stack
cards:
- type: entities
state_color: true
show_header_toggle: false
entities:
- entity: person.christian
secondary_info: last-updated
- type: custom:hui-element
card_type: history-graph
entities:
- entity: person.christian
hours_to_show: 24
refresh_interval: 0
- type: custom:hui-element
card_type: glance
show_name: false
entities:
- entity: binary_sensor.sm_a528b_is_charging
- entity: sensor.sm_a528b_battery_level
- entity: sensor.sm_a528b_battery_temperature
- type: custom:hui-element
card_type: entities
entities:
- entity: sensor.sm_a528b_geocoded_location
name: Localisation
- entity: sensor.sm_a528b_public_ip_address
name: IP Public
- entity: sensor.sm_a528b_sim_1
name: 'N° téléphone: 07.57.76.36.34'
- entity: person.ccunatbrule
name: 'IMEI: 357645763566230 - 01'
icon: mdi:identifier
- type: button
name: Trouver mon smartphone
icon: mdi:bell-ring
tap_action:
action: call-service
service: script.find_my_phone
- type: weblink
name: Find your phone
url: https://myaccount.google.com/find-your-phone
icon: mdi:map-marker-radius
- type: map
aspect_ratio: '16:9'
default_zoom: 13
entities:
- device_tracker.sm_a528b
- person.ccunatbrule
- entity: person.home
tap_action:
action: fire-dom-event
browser_mod:
service: browser_mod.popup
data:
title: Lenovo Tab M8
content:
type: vertical-stack
cards:
- type: entities
state_color: true
show_header_toggle: false
entities:
- entity: device_tracker.lenovo_tb_8505x
secondary_info: last-updated
- type: custom:hui-element
card_type: history-graph
entities:
- entity: device_tracker.lenovo_tb_8505x
name: TabM8
hours_to_show: 24
refresh_interval: 0