-
Notifications
You must be signed in to change notification settings - Fork 556
Expand file tree
/
Copy pathfingerprints.yml
More file actions
4279 lines (4261 loc) · 126 KB
/
Copy pathfingerprints.yml
File metadata and controls
4279 lines (4261 loc) · 126 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
matterManufacturer:
#Aqara
- id: "4447/6145"
deviceLabel: Aqara LED Bulb T2 RGB CCT
vendorId: 0x115F
productId: 0x1801
deviceProfileName: light-color-level
- id: "4447/6146"
deviceLabel: Aqara LED Bulb T2 CCT
vendorId: 0x115F
productId: 0x1802
deviceProfileName: light-level-colorTemperature-2700K-6500K
- id: "4447/6149"
deviceLabel: Aqara LED Bulb T2 RGB CCT
vendorId: 0x115F
productId: 0x1805
deviceProfileName: light-color-level
- id: "4447/6150"
deviceLabel: Aqara LED Bulb T2 CCT
vendorId: 0x115F
productId: 0x1806
deviceProfileName: light-level-colorTemperature-2700K-6500K
- id: "4447/8196"
deviceLabel: Climate Sensor W100
vendorId: 0x115F
productId: 0x2004
deviceProfileName: 3-button-battery-temperature-humidity
- id: "4447/4105"
deviceLabel: Aqara Light Switch H2 EU (4 Buttons 2 Channel)
vendorId: 0x115F
productId: 0x1009
deviceProfileName: 4-button
- id: "4447/4104"
deviceLabel: Aqara Light Switch H2 EU (2 Buttons 1 Channel)
vendorId: 0x115F
productId: 0x1008
deviceProfileName: 2-button
- id: "4447/4099"
deviceLabel: Aqara Light Switch H2 US (2 Buttons 1 Channel)
vendorId: 0x115F
productId: 0x1003
deviceProfileName: 2-button
- id: "4447/4100"
deviceLabel: Aqara Light Switch H2 US (2 Buttons 2 Channel)
vendorId: 0x115F
productId: 0x1004
deviceProfileName: 2-button
- id: "4447/4101"
deviceLabel: Aqara Light Switch H2 US (4 Buttons 3 Channel)
vendorId: 0x115F
productId: 0x1005
deviceProfileName: 4-button
#AiDot
- id: "Linkind/Smart/Light/Bulb/A19/RGBTW"
deviceLabel: Linkind Smart Light Bulb A19 RGBTW
vendorId: 0x1168
productId: 0x03e8
deviceProfileName: light-color-level-1800K-6500K
- id: "OREiN/Smart/Light/Bulb/A19/RGBTW"
deviceLabel: OREiN Smart Light Bulb A19 RGBTW
vendorId: 0x1168
productId: 0x03ea
deviceProfileName: light-color-level-1800K-6500K
- id: "Linkind/Smart/Light/Bulb/BR30/RGBTW"
deviceLabel: Linkind Smart Light Bulb BR30 RGBTW
vendorId: 0x1168
productId: 0x03eb
deviceProfileName: light-color-level-1800K-6500K
- id: "OREiN/Smart/Light/Bulb/BR30/RGBTW"
deviceLabel: OREiN Smart Light Bulb BR30 RGBTW
vendorId: 0x1168
productId: 0x03ec
deviceProfileName: light-color-level-1800K-6500K
- id: "Consciot/Smart/Light/Bulb/A19/RGBT"
deviceLabel: Consciot Smart Light Bulb A19 RGBT
vendorId: 0x1168
productId: 0x0405
deviceProfileName: light-color-level-1800K-6500K
- id: "4456/1010"
deviceLabel: Aidot OREiN Matter Smart Light Bulb BR30 RGBTW 1200lm
vendorId: 0x1168
productId: 0x03F2
deviceProfileName: light-color-level-1800K-6500K
- id: "4456/1011"
deviceLabel: Smart Light Bulb A60
vendorId: 0x1168
productId: 0x03F3
deviceProfileName: light-color-level-1800K-6500K
- id: "4456/1012"
deviceLabel: Aidot Linkind Matter Smart Light Bulb BR30 RGBTW 1200lm
vendorId: 0x1168
productId: 0x03F4
deviceProfileName: light-color-level-1800K-6500K
- id: "4456/1013"
deviceLabel: Matter Smart Light Bulb A21 RGBTW 1600lm
vendorId: 0x1168
productId: 0x03F5
deviceProfileName: light-color-level-1800K-6500K
- id: "AiDot/Smart/Light/Bulb/A19/RGBTW"
deviceLabel: AiDot Smart Light Bulb A19 RGBT
vendorId: 0x1168
productId: 0x03f8
deviceProfileName: light-color-level-1800K-6500K
- id: "Linkind/Smart/Light/Bulb/A19/CCT"
deviceLabel: Smart Light Bulb A19 CCT
vendorId: 0x1168
productId: 0x03f9
deviceProfileName: light-level-colorTemperature-2700K-6500K
- id: "4456/1024"
deviceLabel: Smart Plug
vendorId: 0x1168
productId: 0x0400
deviceProfileName: plug-binary
- id: "4456/1007"
deviceLabel: Matter Smart Light Bulb A21 RGBTW 1600lm
vendorId: 0x1168
productId: 0x03EF
deviceProfileName: light-color-level-1800K-6500K
- id: "4456/1005"
deviceLabel: Matter Smart Light Bulb A19 RGBTW 1100lm
vendorId: 0x1168
productId: 0x03ED
deviceProfileName: light-color-level-1800K-6500K
- id: "4456/1006"
deviceLabel: Matter Smart Light Bulb A19 RGBTW 1100lm
vendorId: 0x1168
productId: 0x03EE
deviceProfileName: light-color-level-1800K-6500K
- id: "4456/1102"
deviceLabel: Matter Smart Plug
vendorId: 0x1168
productId: 0x044E
deviceProfileName: plug-binary
- id: "4456/1019"
deviceLabel: Matter Smart Filament Bulb ST58 CCT
vendorId: 0x1168
productId: 0x03FB
deviceProfileName: light-level-colorTemperature-2700K-6500K
- id: "4456/1020"
deviceLabel: AiDot OREiN Matter Smart Filament Bulb ST58 CCT
vendorId: 0x1168
productId: 0x03FC
deviceProfileName: light-level-colorTemperature-2700K-6500K
- id: "5014/4096"
deviceLabel: Linkind LED Light Strip EL6
vendorId: 0x1396
productId: 0x1000
deviceProfileName: light-color-level-1800K-6500K
- id: "5014/4101"
deviceLabel: Linkind Smart Plug with Light
vendorId: 0x1396
productId: 0x1005
deviceProfileName: plug-binary
- id: "5014/4097"
deviceLabel: OREIN Bath Fan OLO5S
vendorId: 0x1396
productId: 0x1001
deviceProfileName: fan-modular
- id: "5014/4214"
deviceLabel: Linkind Smart Light Bulb
vendorId: 0x1396
productId: 0x1076
deviceProfileName: light-color-level
- id: "5014/4245"
deviceLabel: OREiN Matter smart Bathroom Fan
vendorId: 0x1396
productId: 0x1095
deviceProfileName: fan-modular
- id: "5014/4246"
deviceLabel: OREiN Matter smart Bathroom Fan
vendorId: 0x1396
productId: 0x1096
deviceProfileName: fan-modular
- id: "5014/4247"
deviceLabel: OREiN Matter smart Bathroom Fan
vendorId: 0x1396
productId: 0x1097
deviceProfileName: fan-modular
- id: "5014/4215"
deviceLabel: Linkind Smart Light Bulb
vendorId: 0x1396
productId: 0x1077
deviceProfileName: light-color-level
- id: "5014/4273"
deviceLabel: Linkind Smart Ceiling Light
vendorId: 0x1396
productId: 0x10B1
deviceProfileName: light-level-colorTemperature
#Bosch Smart Home
- id: "4617/12310"
deviceLabel: Plug Compact [M]
vendorId: 0x1209
productId: 0x3016
deviceProfileName: plug-power-energy-powerConsumption
#Chengdu
- id: "5218/8197"
deviceLabel: Magic Cube DS001
vendorId: 0x1462
productId: 0x2005
deviceProfileName: light-level-colorTemperature
#ThirdReality
- id: "ThirdReality/WiFi"
deviceLabel: THIRDREALITY Night Light
vendorId: 0x1407
productId: 0x1088
deviceProfileName: light-color-level-illuminance-motion-1000K-15000K
- id: "5127/5121"
deviceLabel: ThirdReality Smart Night Light -T
vendorId: 0x1407
productId: 0x1401
deviceProfileName: light-color-level-illuminance-motion
- id: "5127/4744"
deviceLabel: Smart Bridge MZ1
vendorId: 0x1407
productId: 0x1288
deviceProfileName: matter-bridge
- id: "5127/5000"
deviceLabel: Smart Mechanical Keyboard MK1
vendorId: 0x1407
productId: 0x1388
deviceProfileName: 12-button-keyboard
#Edishine
- id: "5458/3328"
deviceLabel: Edishine Smart Led Bulb
vendorId: 0x1552
productId: 0x0D00
deviceProfileName: light-color-level
#ELEGRP
- id: "5158/3"
deviceLabel: ELEGRP Smart Mini Plug
vendorId: 0x1426
productId: 0x0003
deviceProfileName: plug-binary
#Elko
- id: "5170/4096"
deviceLabel: RFSAI-62B-SL/MT
vendorId: 0x1432
productId: 0x1000
deviceProfileName: switch-binary
- id: "5170/4097"
deviceLabel: RFGB-40B(W)/MT
vendorId: 0x1432
productId: 0x1001
deviceProfileName: 4-button-battery
- id: "5170/4099"
deviceLabel: RFWB-40G/MT
vendorId: 0x1432
productId: 0x1003
deviceProfileName: 4-button-battery
#Eufy
- id: "5427/19"
deviceLabel: eufy Permanent Outdoor Lights S4
vendorId: 0x1533
productId: 0x0013
deviceProfileName: light-color-level-2200K-6500K
#Eve
- id: "Eve/Energy/US"
deviceLabel: Eve Energy
vendorId: 0x130A
productId: 0x53
deviceProfileName: power-energy-powerConsumption
- id: "Eve/Energy/Europe"
deviceLabel: Eve Energy
vendorId: 0x130A
productId: 0x50
deviceProfileName: power-energy-powerConsumption
- id: "Eve/Energy/U.K."
deviceLabel: Eve Energy
vendorId: 0x130A
productId: 0x54
deviceProfileName: power-energy-powerConsumption
- id: "Eve/Energy/Australia"
deviceLabel: Eve Energy
vendorId: 0x130A
productId: 0x5E
deviceProfileName: power-energy-powerConsumption
- id: "Eve/Energy/OutletUS"
deviceLabel: Eve Energy Outlet
vendorId: 0x130A
productId: 0x69
deviceProfileName: power-energy-powerConsumption
- id: "4874/121"
deviceLabel: Eve Dimmer Switch
vendorId: 0x130A
productId: 0x0079
deviceProfileName: light-level
- id: "4874/106"
deviceLabel: Eve Energy Switzerland
vendorId: 0x130A
productId: 0x006A
deviceProfileName: power-energy-powerConsumption
- id: "4874/107"
deviceLabel: Eve Energy Outdoor
vendorId: 0x130A
productId: 0x006B
deviceProfileName: power-energy-powerConsumption
- id: "4874/93"
deviceLabel: Eve Light Switch
vendorId: 0x130A
productId: 0x005D
deviceProfileName: switch-binary
- id: "4874/67"
deviceLabel: Eve Light Switch
vendorId: 0x130A
productId: 0x0043
deviceProfileName: switch-binary
#Ezviz
- id: "5172/4096"
deviceLabel: A3 Home Gateway
vendorId: 0x1434
productId: 0x1000
deviceProfileName: matter-bridge
- id: "5172/4352"
deviceLabel: Wi-Fi Relay
vendorId: 0x1434
productId: 0x1100
deviceProfileName: plug-binary
#GE
- id: "4921/177"
deviceLabel: Cync Full Color 2 Inch Wafer
vendorId: 0x1339
productId: 0x00B1
deviceProfileName: light-color-level-2000K-7000K
- id: "4921/44"
deviceLabel: Cync Full Color 3 Inch Puck
vendorId: 0x1339
productId: 0x002C
deviceProfileName: light-color-level-2000K-7000K
- id: "4921/174"
deviceLabel: Cync Full Color 4 Inch Wafer
vendorId: 0x1339
productId: 0x00AE
deviceProfileName: light-color-level-2000K-7000K
- id: "4921/180"
deviceLabel: Cync 4 Inch High Ceiling Wafer
vendorId: 0x1339
productId: 0x00B4
deviceProfileName: light-color-level-2000K-7000K
- id: "4921/175"
deviceLabel: Cync Full Color 6 Inch Wafer
vendorId: 0x1339
productId: 0x00AF
deviceProfileName: light-color-level-2000K-7000K
- id: "4921/181"
deviceLabel: Cync 6 Inch High Ceiling Wafer
vendorId: 0x1339
productId: 0x00B5
deviceProfileName: light-color-level-2000K-7000K
- id: "4921/182"
deviceLabel: Cync Full Color A19 Clear Spiral
vendorId: 0x1339
productId: 0x00B6
deviceProfileName: light-color-level-2000K-7000K
- id: "4921/41"
deviceLabel: Cync Full Color Undercabinet 12 Inch
vendorId: 0x1339
productId: 0x0029
deviceProfileName: light-color-level-2000K-7000K
- id: "4921/42"
deviceLabel: Cync Full Color Undercabinet 18 Inch
vendorId: 0x1339
productId: 0x002A
deviceProfileName: light-color-level-2000K-7000K
- id: "4921/43"
deviceLabel: Cync Full Color Undercabinet 24 Inch
vendorId: 0x1339
productId: 0x002B
deviceProfileName: light-color-level-2000K-7000K
- id: "GELightingSavant/Bulb/A19"
deviceLabel: Cync Full Color A19
vendorId: 0x1339
productId: 0x89
deviceProfileName: light-color-level-2000K-7000K
- id: "GELightingSavant/Plug/Indoor"
deviceLabel: Cync Indoor Plug
vendorId: 0x1339
productId: 0xAC
deviceProfileName: plug-binary
- id: "4921/46"
deviceLabel: Cync Full Color RS Can
vendorId: 0x1339
productId: 0x002E
deviceProfileName: light-color-level-2000K-7000K
- id: "4921/98"
deviceLabel: Cync Full Color Globe
vendorId: 0x1339
productId: 0x0062
deviceProfileName: light-color-level-2000K-7000K
- id: "4921/171"
deviceLabel: Cync Full Color A19
vendorId: 0x1339
productId: 0x00AB
deviceProfileName: light-color-level-2000K-7000K
- id: "4921/97"
deviceLabel: Cync Full Color ST19
vendorId: 0x1339
productId: 0x0061
deviceProfileName: light-color-level-2000K-7000K
- id: "4921/104"
deviceLabel: Cync Full Color PAR38
vendorId: 0x1339
productId: 0x0068
deviceProfileName: light-color-level-2000K-7000K
- id: "4921/110"
deviceLabel: Cync Indoor Light Strip 16ft
vendorId: 0x1339
productId: 0x006E
deviceProfileName: light-color-level-2000K-7000K
- id: "4921/123"
deviceLabel: Cync Indoor Light Strip 32ft
vendorId: 0x1339
productId: 0x007B
deviceProfileName: light-color-level-2000K-7000K
- id: "4921/109"
deviceLabel: Cync Reveal Full Color A21
vendorId: 0x1339
productId: 0x006D
deviceProfileName: light-color-level-2000K-7000K
- id: "4921/111"
deviceLabel: Cync Outdoor Plug
vendorId: 0x1339
productId: 0x006F
deviceProfileName: plug-binary
- id: "4921/21"
deviceLabel: Cync Full Color A19
vendorId: 0x1339
productId: 0x0015
deviceProfileName: light-color-level-2000K-7000K
- id: "4921/101"
deviceLabel: Cync Full Color Deco Candle Base
vendorId: 0x1339
productId: 0x0065
deviceProfileName: light-color-level-2000K-7000K
- id: "4921/105"
deviceLabel: Cync Full Color A21
vendorId: 0x1339
productId: 0x0069
deviceProfileName: light-color-level-2000K-7000K
- id: "4921/173"
deviceLabel: Cync Full Color BR30
vendorId: 0x1339
productId: 0x00AD
deviceProfileName: light-color-level-2000K-7000K
- id: "4921/107"
deviceLabel: Cync Reveal Full Color A19
vendorId: 0x1339
productId: 0x006B
deviceProfileName: light-color-level-2000K-7000K
- id: "4921/124"
deviceLabel: Cync Keypad Dimmer
vendorId: 0x1339
productId: 0x007C
deviceProfileName: light-level-2-button
- id: "4921/125"
deviceLabel: Cync Paddle Dimmer
vendorId: 0x1339
productId: 0x007D
deviceProfileName: switch-level
- id: "4921/108"
deviceLabel: Cync Reveal Full Color BR30
vendorId: 0x1339
productId: 0x006C
deviceProfileName: light-color-level-2000K-7000K
- id: "4921/64"
deviceLabel: Cync Indoor Plug
vendorId: 0x1339
productId: 0x0040
deviceProfileName: plug-binary
- id: "4921/118"
deviceLabel: Cync Button Switch w Traveler
vendorId: 0x1339
productId: 0x0076
deviceProfileName: light-binary
- id: "4921/119"
deviceLabel: Cync Paddle Switch w Traveler
vendorId: 0x1339
productId: 0x0077
deviceProfileName: light-binary
- id: "4921/120"
deviceLabel: Cync Toggle Switch w Traveler
vendorId: 0x1339
productId: 0x0078
deviceProfileName: light-binary
- id: "4921/116"
deviceLabel: Cync Button Dimmer w Traveler
vendorId: 0x1339
productId: 0x0074
deviceProfileName: switch-level
- id: "4921/117"
deviceLabel: Cync Motion Dimmer w Traveler
vendorId: 0x1339
productId: 0x0075
deviceProfileName: switch-level
- id: "4921/22"
deviceLabel: Cync Full Color RS Can
vendorId: 0x1339
productId: 0x0016
deviceProfileName: light-color-level-2000K-7000K
#Govee
- id: "4999/24740"
deviceLabel: Govee Square Ceiling Light (12 inch)
vendorId: 0x1387
productId: 0x60A4
deviceProfileName: light-color-level
- id: "4999/28871"
deviceLabel: Govee Christmas String Lights 2 (Clear Wire) 164ft/50m
vendorId: 0x1387
productId: 0x70C7
deviceProfileName: light-color-level
- id: "4999/25043"
deviceLabel: Govee Neon Rope Light 2 9.8ft/3m
vendorId: 0x1387
productId: 0x61D3
deviceProfileName: light-color-level
- id: "4999/24595"
deviceLabel: Govee RGBWW Smart LED Bulb BR30 850lm
vendorId: 0x1387
productId: 0x6013
deviceProfileName: light-color-level
- id: "4999/25011"
deviceLabel: Govee Strip Light with Cover 9.8f/3m
vendorId: 0x1387
productId: 0x61B3
deviceProfileName: light-color-level
- id: "4999/24586"
deviceLabel: Govee RGBWW Smart LED Bulb A19 1200lm
vendorId: 0x1387
productId: 0x600A
deviceProfileName: light-color-level
- id: "4999/26116"
deviceLabel: Govee HDMI 2.1 Sync Box 2 75-85
vendorId: 0x1387
productId: 0x6604
deviceProfileName: light-color-level
- id: "4999/24729"
deviceLabel: Govee TV Backlight 3 Lite 75-85
vendorId: 0x1387
productId: 0x6099
deviceProfileName: light-color-level
# - id: "4999/28871"
# deviceLabel: Govee Christmas String Lights 2 (Green Wire) 164ft/50m
# vendorId: 0x1387
# productId: 0x70C7
# deviceProfileName: light-color-level
- id: "4999/28873"
deviceLabel: Govee Christmas String Lights 2 (Green Wire) 328ft/100m
vendorId: 0x1387
productId: 0x70C9
deviceProfileName: light-color-level
- id: "4999/24754"
deviceLabel: Govee Tree Floor Lamp
vendorId: 0x1387
productId: 0x60B2
deviceProfileName: light-color-level
- id: "4999/25078"
deviceLabel: Govee Strip Light 2 Pro 32.8ft/10m
vendorId: 0x1387
productId: 0x61F6
deviceProfileName: light-color-level
- id: "4999/25077"
deviceLabel: Govee Strip Light 2 Pro 16.4ft/5m
vendorId: 0x1387
productId: 0x61F5
deviceProfileName: light-color-level
- id: "4999/24588"
deviceLabel: Govee RGBWW Smart LED Bulb E14 450lm
vendorId: 0x1387
productId: 0x600C
deviceProfileName: light-color-level
- id: "4999/28868"
deviceLabel: Govee Christmas String Lights 2 (Clear Wire) 66ft/20m
vendorId: 0x1387
productId: 0x70C4
deviceProfileName: light-color-level
- id: "4999/25074"
deviceLabel: Govee Strip Light 2 Pro 6.56ft/2m
vendorId: 0x1387
productId: 0x61F2
deviceProfileName: light-color-level
- id: "4999/25013"
deviceLabel: Govee Strip Light with Cover 16.4ft/5m
vendorId: 0x1387
productId: 0x61B5
deviceProfileName: light-color-level
- id: "4999/24753"
deviceLabel: Govee Torchiere Floor Lamp
vendorId: 0x1387
productId: 0x60B1
deviceProfileName: light-color-level
- id: "4999/28869"
deviceLabel: Govee Christmas String Lights 2 (Green Wire) 99ft/30m
vendorId: 0x1387
productId: 0x70C5
deviceProfileName: light-color-level
- id: "4999/24592"
deviceLabel: Govee RGBWW Smart LED Bulb BR30 1200lm
vendorId: 0x1387
productId: 0x6010
deviceProfileName: light-color-level
# - id: "4999/28869"
# deviceLabel: Govee Christmas String Lights 2 (Clear Wire) 99ft/30m
# vendorId: 0x1387
# productId: 0x70C5
# deviceProfileName: light-color-level
- id: "4999/24607"
deviceLabel: Govee Recessed Downlight 2 (6 inch)
vendorId: 0x1387
productId: 0x601F
deviceProfileName: light-color-level
- id: "4999/25045"
deviceLabel: Govee Neon Rope Light 2 16.4ft/5m
vendorId: 0x1387
productId: 0x61D5
deviceProfileName: light-color-level
- id: "4999/24603"
deviceLabel: Govee Recessed Downlight (4 inch)
vendorId: 0x1387
productId: 0x601B
deviceProfileName: light-color-level
- id: "4999/24602"
deviceLabel: Govee Recessed Downlight (6 inch)
vendorId: 0x1387
productId: 0x601A
deviceProfileName: light-color-level
- id: "4999/25014"
deviceLabel: Govee Strip Light with Cover 32.8ft/10m
vendorId: 0x1387
productId: 0x61B6
deviceProfileName: light-color-level
- id: "4999/24610"
deviceLabel: Govee Table Lamp 2
vendorId: 0x1387
productId: 0x6022
deviceProfileName: light-color-level
- id: "4999/24606"
deviceLabel: Govee Recessed Downlight 2 (4 inch)
vendorId: 0x1387
productId: 0x601E
deviceProfileName: light-color-level
- id: "4999/24589"
deviceLabel: Govee RGBWW Smart LED Bulb MR16 400lm
vendorId: 0x1387
productId: 0x600D
deviceProfileName: light-color-level
- id: "4999/24700"
deviceLabel: Govee Floor Lamp 2
vendorId: 0x1387
productId: 0x607C
deviceProfileName: light-color-level
# - id: "4999/26116"
# deviceLabel: Govee HDMI 2.1 Sync Box 2 55-65
# vendorId: 0x1387
# productId: 0x6604
# deviceProfileName: light-color-level
- id: "4999/24694"
deviceLabel: Govee Floor Lamp Basic
vendorId: 0x1387
productId: 0x6076
deviceProfileName: light-color-level
- id: "4999/24587"
deviceLabel: Govee RGBWW Smart LED Bulb E12 450lm
vendorId: 0x1387
productId: 0x600B
deviceProfileName: light-color-level
- id: "4999/25017"
deviceLabel: Govee Strip Light with Skyline Kit 19.7ft/6m
vendorId: 0x1387
productId: 0x61B9
deviceProfileName: light-color-level
- id: "4999/24742"
deviceLabel: Govee Ceiling Light Pro (15 inch)
vendorId: 0x1387
productId: 0x60A6
deviceProfileName: light-color-level
- id: "4999/24666"
deviceLabel: Govee TV Backlight 3 Lite Kit 55-65
vendorId: 0x1387
productId: 0x605A
deviceProfileName: light-color-level
- id: "4999/24608"
deviceLabel: Govee Table Lamp 2 Pro Sound by JBL
vendorId: 0x1387
productId: 0x6020
deviceProfileName: light-color-level
# - id: "4999/28868"
# deviceLabel: Govee Christmas String Lights 2 (Green Wire) 66ft/20m
# vendorId: 0x1387
# productId: 0x70C4
# deviceProfileName: light-color-level
- id: "4999/25046"
deviceLabel: Govee Neon Rope Light 2 32.8ft/10m
vendorId: 0x1387
productId: 0x61D6
deviceProfileName: light-color-level
- id: "4999/25061"
deviceLabel: Govee COB Strip Light Pro 9.8ft/3m
vendorId: 0x1387
productId: 0x61E5
deviceProfileName: light-color-level
- id: "4999/24723"
deviceLabel: Govee Star Light Projector (Aurora)
vendorId: 0x1387
productId: 0x6093
deviceProfileName: light-color-level
- id: "4999/25062"
deviceLabel: Govee COB Strip Light Pro 16.4ft/5m
vendorId: 0x1387
productId: 0x61E6
deviceProfileName: light-color-level
- id: "4999/24752"
deviceLabel: Govee Uplighter Floor Lamp
vendorId: 0x1387
productId: 0x60B0
deviceProfileName: light-color-level
- id: "4999/24727"
deviceLabel: Govee TV Backlight 3 Lite 40-50
vendorId: 0x1387
productId: 0x6097
deviceProfileName: light-color-level
- id: "4999/24582"
deviceLabel: Govee RGBWW Smart LED Bulb A19 1000lm
vendorId: 0x1387
productId: 0x6006
deviceProfileName: light-color-level
- id: "4999/25016"
deviceLabel: Govee Strip Light with Skyline Kit 13.1ft/4m
vendorId: 0x1387
productId: 0x61B8
deviceProfileName: light-color-level
- id: "4999/26737"
deviceLabel: Govee Christmas Sparkle String Lights 99ft
vendorId: 0x1387
productId: 0x6871
deviceProfileName: light-color-level
- id: "4999/26736"
deviceLabel: Govee Christmas Sparkle String Lights 66ft
vendorId: 0x1387
productId: 0x6870
deviceProfileName: light-color-level
- id: "4999/26272"
deviceLabel: Govee TV Backlight 3 Pro 55-65
vendorId: 0x1387
productId: 0x66A0
deviceProfileName: light-color-level
# - id: "4999/26272"
# deviceLabel: Govee TV Backlight 3 Pro 75-85
# vendorId: 0x1387
# productId: 0x66A0
# deviceProfileName: light-color-level
- id: "4999/28854"
deviceLabel: Govee Curtain Lights Pro
vendorId: 0x1387
productId: 0x70B6
deviceProfileName: light-color-level
- id: "4999/24733"
deviceLabel: Govee Galaxy Light Star Projector 2 Pro
vendorId: 0x1387
productId: 0x609D
deviceProfileName: light-color-level
- id: "4999/24725"
deviceLabel: Govee Star Projector Light
vendorId: 0x1387
productId: 0x6095
deviceProfileName: light-color-level
- id: "4999/24724"
deviceLabel: Govee Star Projector Light
vendorId: 0x1387
productId: 0x6094
deviceProfileName: light-color-level
- id: "4999/24646"
deviceLabel: Govee TV Light Bar
vendorId: 0x1387
productId: 0x6046
deviceProfileName: light-color-level
- id: "4999/24662"
deviceLabel: Govee RGBICWW Light Bar
vendorId: 0x1387
productId: 0x6056
deviceProfileName: light-color-level
- id: "4999/5281"
deviceLabel: Govee Smart Bulb PAR38
vendorId: 0x1387
productId: 0x14A1
deviceProfileName: light-color-level
- id: "4999/5121"
deviceLabel: Govee Smart Bulb A21 1600lm
vendorId: 0x1387
productId: 0x1401
deviceProfileName: light-color-level
- id: "4999/5313"
deviceLabel: Govee Edison Bulb
vendorId: 0x1387
productId: 0x14C1
deviceProfileName: light-color-level
- id: "4999/5312"
deviceLabel: Govee Edison Bulb
vendorId: 0x1387
productId: 0x14C0
deviceProfileName: light-color-level
- id: "4999/5680"
deviceLabel: Govee Lantern Floor Lamp
vendorId: 0x1387
productId: 0x1630
deviceProfileName: light-color-level
- id: "4999/5953"
deviceLabel: Govee Table Lamp Classic
vendorId: 0x1387
productId: 0x1741
deviceProfileName: light-color-level
- id: "4999/5808"
deviceLabel: Govee Floor Lamp 3
vendorId: 0x1387
productId: 0x16B0
deviceProfileName: light-color-level
- id: "4999/5824"
deviceLabel: Govee Floor Lamp 3 Lite
vendorId: 0x1387
productId: 0x16C0
deviceProfileName: light-color-level
- id: "4999/4720"
deviceLabel: Govee Ceiling Light Ultra (21inch)
vendorId: 0x1387
productId: 0x1270
deviceProfileName: light-color-level
# Hager
- id: "4741/8"
deviceLabel: Hager matter 2 buttons (battery)
vendorId: 0x1285
productId: 0x0008
deviceProfileName: 2-button-batteryLevel
- id: "4741/9"
deviceLabel: Hager matter 4 buttons (battery)
vendorId: 0x1285
productId: 0x0009
deviceProfileName: 4-button-batteryLevel
# HAOJAI
- id: "5530/4113"
deviceLabel: HAOJAI Smart Switch 3-key
vendorId: 0x159A
productId: 0x1011
deviceProfileName: 3-button-motion
- id: "5530/4098"
deviceLabel: HAOJAI Smart Switch 6-key
vendorId: 0x159A
productId: 0x1002
deviceProfileName: 6-button-motion
# Hue
- id: "4107/2049"
deviceLabel: Hue W 1600 A21 E26 1P NAM
vendorId: 0x100B
productId: 0x0801
deviceProfileName: light-level
- id: "4107/297"
deviceLabel: Hue WCA 650 BR30 E26 1P NAM
vendorId: 0x100B
productId: 0x0129
deviceProfileName: light-color-level
- id: "4107/2048"
deviceLabel: Hue WA 810 A19 E26 1P NAM
vendorId: 0x100B
productId: 0x0800
deviceProfileName: light-level-colorTemperature
# Intecular
- id: "5226/32769"
deviceLabel: InvisOutlet
vendorId: 0x146A
productId: 0x8001
deviceProfileName: plug-binary
#Ledvance
- id: "4489/843"
deviceLabel: Matter Filament RGBW
vendorId: 0x1189
productId: 0x034B
deviceProfileName: light-color-level
- id: "4489/844"
deviceLabel: Matter Filament RGBW
vendorId: 0x1189
productId: 0x034C
deviceProfileName: light-color-level
- id: "4489/845"
deviceLabel: Matter Filament RGBW
vendorId: 0x1189
productId: 0x034D
deviceProfileName: light-color-level
- id: "4489/828"
deviceLabel: Ledvance Matter Classic A RGBW
vendorId: 0x1189
productId: 0x033C
deviceProfileName: light-color-level
- id: "4489/829"
deviceLabel: Ledvance Matter Classic A RGBW
vendorId: 0x1189
productId: 0x033D
deviceProfileName: light-color-level
- id: "4489/831"
deviceLabel: Ledvance Matter Classic A RGBW
vendorId: 0x1189
productId: 0x033F
deviceProfileName: light-color-level
- id: "4489/832"
deviceLabel: Ledvance Matter Classic A RGBW
vendorId: 0x1189
productId: 0x0340
deviceProfileName: light-color-level
- id: "4489/833"
deviceLabel: Ledvance Matter Classic B P RGBW
vendorId: 0x1189
productId: 0x0341
deviceProfileName: light-color-level
- id: "4489/835"
deviceLabel: Ledvance Matter Classic B P RGBW
vendorId: 0x1189
productId: 0x0343
deviceProfileName: light-color-level
- id: "4489/1120"
deviceLabel: Ledvance Matter PAR16 RGBW
vendorId: 0x1189
productId: 0x0460
deviceProfileName: light-color-level
- id: "4489/1121"
deviceLabel: Ledvance Matter Classic G RGBW
vendorId: 0x1189
productId: 0x0461
deviceProfileName: light-color-level
- id: "4489/1372"
deviceLabel: MATTER PLUG EU WH
vendorId: 0x1189
productId: 0x055C
deviceProfileName: plug-binary
- id: "4489/2377"
deviceLabel: LEDVANCE MATTER PLUG CH
vendorId: 0x1189
productId: 0x0949
deviceProfileName: plug-binary
- id: "4489/2473"
deviceLabel: MATTER FLEX RGBTW EU
vendorId: 0x1189
productId: 0x09A9
deviceProfileName: light-color-level
- id: "4489/2176"
deviceLabel: MATTER PLUG EU BK
vendorId: 0x1189
productId: 0x0880
deviceProfileName: plug-binary
- id: "4489/1587"
deviceLabel: MATTER COMP OUT PLUG EU
vendorId: 0x1189
productId: 0x0633
deviceProfileName: plug-binary
- id: "4489/2193"
deviceLabel: SMART WIFI MATTER WALL SWITCH 2G
vendorId: 0x1189
productId: 0x0891
deviceProfileName: switch-binary
#Ikea
- id: "4476/32768"
deviceLabel: BILRESA Scroll Wheel
vendorId: 0x117C
productId: 0x8000
deviceProfileName: ikea-scroll
- id: "4476/32769"
deviceLabel: BILRESA Dual Button
vendorId: 0x117C
productId: 0x8001
deviceProfileName: ikea-2-button-battery
- id: "4476/36885"
deviceLabel: KAJPLATS E12 WS Globe 800lm
vendorId: 0x117C
productId: 0x9015
deviceProfileName: light-level-colorTemperature
- id: "4476/36880"
deviceLabel: VARMBLIXT table/wall lamp
vendorId: 0x117C
productId: 0x9010
deviceProfileName: light-color-level
- id: "4476/36881"
deviceLabel: KAJPLATS E26 450lm
vendorId: 0x117C
productId: 0x9011
deviceProfileName: light-level-colorTemperature
- id: "4476/36882"
deviceLabel: KAJPLATS E26 1100lm
vendorId: 0x117C
productId: 0x9012
deviceProfileName: light-level-colorTemperature
- id: "4476/36884"
deviceLabel: KAJPLATS E26 WS 1600lm
vendorId: 0x117C
productId: 0x9014
deviceProfileName: light-level-colorTemperature
- id: "4476/36886"
deviceLabel: KAJPLATS E26 1100lm CWS
vendorId: 0x117C