-
Notifications
You must be signed in to change notification settings - Fork 533
Expand file tree
/
Copy pathfingerprints.yml
More file actions
2523 lines (2523 loc) · 76.4 KB
/
fingerprints.yml
File metadata and controls
2523 lines (2523 loc) · 76.4 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
zigbeeManufacturer:
#SMARTvill
- id: "SMARTvill/SLA06"
deviceLabel: "SMARTvill Switch 1"
manufacturer: SMARTvill
model: SLA06
deviceProfileName: basic-switch
- id: "SMARTvill/SLA05"
deviceLabel: "SMARTvill Switch 1"
manufacturer: SMARTvill
model: SLA05
deviceProfileName: basic-switch
- id: "SMARTvill/SLA04"
deviceLabel: "SMARTvill Switch 1"
manufacturer: SMARTvill
model: SLA04
deviceProfileName: basic-switch
- id: "SMARTvill/SLA03"
deviceLabel: "SMARTvill Switch 1"
manufacturer: SMARTvill
model: SLA03
deviceProfileName: basic-switch
- id: "SMARTvill/SLA02"
deviceLabel: "SMARTvill Switch 1"
manufacturer: SMARTvill
model: SLA02
deviceProfileName: basic-switch
- id: "SMARTvill/SLA01"
deviceLabel: SMARTvill Switch
manufacturer: SMARTvill
model: SLA01
deviceProfileName: basic-switch
#HANSSEM SMART SWITCH
- id: "Winners/LSS1-101"
deviceLabel: HS Switch 1(1 way)
manufacturer: Winners
model: LSS1-101
deviceProfileName: basic-switch-no-firmware-update
- id: "Winners/LSS1-102"
deviceLabel: HS Switch 1(2 way)
manufacturer: Winners
model: LSS1-102
deviceProfileName: basic-switch-no-firmware-update
- id: "Winners/LSS1-103"
deviceLabel: HS Switch 1(3 way)
manufacturer: Winners
model: LSS1-103
deviceProfileName: basic-switch-no-firmware-update
- id: "Winners/LSS1-204"
deviceLabel: HS Switch 1(4 way)
manufacturer: Winners
model: LSS1-204
deviceProfileName: basic-switch-no-firmware-update
- id: "Winners/LSS1-205"
deviceLabel: HS Switch 1(5 way)
manufacturer: Winners
model: LSS1-205
deviceProfileName: basic-switch-no-firmware-update
- id: "Winners/LSS1-206"
deviceLabel: HS Switch 1(6 way)
manufacturer: Winners
model: LSS1-206
deviceProfileName: basic-switch-no-firmware-update
- id: "LUMI/lumi.plug.maeu01"
deviceLabel: Aqara Smart Plug
manufacturer: LUMI
model: lumi.plug.maeu01
deviceProfileName: switch-power-energy-consumption-report-aqara
- id: "LUMI/lumi.plug.macn01"
deviceLabel: Aqara Smart Plug T1
manufacturer: LUMI
model: lumi.plug.macn01
deviceProfileName: switch-power-energy-consumption-report-aqara-t1
- id: "LUMI/lumi.switch.b1laus01"
deviceLabel: Aqara Smart Wall Switch (No Neutral, Single Rocker)
manufacturer: LUMI
model: lumi.switch.b1laus01
deviceProfileName: aqara-switch-child
- id: "LUMI/lumi.switch.b2laus01"
deviceLabel: Aqara Smart Wall Switch (No Neutral, Double Rocker) 1
manufacturer: LUMI
model: lumi.switch.b2laus01
deviceProfileName: aqara-switch-child
- id: "LUMI/lumi.switch.n1acn1"
deviceLabel: Aqara Smart Wall Switch H1 (With Neutral, Single Rocker)
manufacturer: LUMI
model: lumi.switch.n1acn1
deviceProfileName: aqara-switch-power
- id: "LUMI/lumi.switch.n2acn1"
deviceLabel: Aqara Smart Wall Switch H1 (With Neutral, Double Rocker) 1
manufacturer: LUMI
model: lumi.switch.n2acn1
deviceProfileName: aqara-switch-power
- id: "LUMI/lumi.switch.n3acn1"
deviceLabel: Aqara Smart Wall Switch H1 (With Neutral, Triple Rocker) 1
manufacturer: LUMI
model: lumi.switch.n3acn1
deviceProfileName: aqara-switch-power
- id: "LUMI/lumi.switch.n0agl1"
deviceLabel: Aqara Single Switch Module T1 (With Neutral)
manufacturer: LUMI
model: lumi.switch.n0agl1
deviceProfileName: aqara-switch-module
- id: "LUMI/lumi.switch.l0agl1"
deviceLabel: Aqara Single Switch Module T1 (No Neutral)
manufacturer: LUMI
model: lumi.switch.l0agl1
deviceProfileName: aqara-switch-module-no-power
- id: "LUMI/lumi.switch.n0acn2"
deviceLabel: Aqara Single Switch Module T1 (With Neutral)
manufacturer: LUMI
model: lumi.switch.n0acn2
deviceProfileName: aqara-switch-module
- id: "LUMI/lumi.light.acn004"
deviceLabel: Aqara Smart Dimmer Controller T1 Pro
manufacturer: LUMI
model: lumi.light.acn004
deviceProfileName: aqara-light
- id: "LUMI/lumi.light.cwacn1"
deviceLabel: Aqara Smart Dimmer Controller T1 (0-10v)
manufacturer: LUMI
model: lumi.light.cwacn1
deviceProfileName: aqara-light
- id: "Aqara/lumi.light.acn014"
deviceLabel: Aqara LED Light Bulb T1 (Tunable White)
manufacturer: Aqara
model: lumi.light.acn014
deviceProfileName: aqara-led-bulb
- id: "LUMI/lumi.switch.n1aeu1"
deviceLabel: Aqara Smart Wall Switch H1 EU (With Neutral, Single Rocker)
manufacturer: LUMI
model: lumi.switch.n1aeu1
deviceProfileName: aqara-switch-power
- id: "LUMI/lumi.switch.n2aeu1"
deviceLabel: Aqara Smart Wall Switch H1 EU (With Neutral, Double Rocker) 1
manufacturer: LUMI
model: lumi.switch.n2aeu1
deviceProfileName: aqara-switch-power
- id: "LUMI/lumi.switch.l1aeu1"
deviceLabel: Aqara Smart Wall Switch H1 EU (No Neutral, Single Rocker)
manufacturer: LUMI
model: lumi.switch.l1aeu1
deviceProfileName: aqara-switch-no-power
- id: "LUMI/lumi.switch.l2aeu1"
deviceLabel: Aqara Smart Wall Switch H1 EU (No Neutral, Double Rocker) 1
manufacturer: LUMI
model: lumi.switch.l2aeu1
deviceProfileName: aqara-switch-no-power
- id: "LUMI/lumi.switch.b1nacn01"
deviceLabel: Aqara Smart Wall Switch T1 (With Neutral, Single Rocker)
manufacturer: LUMI
model: lumi.switch.b1nacn01
deviceProfileName: aqara-switch-power
- id: "LUMI/lumi.switch.b2nacn01"
deviceLabel: Aqara Smart Wall Switch T1 (With Neutral, Double Rocker) 1
manufacturer: LUMI
model: lumi.switch.b2nacn01
deviceProfileName: aqara-switch-power
- id: "LUMI/lumi.switch.b3n01"
deviceLabel: Aqara Smart Wall Switch T1 (With Neutral, Triple Rocker) 1
manufacturer: LUMI
model: lumi.switch.b3n01
deviceProfileName: aqara-switch-power
# VIMAR
- id: "Vimar/xx592-2-way-smart-switch"
deviceLabel: Vimar 2-way Smart Switch
model: "On_Off_Switch_v1.0"
deviceProfileName: on-off-bulb-no-firmware-update
- id: "Vimar/03981-smart-actuator-module"
deviceLabel: Vimar Smart Actuator Module
model: "On_Off_Switch_Module_v1.0"
deviceProfileName: basic-switch-no-firmware-update
- id: "Vimar/xx595-smart-dimmer-switch"
deviceLabel: Vimar Smart Dimmer Switch
model: "DimmerSwitch_v1.0"
deviceProfileName: on-off-level-no-firmware-update
- id: "Vimar/xx593-smart-actuator-power"
deviceLabel: Vimar Smart Actuator with Power Metering
model: "Mains_Power_Outlet_v1.0"
deviceProfileName: switch-power-smartplug-no-firmware-update
# EZEX
- id: "eZEX/E220-KR2N0Z0-HA"
deviceLabel: eZEX Switch 1
model: "E220-KR2N0Z0-HA"
deviceProfileName: basic-switch
- id: "eZEX/E220-KR3N0Z0-HA"
deviceLabel: eZEX Switch 1
model: "E220-KR3N0Z0-HA"
deviceProfileName: basic-switch
- id: "eZEX/E220-KR4N0Z0-HA"
deviceLabel: eZEX Switch 1
model: "E220-KR4N0Z0-HA"
deviceProfileName: basic-switch
- id: "eZEX/E220-KR5N0Z0-HA"
deviceLabel: eZEX Switch 1
model: "E220-KR5N0Z0-HA"
deviceProfileName: basic-switch
- id: "eZEX/E220-KR6N0Z0-HA"
deviceLabel: eZEX Switch 1
model: "E220-KR6N0Z0-HA"
deviceProfileName: basic-switch
- id: "eZEX/E240-KR116Z-HA"
deviceLabel: eZEX Switch
model: "E240-KR116Z-HA"
deviceProfileName: switch-power-energy
#ORVIBO
- id: "Orvibo/074b3"
deviceLabel: Orvibo Switch 1
manufacturer: ORVIBO
model: "074b3ffba5a045b7afd94c47079dd553"
deviceProfileName: basic-switch
- id: "Orvibo/9f76c"
deviceLabel: Orvibo Switch 1
manufacturer: ORVIBO
model: "9f76c9f31b4c4a499e3aca0977ac4494"
deviceProfileName: basic-switch
#REXENSE
- id: "REXENSE/HY0003"
deviceLabel: "GDKES Switch 1"
manufacturer: REXENSE
model: HY0003
deviceProfileName: basic-switch
- id: "REXENSE/HY0002"
deviceLabel: "GDKES Switch 1"
manufacturer: REXENSE
model: HY0002
deviceProfileName: basic-switch
- id: "REXENSE/HY0105"
deviceLabel: "HONYAR Outlet"
manufacturer: REXENSE
model: HY0105
deviceProfileName: switch-power-energy
- id: "REXENSE/HY0104"
deviceLabel: "HONYAR Outlet"
manufacturer: REXENSE
model: HY0104
deviceProfileName: switch-power-energy
#REX
- id: "REX/HY0097"
deviceLabel: "HONYAR Switch 1"
manufacturer: REX
model: HY0097
deviceProfileName: basic-switch
- id: "REX/HY0096"
deviceLabel: "HONYAR Switch 1"
manufacturer: REX
model: HY0096
deviceProfileName: basic-switch
#HEIMAN
- id: "HEIMAN/HS2SW3L-EFR-3.0"
deviceLabel: "HEIMAN Switch 1"
manufacturer: HEIMAN
model: HS2SW3L-EFR-3.0
deviceProfileName: basic-switch
- id: "HEIMAN/HS2SW2L-EFR-3.0"
deviceLabel: "HEIMAN Switch 1"
manufacturer: HEIMAN
model: HS2SW2L-EFR-3.0
deviceProfileName: basic-switch
- id: "HEIMAN/HS6SW1A-W-EF-3.0"
deviceLabel: "HEIMAN Switch 1"
manufacturer: HEIMAN
model: HS6SW1A-W-EF-3.0
deviceProfileName: basic-switch
- id: "HEIMAN/HS6SW2A-W-EF-3.0"
deviceLabel: "HEIMAN Switch 1"
manufacturer: HEIMAN
model: HS6SW2A-W-EF-3.0
deviceProfileName: basic-switch
- id: "HEIMAN/HS6SW3A-W-EF-3.0"
deviceLabel: "HEIMAN Switch 1"
manufacturer: HEIMAN
model: HS6SW3A-W-EF-3.0
deviceProfileName: basic-switch
- id: "HEIMAN/HS6ESK-W-EF-3.0"
deviceLabel: "HEIMAN Outlet"
manufacturer: HEIMAN
model: HS6ESK-W-EF-3.0
deviceProfileName: basic-plug
- id: "HEIMAN/E_Socket"
deviceLabel: "HEIMAN Outlet"
manufacturer: HEIMAN
model: E_Socket
deviceProfileName: switch-power-energy
#Dawon
- id: "DAWON_DNS/PM-S240-ZB"
deviceLabel: "Dawon Switch 1"
manufacturer: DAWON_DNS
model: PM-S240-ZB
deviceProfileName: basic-switch
- id: "DAWON_DNS/PM-S240R-ZB"
deviceLabel: "Dawon Switch 1"
manufacturer: DAWON_DNS
model: PM-S240R-ZB
deviceProfileName: basic-switch
- id: "DAWON_DNS/PM-S340-ZB"
deviceLabel: "Dawon Switch 1"
manufacturer: DAWON_DNS
model: PM-S340-ZB
deviceProfileName: basic-switch
- id: "DAWON_DNS/PM-S340R-ZB"
deviceLabel: "Dawon Switch 1"
manufacturer: DAWON_DNS
model: PM-S340R-ZB
deviceProfileName: basic-switch
- id: "DAWON_DNS/PM-S250-ZB"
deviceLabel: "Dawon Switch 1"
manufacturer: DAWON_DNS
model: PM-S250-ZB
deviceProfileName: basic-switch
- id: "DAWON_DNS/PM-S350-ZB"
deviceLabel: "Dawon Switch 1"
manufacturer: DAWON_DNS
model: PM-S350-ZB
deviceProfileName: basic-switch
- id: "DAWON_DNS/ST-S250-ZB"
deviceLabel: "Dawon Switch 1"
manufacturer: DAWON_DNS
model: ST-S250-ZB
deviceProfileName: basic-switch
- id: "DAWON_DNS/ST-S350-ZB"
deviceLabel: "Dawon Switch 1"
manufacturer: DAWON_DNS
model: ST-S350-ZB
deviceProfileName: basic-switch
- id: "DAWON_DNS/PM-B430-ZB"
deviceLabel: "Dawon Outlet"
manufacturer: DAWON_DNS
model: PM-B430-ZB
deviceProfileName: switch-power-energy-consumption-report
- id: "DAWON_DNS/PM-B530-ZB"
deviceLabel: "Dawon Outlet"
manufacturer: DAWON_DNS
model: PM-B530-ZB
deviceProfileName: switch-power-energy-consumption-report
- id: "DAWON_DNS/PM-C140-ZB"
deviceLabel: "Dawon Outlet"
manufacturer: DAWON_DNS
model: PM-C140-ZB
deviceProfileName: switch-power-energy-consumption-report
- id: "DAWON_DNS/PM-B540-ZB"
deviceLabel: "Dawon Outlet"
manufacturer: DAWON_DNS
model: PM-B540-ZB
deviceProfileName: switch-power-energy-consumption-report
- id: "DAWON_DNS/ST-B550-ZB"
deviceLabel: "Dawon Outlet"
manufacturer: DAWON_DNS
model: ST-B550-ZB
deviceProfileName: switch-power-energy-consumption-report
- id: "DAWON_DNS/PM-C150-ZB"
deviceLabel: "Dawon Outlet"
manufacturer: DAWON_DNS
model: PM-C150-ZB
deviceProfileName: switch-power-energy-consumption-report
- id: "DAWON_DNS/PM-C250-ZB"
deviceLabel: "Dawon Outlet"
manufacturer: DAWON_DNS
model: PM-C250-ZB
deviceProfileName: switch-power-energy-consumption-report
- id: "DAWON_DNS/PM-B440-ZB"
deviceLabel: "Dawon Outlet"
manufacturer: DAWON_DNS
model: PM-B440-ZB
deviceProfileName: switch-power-energy-consumption-report
#eWeLink
- id: "eWeLink/ZB-SW02"
deviceLabel: "eWeLink Switch 1"
manufacturer: eWeLink
model: ZB-SW02
deviceProfileName: basic-switch
- id: "eWeLink/ZB-SW03"
deviceLabel: "eWeLink Switch 1"
manufacturer: eWeLink
model: ZB-SW03
deviceProfileName: basic-switch
- id: "eWeLink/ZB-SW04"
deviceLabel: "eWeLink Switch 1"
manufacturer: eWeLink
model: ZB-SW04
deviceProfileName: basic-switch
#Aurora
- id: Aurora/DoubleSocket50AU
deviceLabel: AURORA Outlet 1
manufacturer: Aurora
model: DoubleSocket50AU
deviceProfileName: switch-power-smartplug
#Sinope
- id: "Sinope Switch/RM3250ZB"
deviceLabel: "RM3250ZB Sinope Load Controller"
manufacturer: Sinope Technologies
model: RM3250ZB
deviceProfileName: switch-power-smartplug
- id: "Sinope Switch/RM3500ZB"
deviceLabel: "RM3500ZB Sinope Load Controller"
manufacturer: Sinope Technologies
model: RM3500ZB
deviceProfileName: switch-power-smartplug
- id: "Sinope Dimmer Switch/DM2500ZB"
deviceLabel: "DM2500ZB Sinope Dimmer"
manufacturer: Sinope Technologies
model: DM2500ZB
deviceProfileName: on-off-level-intensity
- id: "Sinope Technologies/SW2500ZB"
deviceLabel: "Sinope Switch"
manufacturer: Sinope Technologies
model: SW2500ZB
deviceProfileName: switch-led-intensity
#Jasco Product
- id: "Jasco Products/43082"
deviceLabel: "Enbrighten Dimmer Switch"
manufacturer: Jasco Products
model: 43082
deviceProfileName: switch-dimmer-power-energy
- id: "Jasco Products/43095"
deviceLabel: "Enbrighten Outlet"
manufacturer: Jasco Products
model: "43095"
deviceProfileName: switch-power-energy
- id: "Jasco Products/43132"
deviceLabel: "Jasco Outlet"
manufacturer: Jasco Products
model: "43132"
deviceProfileName: switch-power-energy
- id: "Jasco Products/43078"
deviceLabel: "Enbrighten Switch"
manufacturer: Jasco Products
model: "43078"
deviceProfileName: switch-power-energy
#sengled
- id: "sengled/E1C-NB7"
deviceLabel: "Sengled Outlet"
manufacturer: sengled
model: E1C-NB7
deviceProfileName: switch-power-energy
#LDS
- id: "LDS/ZB-ONOFFPlug-D0000"
deviceLabel: "LDS Outlet"
manufacturer: LDS
model: ZB-ONOFFPlug-D0000
deviceProfileName: switch-power-energy
- id: "LDS/ZB-ONOFFPlug-D0005"
deviceLabel: "LDS Outlet"
manufacturer: LDS
model: ZB-ONOFFPlug-D0005
deviceProfileName: switch-power-energy
#frient A/S
- id: "frient A/S/SPLZB-131"
deviceLabel: "Smart Plug Mini"
manufacturer: frient A/S
model: SPLZB-131
deviceProfileName: frient-switch-power-energy-voltage
- id: "frient A/S/SPLZB-132"
deviceLabel: "Smart Plug Mini"
manufacturer: frient A/S
model: SPLZB-132
deviceProfileName: frient-switch-power-energy-voltage
- id: "frient A/S/SPLZB-134"
deviceLabel: "Smart Plug Mini UK"
manufacturer: frient A/S
model: SPLZB-134
deviceProfileName: frient-switch-power-energy-voltage
- id: "frient A/S/SPLZB-137"
deviceLabel: "Smart Plug Mini"
manufacturer: frient A/S
model: SPLZB-137
deviceProfileName: frient-switch-power-energy-voltage
- id: "frient A/S/SPLZB-141"
deviceLabel: "Smart Plug Mini 2"
manufacturer: frient A/S
model: SPLZB-141
deviceProfileName: frient-switch-power-energy-voltage
- id: "frient A/S/SPLZB-142"
deviceLabel: Smart Plug Mini 2
manufacturer: frient A/S
model: SPLZB-142
deviceProfileName: frient-switch-power-energy-voltage
- id: "frient A/S/SPLZB-144"
deviceLabel: Smart Plug Mini UK 2
manufacturer: frient A/S
model: SPLZB-144
deviceProfileName: frient-switch-power-energy-voltage
- id: "frient A/S/SPLZB-147"
deviceLabel: "Smart Plug Mini 2"
manufacturer: frient A/S
model: SPLZB-147
deviceProfileName: frient-switch-power-energy-voltage
- id: "frient A/S/SMRZB-143"
deviceLabel: "Smart Cable"
manufacturer: frient A/S
model: SMRZB-143
deviceProfileName: frient-switch-power-energy-voltage
- id: "frient A/S/SMRZB-153"
deviceLabel: "Smart Cable 2"
manufacturer: frient A/S
model: SMRZB-153
deviceProfileName: frient-switch-power-energy-voltage
- id: "frient A/S/SMRZB-332"
deviceLabel: "Smart Din Relay"
manufacturer: frient A/S
model: SMRZB-332
deviceProfileName: frient-switch-power-energy-voltage
- id: "frient A/S/SMRZB-342"
deviceLabel: Smart DIN Relay 2
manufacturer: frient A/S
model: SMRZB-342
deviceProfileName: frient-switch-power-energy-voltage
- id: "frient/IOMZB-110"
deviceLabel: frient IO Module
manufacturer: frient A/S
model: IOMZB-110
deviceProfileName: switch-4inputs-2outputs
- id: "AduroSmart Eria/AD-DimmableLight3001"
deviceLabel: Eria Light
manufacturer: AduroSmart Eria
model: AD-DimmableLight3001
deviceProfileName: on-off-level
- id: Aurora/LCBulb01UK
deviceLabel: AOne Dimmer Switch
manufacturer: Aurora
model: LCBulb01UK
deviceProfileName: switch-level
- id: Aurora/Dimmer
deviceLabel: AOne Dimmer Switch
manufacturer: Aurora
model: Dimmer
deviceProfileName: switch-level
- id: Aurora/FWMPROZXBulb50AU
deviceLabel: Aurora Light
manufacturer: Aurora
model: FWMPROZXBulb50AU
deviceProfileName: on-off-level
- id: Aurora/FWBulb51AU
deviceLabel: Aurora Light
manufacturer: Aurora
model: FWBulb51AU
deviceProfileName: on-off-level
- id: Aurora/FWStrip50AU
deviceLabel: Aurora Light
manufacturer: Aurora
model: FWStrip50AU
deviceProfileName: on-off-level
- id: Aurora/FWGU10Bulb50AU
deviceLabel: Aurora Light
manufacturer: Aurora
model: FWGU10Bulb50AU
deviceProfileName: on-off-level
- id: Aurora/NPD3032
deviceLabel: Aurora Dimmer Switch
manufacturer: Aurora
model: NPD3032
deviceProfileName: switch-level
- id: Aurora/WallDimmerMaster
deviceLabel: Aurora Dimmer Switch
manufacturer: Aurora
model: WallDimmerMaster
deviceProfileName: switch-level
- id: Aurora/FWST64Bulb50AU
deviceLabel: Aurora Light
manufacturer: Aurora
model: FWST64Bulb50AU
deviceProfileName: on-off-level
- id: Aurora/FWG125Bulb50AU
deviceLabel: Aurora Light
manufacturer: Aurora
model: FWG125Bulb50AU
deviceProfileName: on-off-level
- id: Aurora/FWA60Bulb50AU
deviceLabel: Aurora Light
manufacturer: Aurora
model: FWA60Bulb50AU
deviceProfileName: on-off-level
- id: "CWD/ZB.A806Edim-A001"
deviceLabel: CWD Light
manufacturer: CWD
model: "ZB.A806Edim-A001"
deviceProfileName: on-off-level
- id: "CWD/ZB.A806Bdim-A001"
deviceLabel: CWD Light
manufacturer: CWD
model: "ZB.A806Bdim-A001"
deviceProfileName: on-off-level
- id: "CWD/ZB.M350dim-A001"
deviceLabel: CWD Light
manufacturer: CWD
model: "ZB.M350dim-A001"
deviceProfileName: on-off-level
- id: "IKEA/TRADFRI bulb E27 WW 806lm"
deviceLabel: IKEA Light
manufacturer: IKEA of Sweden
model: "TRADFRI bulb E27 WW 806lm"
deviceProfileName: on-off-level
- id: "IKEA/TRADFRI bulb E27 WW clear 250lm"
deviceLabel: IKEA Light
manufacturer: IKEA of Sweden
model: "TRADFRI bulb E27 WW clear 250lm"
deviceProfileName: on-off-level
- id: "ubisys/D1 (5503)"
deviceLabel: Dimmer D1
manufacturer: ubisys
model: "D1 (5503)"
deviceProfileName: switch-level-power
- id: "ubisys/S1 (5501)"
deviceLabel: Switching Actuator S1
manufacturer: ubisys
model: "S1 (5501)"
deviceProfileName: switch-power
- id: "ubisys/S2 (5502)"
deviceLabel: ubisys S2
manufacturer: ubisys
model: "S2 (5502)"
deviceProfileName: switch-power-firmware-2
- id: "ubisys/1151"
deviceLabel: Switching Actuator S1-R (Series 2)
manufacturer: ubisys
model: "1151"
deviceProfileName: switch-power
- id: "ubisys/D1-R (5603)"
deviceLabel: Dimmer D1-R
manufacturer: ubisys
model: "D1-R (5603)"
deviceProfileName: switch-level-power
- id: "Megaman/AD-DimmableLight3001"
deviceLabel: INGENIUM Light
manufacturer: Megaman
model: AD-DimmableLight3001
deviceProfileName: on-off-level
- id: "innr/RF 263"
deviceLabel: Innr Light
manufacturer: innr
model: "RF 263"
deviceProfileName: on-off-level
- id: "innr/BF 263"
deviceLabel: Innr Light
manufacturer: innr
model: "BF 263"
deviceProfileName: on-off-level
- id: "innr/BF 265"
deviceLabel: Innr Light
manufacturer: innr
model: "BF 265"
deviceProfileName: on-off-level
- id: "innr/AE 260"
deviceLabel: Innr Light
manufacturer: innr
model: "AE 260"
deviceProfileName: on-off-level
- id: "innr/BE 220"
deviceLabel: Innr Light
manufacturer: innr
model: "BE 220"
deviceProfileName: on-off-level
- id: "innr/RF 265"
deviceLabel: Innr Light
manufacturer: innr
model: "RF 265"
deviceProfileName: on-off-level
- id: "innr/RB 265"
deviceLabel: Innr Light
manufacturer: innr
model: "RB 265"
deviceProfileName: on-off-level
- id: "innr/RB 245"
deviceLabel: Innr Light
manufacturer: innr
model: "RB 245"
deviceProfileName: on-off-level
- id: "innr/RS 225"
deviceLabel: Innr Light
manufacturer: innr
model: "RS 225"
deviceProfileName: on-off-level
- id: "innr/RF 261"
deviceLabel: Innr Light
manufacturer: innr
model: "RF 261"
deviceProfileName: on-off-level
- id: "innr/RF 264"
deviceLabel: Innr Light
manufacturer: innr
model: "RF 264"
deviceProfileName: on-off-level
- id: "Smarthome/S111-201A"
deviceLabel: Leedarson Light
manufacturer: Smarthome
model: S111-201A
deviceProfileName: on-off-level
- id: "LDS/ZBT-DIMLight-GLS0000"
deviceLabel: Light
manufacturer: LDS
model: ZBT-DIMLight-GLS0000
deviceProfileName: on-off-level
- id: "LDS/ZHA-DIMLight-GLS0000"
deviceLabel: Light
manufacturer: LDS
model: ZHA-DIMLight-GLS0000
deviceProfileName: on-off-level
- id: "LDS/ZBT-DIMLight-GLS"
deviceLabel: Light
manufacturer: LDS
model: ZBT-DIMLight-GLS
deviceProfileName: on-off-level
- id: "LDS/ZBT-DIMLight-GLS0044"
deviceLabel: Light
manufacturer: LDS
model: ZBT-DIMLight-GLS0044
deviceProfileName: on-off-level
- id: Leviton/DL6HD
deviceLabel: Leviton Dimmer Switch
manufacturer: Leviton
model: DL6HD
deviceProfileName: switch-level
- id: Leviton/DL3HL
deviceLabel: Leviton Dimmer Switch
manufacturer: Leviton
model: DL3HL
deviceProfileName: switch-level
- id: Leviton/DL1KD
deviceLabel: Leviton Dimmer Switch
manufacturer: Leviton
model: DL1KD
deviceProfileName: switch-level
- id: Leviton/ZSD07
deviceLabel: Leviton Dimmer Switch
manufacturer: Leviton
model: ZSD07
deviceProfileName: switch-level
- id: "lk/ZBT-DIMLight-GLS0010"
deviceLabel: Linkind Light
manufacturer: lk
model: ZBT-DIMLight-GLS0010
deviceProfileName: on-off-level
- id: "MLI/ZBT-DimmableLight"
deviceLabel: Tint Light
manufacturer: MLI
model: ZBT-DimmableLight
deviceProfileName: on-off-level
- id: "OSRAM/LIGHTIFY A19 ON/OFF/DIM"
deviceLabel: SYLVANIA Light
manufacturer: OSRAM
model: "LIGHTIFY A19 ON/OFF/DIM"
deviceProfileName: on-off-level
- id: "OSRAM/LIGHTIFY A19 10 Year"
deviceLabel: SYLVANIA Light
manufacturer: OSRAM
model: "LIGHTIFY A19 ON/OFF/DIM 10 Year"
deviceProfileName: on-off-level
- id: "OSRAM SYLVANIA/iQBR30"
deviceLabel: SYLVANIA Light
manufacturer: OSRAM SYLVANIA
model: iQBR30
deviceProfileName: on-off-level
- id: "OSRAM/LIGHTIFY PAR38 ON/OFF/DIM"
deviceLabel: SYLVANIA Light
manufacturer: OSRAM
model: "LIGHTIFY PAR38 ON/OFF/DIM"
deviceProfileName: on-off-level
- id: "OSRAM/LIGHTIFY BR ON/OFF/DIM"
deviceLabel: SYLVANIA Light
manufacturer: OSRAM
model: "LIGHTIFY BR ON/OFF/DIM"
deviceProfileName: on-off-level
- id: "LEDVANCE/A19 W 10 year"
deviceLabel: SYLVANIA Light
manufacturer: LEDVANCE
model: "A19 W 10 year"
deviceProfileName: on-off-level
- id: "LEDVANCE/BR30 W 10 year"
deviceLabel: SYLVANIA Light
manufacturer: LEDVANCE
model: "BR30 W 10 year"
deviceProfileName: on-off-level
- id: "LEDVANCE/PAR38 W 10 year"
deviceLabel: SYLVANIA Light
manufacturer: LEDVANCE
model: "PAR38 W 10 year"
deviceProfileName: on-off-level
- id: "LEEDARSON LIGHTING/M350ST-W1R-01"
deviceLabel: OZOM Light
manufacturer: LEEDARSON LIGHTING
model: M350ST-W1R-01
deviceProfileName: on-off-level
- id: "sengled/E11-G13"
deviceLabel: Sengled Light
manufacturer: sengled
model: E11-G13
deviceProfileName: on-off-level
- id: "sengled/E11-G14"
deviceLabel: Sengled Light
manufacturer: sengled
model: E11-G14
deviceProfileName: on-off-level
- id: "sengled/E11-G23"
deviceLabel: Sengled Light
manufacturer: sengled
model: E11-G23
deviceProfileName: on-off-level
- id: "sengled/E11-G33"
deviceLabel: Sengled Light
manufacturer: sengled
model: E11-G33
deviceProfileName: on-off-level
- id: "sengled/E12-N13"
deviceLabel: Sengled Light
manufacturer: sengled
model: E12-N13
deviceProfileName: on-off-level
- id: "sengled/E12-N14"
deviceLabel: Sengled Light
manufacturer: sengled
model: E12-N14
deviceProfileName: on-off-level
- id: "sengled/E12-N15"
deviceLabel: Sengled Light
manufacturer: sengled
model: E12-N15
deviceProfileName: on-off-level
- id: "sengled/E11-N13"
deviceLabel: Sengled Light
manufacturer: sengled
model: E11-N13
deviceProfileName: on-off-level
- id: "sengled/E11-N14"
deviceLabel: Sengled Light
manufacturer: sengled
model: E11-N14
deviceProfileName: on-off-level
- id: "sengled/E1A-AC2"
deviceLabel: Sengled Light
manufacturer: sengled
model: E1A-AC2
deviceProfileName: on-off-level
- id: "sengled/E11-N13A"
deviceLabel: Sengled Light
manufacturer: sengled
model: E11-N13A
deviceProfileName: on-off-level
- id: "sengled/E11-N14A"
deviceLabel: Sengled Light
manufacturer: sengled
model: E11-N14A
deviceProfileName: on-off-level
- id: "sengled/E21-N13A"
deviceLabel: Sengled Light
manufacturer: sengled
model: E21-N13A
deviceProfileName: on-off-level
- id: "sengled/E21-N14A"
deviceLabel: Sengled Light
manufacturer: sengled
model: E21-N14A
deviceProfileName: on-off-level
- id: "sengled/E11-U21U31"
deviceLabel: Sengled Light
manufacturer: sengled
model: E11-U21U31
deviceProfileName: on-off-level
- id: "sengled/E13-A21"
deviceLabel: Sengled Light
manufacturer: sengled
model: E13-A21
deviceProfileName: on-off-level
- id: "sengled/E11-N1G"
deviceLabel: Sengled Light
manufacturer: sengled
model: E11-N1G
deviceProfileName: on-off-level
- id: "LDS/ZBT-DIMLight-GLS0006"
deviceLabel: Light
manufacturer: LDS
model: ZBT-DIMLight-GLS0006
deviceProfileName: on-off-level
- id: MRVL/MZ100
deviceLabel: Wemo Light
manufacturer: MRVL
model: MZ100
deviceProfileName: on-off-level
- id: "Jasco Products/43096"
deviceLabel: Enbrighten Dimmer
manufacturer: Jasco Products
model: 43096
deviceProfileName: switch-level
- id: "Jasco Products/43090"
deviceLabel: Enbrighten Dimmer
manufacturer: Jasco Products
model: 43090
deviceProfileName: switch-level
- id: "Jasco Products/43080"
deviceLabel: Enbrighten Dimmer
manufacturer: Jasco Products
model: 43080
deviceProfileName: switch-level
- id: "Centralite Systems/4200-C"
deviceLabel: Centralite Outlet
manufacturer: Centralite Systems
model: 4200-C
deviceProfileName: basic-switch
- id: "eWeLink/SA-003-Zigbee"
deviceLabel: eWeLink Outlet
manufacturer: eWeLink
model: SA-003-Zigbee
deviceProfileName: basic-switch
- id: "eWeLink/ZB-SW01"
deviceLabel: eWeLink Switch
manufacturer: eWeLink
model: ZB-SW01
deviceProfileName: basic-switch
- id: "LELLKI/JZ-ZB-001"
deviceLabel: LELLKI Switch
manufacturer: LELLKI
model: JZ-ZB-001
deviceProfileName: basic-switch
- id: "None/E220-KR1N0Z0-HA"
deviceLabel: eZEX Switch
manufacturer: None
model: E220-KR1N0Z0-HA
deviceProfileName: basic-switch
- id: REXENSE/HY0001
deviceLabel: GDKES Switch
manufacturer: REXENSE
model: HY0001
deviceProfileName: basic-switch
- id: REXENSE/RH5006
deviceLabel: GDKES Outlet
manufacturer: REXENSE
model: RH5006
deviceProfileName: basic-switch
- id: REXENSE/RH5005
deviceLabel: GDKES Outlet
manufacturer: REXENSE
model: RH5005
deviceProfileName: basic-switch
- id: "HEIMAN/HS2SW1L-EFR-3.0"
deviceLabel: HEIMAN Switch
manufacturer: HEIMAN
model: "HS2SW1L-EFR-3.0"
deviceProfileName: basic-switch
- id: REX/HY0095
deviceLabel: HONYAR Switch
manufacturer: REX
model: HY0095
deviceProfileName: basic-switch
- id: IKEA/TRADFRI control outlet
deviceLabel: IKEA Outlet
manufacturer: IKEA of Sweden
model: "TRADFRI control outlet"
deviceProfileName: basic-switch
- id: MEGAMAN/BSZTM005
deviceLabel: INGENIUM Switch
manufacturer: MEGAMAN
model: BSZTM005
deviceProfileName: basic-switch
- id: "innr/SP 220"
deviceLabel: Innr Outlet
manufacturer: innr
model: "SP 220"
deviceProfileName: basic-switch
- id: "innr/SP 222"
deviceLabel: Innr Outlet
manufacturer: innr
model: "SP 222"
deviceProfileName: basic-switch
- id: "innr/SP 224"
deviceLabel: Innr Outlet
manufacturer: innr
model: "SP 224"
deviceProfileName: basic-switch
- id: "iMagic by GreatStar/1113-S"
deviceLabel: Iris Outlet
manufacturer: iMagic by GreatStar
model: 1113-S
deviceProfileName: basic-switch
- id: "Leviton/ZSS-10"
deviceLabel: Leviton Switch
manufacturer: Leviton
model: ZSS-10
deviceProfileName: basic-switch
- id: "HAI/65A21-1"
deviceLabel: Leviton Switch
manufacturer: HAI
model: 65A21-1
deviceProfileName: basic-switch
- id: Leviton/DL15A
deviceLabel: Leviton Outlet
manufacturer: Leviton
model: DL15A
deviceProfileName: basic-switch
- id: Leviton/DL15S
deviceLabel: Leviton Switch
manufacturer: Leviton
model: DL15S
deviceProfileName: basic-switch
- id: Leviton/DG15S
deviceLabel: Leviton Switch
manufacturer: Leviton
model: DG15S
deviceProfileName: basic-switch
- id: Leviton/DG15A
deviceLabel: Leviton Outlet
manufacturer: Leviton