-
-
Notifications
You must be signed in to change notification settings - Fork 915
/
manufacturer_specific.xml
2099 lines (2098 loc) · 167 KB
/
manufacturer_specific.xml
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
<?xml version="1.0" encoding="utf-8"?>
<ManufacturerSpecificData Revision="172" xmlns="https://github.com/OpenZWave/open-zwave">
<Manufacturer id="0028" name="2B Electronics"></Manufacturer>
<Manufacturer id="0098" name="2GIG Technologies">
<Product config="2gig/ct50e.xml" id="015e" name="CT50e Thermostat" type="3200"/>
<Product config="2gig/ct30.xml" id="0158" name="CT30 Thermostat" type="1e10"/>
<Product config="2gig/ct30.xml" id="015c" name="CT30 Thermostat" type="1e12"/>
<Product config="2gig/ct30.xml" id="015e" name="CT30 Thermostat" type="1e12"/>
<Product config="2gig/ct32.xml" id="0100" name="CT32 Thermostat" type="2002"/>
<Product config="2gig/ct80.xml" id="0100" name="CT80 Thermostat" type="5002"/>
<Product config="2gig/ct80.xml" id="0109" name="CT80 Thermostat" type="5003"/>
<Product config="2gig/ct100.xml" id="0105" name="CT100 Thermostat" type="6401"/>
<Product config="2gig/ct100.xml" id="0106" name="CT100 Thermostat USA" type="6401"/>
<Product config="2gig/ct100.xml" id="0107" name="CT100 Thermostat USA" type="6401"/>
<Product config="2gig/ct100.xml" id="01fd" name="CT100 Thermostat USA" type="6401"/>
<Product config="2gig/ct100.xml" id="0100" name="CT100 Plus Thermostat" type="6402"/>
<Product config="2gig/ct100.xml" id="0001" name="CT100 Plus Thermostat" type="6402"/>
<Product config="2gig/ct101.xml" id="000b" name="CT101 Thermostat (Iris)" type="6501"/>
<Product config="2gig/ct101.xml" id="000c" name="CT101 Thermostat (Iris)" type="6501"/>
<Product config="2gig/ct101.xml" id="000d" name="CT101 Thermostat" type="6501"/>
<Product config="2gig/ct200.xml" id="0022" name="Vivint Element Thermostat" type="c801"/>
<Product config="2gig/ct200.xml" id="001d" name="Vivint Element Thermostat" type="c801"/>
</Manufacturer>
<Manufacturer id="002a" name="3e Technologies"></Manufacturer>
<Manufacturer id="0022" name="A-1 Components"></Manufacturer>
<Manufacturer id="0117" name="Abilia"></Manufacturer>
<Manufacturer id="0400" name="Abode"></Manufacturer>
<Manufacturer id="0409" name="ABUS August Bremicker Sohne KG"></Manufacturer>
<Manufacturer id="0403" name="ABUS Security-Center GmbH Co. KG">
<Product config="abus/SHRM10000.xml" id="0003" name="Smart Smoke Sensor SHRM10000" type="0002"/>
</Manufacturer>
<Manufacturer id="034A" name="AcroComm Corp"></Manufacturer>
<Manufacturer id="0001" name="ACT">
<Product id="3130" name="ZCS101 Serial Interface" type="4349"/>
<Product config="act/zir010.xml" id="3030" name="ZIR000 PIR Motion Sensor" type="4952"/>
<Product config="act/zir010.xml" id="3330" name="ZIR010 PIR Motion Sensor" type="4952"/>
<Product config="act/zir010.xml" id="3130" name="ZIR010 PIR Motion Sensor" type="4952"/>
<Product config="act/zdp100.xml" id="3030" name="ZDP100 Plugin Lamp Module" type="4450"/>
<Product config="act/zdw103.xml" id="3033" name="ZDW103 Wall Dimmer Module" type="4457"/>
<Product id="3330" name="ZDW230 Wall Dimmer Module" type="4457"/>
<Product config="act/zdw232.xml" id="3332" name="ZDW232 Wall Dimmer Module" type="4457"/>
<Product config="act/zdm230.xml" id="3330" name="ZDM230 Wall Dimmer Module" type="444d"/>
<Product config="act/zrp100.xml" id="3030" name="ZRP100 Plugin Appliance Module" type="5250"/>
<Product config="act/zrp110.xml" id="3130" name="ZRP110 Exterior Appliance Module" type="5250"/>
<Product config="act/zrw230.xml" id="3330" name="ZRW230 Wall Appliance Module" type="5257"/>
<Product config="act/lfm20.xml" id="3133" name="LFM-20 Relay Fixture Module" type="5246"/>
<Product config="act/zrw103.xml" id="3033" name="ZRW103 Wall Switch Module" type="5257"/>
<Product config="act/zrm230.xml" id="3330" name="ZRM230 Wall Appliance Module" type="524d"/>
<Product id="3330" name="ZTW230 Wall Transmitter Module" type="5457"/>
<Product id="3330" name="ZTM230 Wall Transmitter Module" type="544d"/>
</Manufacturer>
<Manufacturer id="0297" name="AdMobilize, LLC"></Manufacturer>
<Manufacturer id="0101" name="ADOX, Inc."></Manufacturer>
<Manufacturer id="025B" name="AdTrustMedia LLC"></Manufacturer>
<Manufacturer id="016C" name="Advanced Optronic Devices"></Manufacturer>
<Manufacturer id="009E" name="Adventure Interactive"></Manufacturer>
<Manufacturer id="035B" name="Aeinnovation"></Manufacturer>
<Manufacturer id="0405" name="AEM Acotel Engineering and Manufacturing Spa"></Manufacturer>
<Manufacturer id="0350" name="AENSys Informatics Ltd"></Manufacturer>
<Manufacturer id="0086" name="AEON Labs">
<Product id="0000" name="Z-Wave Extender" type="0000"/>
<Product id="0001" name="Z-Stick" type="0001"/>
<Product id="0002" name="DSA02203 Z-Stick S2" type="0001"/>
<Product config="aeotec/dsb28-zweu.xml" id="0001" name="DSA02203 Z-Stick S2" type="0002"/>
<Product id="0007" name="DSA07203 Z-Stick Lite" type="0001"/>
<Product config="aeotec/dsa03202.xml" id="0003" name="DSA03202 Minimote" type="0001"/>
<Product config="aeotec/dsa22.xml" id="0016" name="DSA22 Key Fob" type="0001"/>
<Product config="aeotec/dsa38.xml" id="0026" name="DSA38 Panic Button" type="0001"/>
<Product config="aeotec/dsb05.xml" id="0005" name="DSB05 Multisensor" type="0002"/>
<Product config="aeotec/dsb28.xml" id="001c" name="DSB28 Home Energy Meter (2nd Edition)" type="0002"/>
<Product config="aeotec/dsb29.xml" id="001d" name="DSB29 Door/Window Sensor (2nd Edition)" type="0002"/>
<Product config="aeotec/dsb45.xml" id="002d" name="DSB45 Water Sensor" type="0002"/>
<Product config="aeotec/dsb54.xml" id="0036" name="DSB54 Recessed Door Sensor" type="0002"/>
<Product config="aeotec/dsb04100.xml" id="0004" name="DSB04100 Door/Window Sensor" type="0002"/>
<Product config="aeotec/dsb09104.xml" id="0009" name="DSB09104 Home Energy Meter" type="0002"/>
<Product config="aeotec/dsc10.xml" id="000a" name="DSC10 Heavy-Duty Smart Switch" type="0003"/>
<Product config="aeotec/dsc11.xml" id="000b" name="DSC11 Smart Strip" type="0003"/>
<Product config="aeotec/dsc24.xml" id="0018" name="DSC24 Smart Switch (2nd Edition)" type="0003"/>
<Product config="aeotec/dsc06106.xml" id="0006" name="DSC06106 Smart Energy Switch" type="0003"/>
<Product config="aeotec/dsc08101.xml" id="0008" name="DSC08101 Smart Energy Illuminator" type="0003"/>
<Product config="aeotec/dsc12104.xml" id="000c" name="DSC12104 Micro Smart Energy Switch" type="0003"/>
<Product config="aeotec/dsc13104.xml" id="000d" name="DSC13104 Micro Smart Energy Illuminator" type="0003"/>
<Product config="aeotec/dsc14104.xml" id="000e" name="DSC14104 Micro Motor Controller" type="0003"/>
<Product config="aeotec/dsc18103.xml" id="0012" name="DSC18103 Micro Smart Switch (2nd Edition)" type="0003"/>
<Product config="aeotec/dsc19103.xml" id="0013" name="DSC19103 Micro Smart Dimmer (2nd Edition)" type="0003"/>
<Product config="aeotec/dsc26103.xml" id="001a" name="DSC26103 Micro Switch (2nd Edition)" type="0003"/>
<Product config="aeotec/dsc27103.xml" id="001b" name="DSC27103 Micro Dimmer (2nd Edition)" type="0003"/>
<Product config="aeotec/dsc35103.xml" id="0011" name="DSC35103 Micro Double Switch" type="0003"/>
<Product config="aeotec/dsd37.xml" id="0025" name="DSD37 Range Extender" type="0004"/>
<!-- EU-market products start with type prefix "00" -->
<!-- US-market products start with type prefix "01" -->
<!-- AU-market products start with type prefix "02" -->
<!-- JP-market products start with type prefix "0A" -->
<!-- CN-market products start with type prefix "1D" -->
<!-- RU-market products start with type prefix "1A" -->
<Product config="aeotec/zw056.xml" id="0038" name="ZW056 Doorbell Gen5" type="0004"/>
<Product config="aeotec/zw056.xml" id="0038" name="ZW056 Doorbell Gen5" type="0104"/>
<Product config="aeotec/zw056.xml" id="0038" name="ZW056 Doorbell Gen5" type="0204"/>
<Product config="aeotec/zw056.xml" id="0038" name="ZW056 Doorbell Gen5" type="0304"/>
<Product config="aeotec/zw056.xml" id="0038" name="ZW056 Doorbell Gen5" type="0904"/>
<Product config="aeotec/zw056.xml" id="0038" name="ZW056 Doorbell Gen5" type="1D04"/>
<Product config="aeotec/zw056.xml" id="0038" name="ZW056 Doorbell Gen5" type="1A04"/>
<Product config="aeotec/zw056.xml" id="0038" name="ZW056 Doorbell Gen5" type="0A04"/>
<Product config="aeotec/zw062.xml" id="003e" name="ZW062 Garage Door Controller" type="0003"/>
<Product config="aeotec/zw062.xml" id="003e" name="ZW062 Garage Door Controller" type="0103"/>
<Product config="aeotec/zw062.xml" id="003e" name="ZW062 Garage Door Controller" type="0203"/>
<Product config="aeotec/zw074.xml" id="004a" name="ZW074 MultiSensor Gen5" type="0002"/>
<Product config="aeotec/zw074.xml" id="004a" name="ZW074 MultiSensor Gen5" type="0102"/>
<Product config="aeotec/zw074.xml" id="004a" name="ZW074 MultiSensor Gen5" type="0202"/>
<Product config="aeotec/zw075.xml" id="004b" name="ZW075 Smart Switch Gen5" type="0003"/>
<Product config="aeotec/zw075.xml" id="004b" name="ZW075 Smart Switch Gen5" type="0103"/>
<Product config="aeotec/zw075.xml" id="004b" name="ZW075 Smart Switch Gen5" type="0203"/>
<Product config="aeotec/zw078.xml" id="004e" name="ZW078 Heavy Duty Smart Switch Gen5" type="0003"/>
<Product config="aeotec/zw078.xml" id="004e" name="ZW078 Heavy Duty Smart Switch Gen5" type="0103"/>
<Product config="aeotec/zw078.xml" id="004e" name="ZW078 Heavy Duty Smart Switch Gen5" type="0203"/>
<Product config="aeotec/zw080.xml" id="0050" name="ZW080 Siren Gen5" type="0004"/>
<Product config="aeotec/zw080.xml" id="0050" name="ZW080 Siren Gen5" type="0104"/>
<Product config="aeotec/zw080.xml" id="0050" name="ZW080 Siren Gen5" type="0204"/>
<Product config="aeotec/zw088.xml" id="0058" name="ZW088 Key Fob Gen5" type="0001"/>
<Product config="aeotec/zw088.xml" id="0058" name="ZW088 Key Fob Gen5" type="0101"/>
<Product config="aeotec/zw088.xml" id="0058" name="ZW088 Key Fob Gen5" type="0201"/>
<Product config="aeotec/zw089.xml" id="0059" name="ZW089 Recessed Door Sensor Gen5" type="0002"/>
<Product config="aeotec/zw089.xml" id="0059" name="ZW089 Recessed Door Sensor Gen5" type="0102"/>
<Product config="aeotec/zw089.xml" id="0059" name="ZW089 Recessed Door Sensor Gen5" type="0202"/>
<Product config="aeotec/zw090.xml" id="005a" name="ZW090 Z-Stick Gen5 EU" type="0001"/>
<Product config="aeotec/zw090.xml" id="005a" name="ZW090 Z-Stick Gen5 US" type="0101"/>
<Product config="aeotec/zw090.xml" id="005a" name="ZW090 Z-Stick Gen5 AU" type="0201"/>
<Product id="005c" name="ZW092 Z-Stick Lite Gen5 EU" type="0001"/>
<Product id="005c" name="ZW092 Z-Stick Lite Gen5 US" type="0101"/>
<Product id="005c" name="ZW092 Z-Stick Lite Gen5 AU" type="0201"/>
<Product config="aeotec/zw095.xml" id="005f" name="ZW095 Home Energy Meter Gen5" type="0002"/>
<Product config="aeotec/zw095.xml" id="005f" name="ZW095 Home Energy Meter Gen5" type="0102"/>
<Product config="aeotec/zw095.xml" id="005f" name="ZW095 Home Energy Meter Gen5" type="0202"/>
<Product config="aeotec/zw096.xml" id="0060" name="ZW096 Smart Switch 6" type="0003"/>
<Product config="aeotec/zw096.xml" id="0060" name="ZW096 Smart Switch 6" type="0103"/>
<Product config="aeotec/zw096.xml" id="0060" name="ZW096 Smart Switch 6" type="0203"/>
<Product config="aeotec/zw097.xml" id="0061" name="ZW097 Dry Contact Sensor Gen5" type="0002"/>
<Product config="aeotec/zw097.xml" id="0061" name="ZW097 Dry Contact Sensor Gen5" type="0102"/>
<Product config="aeotec/zw097.xml" id="0061" name="ZW097 Dry Contact Sensor Gen5" type="0202"/>
<Product config="aeotec/zw098.xml" id="0062" name="ZW098 LED Bulb" type="0003"/>
<Product config="aeotec/zw098.xml" id="0062" name="ZW098 LED Bulb" type="0103"/>
<Product config="aeotec/zw098.xml" id="0062" name="ZW098 LED Bulb" type="0203"/>
<Product config="aeotec/zw099.xml" id="0063" name="ZW099 Smart Dimmer 6" type="0003"/>
<Product config="aeotec/zw099.xml" id="0063" name="ZW099 Smart Dimmer 6" type="0103"/>
<Product config="aeotec/zw099.xml" id="0063" name="ZW099 Smart Dimmer 6" type="0203"/>
<Product config="aeotec/zw099.xml" id="0063" name="ZW099 Smart Dimmer 6" type="1D03"/>
<Product config="aeotec/zw100.xml" id="0064" name="ZW100 MultiSensor 6" type="0002"/>
<Product config="aeotec/zw100.xml" id="0064" name="ZW100 MultiSensor 6" type="0102"/>
<Product config="aeotec/zw100.xml" id="0064" name="ZW100 MultiSensor 6" type="0202"/>
<Product config="aeotec/zw100.xml" id="0064" name="ZW100 MultiSensor 6" type="1A02"/>
<Product config="aeotec/zw111.xml" id="006f" name="ZW111 Nano Dimmer" type="0003"/>
<Product config="aeotec/zw111.xml" id="006f" name="ZW111 Nano Dimmer" type="0103"/>
<Product config="aeotec/zw111.xml" id="006f" name="ZW111 Nano Dimmer" type="0203"/>
<Product config="aeotec/zw111.xml" id="006f" name="ZW111 Nano Dimmer" type="1d03"/>
<Product config="aeotec/zw112.xml" id="0070" name="ZW112 Door Window Sensor 6" type="0002"/>
<Product config="aeotec/zw112.xml" id="0070" name="ZW112 Door Window Sensor 6" type="0102"/>
<Product config="aeotec/zw112.xml" id="0070" name="ZW112 Door Window Sensor 6" type="0202"/>
<Product config="aeotec/zw116.xml" id="0074" name="ZW116 Nano Switch" type="0003"/>
<Product config="aeotec/zw116.xml" id="0074" name="ZW116 Nano Switch" type="0103"/>
<Product config="aeotec/zw116.xml" id="0074" name="ZW116 Nano Switch" type="0203"/>
<Product config="aeotec/zw116.xml" id="0074" name="ZW116 Nano Switch" type="1d03"/>
<Product config="aeotec/zw117.xml" id="0075" name="ZW117 Range Extender 6" type="0004"/>
<Product config="aeotec/zw117.xml" id="0075" name="ZW117 Range Extender 6" type="0104"/>
<Product config="aeotec/zw117.xml" id="0075" name="ZW117 Range Extender 6" type="0204"/>
<Product config="aeotec/zw117.xml" id="0075" name="ZW117 Range Extender 6" type="1D04"/>
<Product config="aeotec/zw120.xml" id="0078" name="ZW120 Door Window Sensor Gen5" type="0002"/>
<Product config="aeotec/zw120.xml" id="0078" name="ZW120 Door Window Sensor Gen5" type="0102"/>
<Product config="aeotec/zw120.xml" id="0078" name="ZW120 Door Window Sensor Gen5" type="0202"/>
<Product config="aeotec/zw121.xml" id="0079" name="ZW121 LED Strip" type="0003"/>
<Product config="aeotec/zw121.xml" id="0079" name="ZW121 LED Strip" type="0103"/>
<Product config="aeotec/zw121.xml" id="0079" name="ZW121 LED Strip" type="0203"/>
<Product config="aeotec/zw121.xml" id="0079" name="ZW121 LED Strip" type="0A03"/>
<Product config="aeotec/zw122.xml" id="007a" name="ZW122 Water Sensor 6" type="0002"/>
<Product config="aeotec/zw122.xml" id="007a" name="ZW122 Water Sensor 6" type="0102"/>
<Product config="aeotec/zw122.xml" id="007a" name="ZW122 Water Sensor 6" type="0202"/>
<Product config="aeotec/zw122.xml" id="007a" name="ZW122 Water Sensor 6" type="0A02"/>
<Product config="aeotec/zw129.xml" id="0081" name="ZW129 WallMote Duo" type="0002"/>
<Product config="aeotec/zw129.xml" id="0081" name="ZW129 WallMote Duo" type="0102"/>
<Product config="aeotec/zw129.xml" id="0081" name="ZW129 WallMote Duo" type="0202"/>
<Product config="aeotec/zw129.xml" id="0081" name="ZW129 WallMote Duo" type="1D02"/>
<Product config="aeotec/zw130.xml" id="0082" name="ZW130 WallMote Quad" type="0002"/>
<Product config="aeotec/zw130.xml" id="0082" name="ZW130 WallMote Quad" type="0102"/>
<Product config="aeotec/zw130.xml" id="0082" name="ZW130 WallMote Quad" type="0202"/>
<Product config="aeotec/zw130.xml" id="0082" name="ZW130 WallMote Quad" type="1D02"/>
<Product config="aeotec/zw132.xml" id="0084" name="ZW132 Dual Nano Switch" type="0003"/>
<Product config="aeotec/zw132.xml" id="0084" name="ZW132 Dual Nano Switch" type="0103"/>
<Product config="aeotec/zw132.xml" id="0084" name="ZW132 Dual Nano Switch" type="0203"/>
<Product config="aeotec/zw132.xml" id="0084" name="ZW132 Dual Nano Switch" type="1d03"/>
<Product config="aeotec/zw139.xml" id="008b" name="ZW139 Nano Switch" type="0003"/>
<Product config="aeotec/zw139.xml" id="008b" name="ZW139 Nano Switch" type="0103"/>
<Product config="aeotec/zw139.xml" id="008b" name="ZW139 Nano Switch" type="0203"/>
<Product config="aeotec/zw139.xml" id="008b" name="ZW139 Nano Switch" type="1d03"/>
<Product config="aeotec/zw140.xml" id="008c" name="ZW140 Dual Nano Switch" type="0003"/>
<Product config="aeotec/zw140.xml" id="008c" name="ZW140 Dual Nano Switch" type="0103"/>
<Product config="aeotec/zw140.xml" id="008c" name="ZW140 Dual Nano Switch" type="0203"/>
<Product config="aeotec/zw140.xml" id="008c" name="ZW140 Dual Nano Switch" type="1d03"/>
<Product config="aeotec/zw141.xml" id="008d" name="ZW141 Nano Shutter" type="0003"/>
<Product config="aeotec/zw141.xml" id="008d" name="ZW141 Nano Shutter" type="0103"/>
<Product config="aeotec/zw141.xml" id="008d" name="ZW141 Nano Shutter" type="0203"/>
</Manufacturer>
<Manufacturer id="0371" name="Aeotec Limited">
<Product config="aeotec/zwa001.xml" id="0001" name="ZWA001 LED Bulb 6 Multi-White" type="0003"/>
<Product config="aeotec/zwa001.xml" id="0001" name="ZWA001 LED Bulb 6 Multi-White" type="0103"/>
<Product config="aeotec/zwa002.xml" id="0002" name="ZWA002 LED Bulb 6 Multi-Color" type="0003"/>
<Product config="aeotec/zwa002.xml" id="0002" name="ZWA002 LED Bulb 6 Multi-Color" type="0103"/>
<Product config="aeotec/zwa003.xml" id="0003" name="ZWA003 NanoMote Quad" type="0002"/>
<Product config="aeotec/zwa003.xml" id="0003" name="ZWA003 NanoMote Quad" type="0102"/>
<Product config="aeotec/zwa004.xml" id="0004" name="ZWA004 NanoMote One" type="0002"/>
<Product config="aeotec/zwa004.xml" id="0004" name="ZWA004 NanoMote One" type="0102"/>
<Product config="aeotec/zwa005.xml" id="0005" name="ZWA005 TriSensor" type="0002"/>
<Product config="aeotec/zwa005.xml" id="0005" name="ZWA005 TriSensor" type="0102"/>
<Product config="aeotec/zwa005.xml" id="0005" name="ZWA005 TriSensor" type="0202"/>
<Product config="aeotec/zwa021.xml" id="0015" name="ZWA021 Thermostatic Valve" type="0002"/>
<Product config="aeotec/zw162.xml" id="00a2" name="ZW162 Doorbell 6" type="0003"/>
<Product config="aeotec/zw162.xml" id="00a2" name="ZW162 Doorbell 6" type="0103"/>
<Product config="aeotec/zw162.xml" id="00a2" name="ZW162 Doorbell 6" type="0203"/>
<Product config="aeotec/zw162.xml" id="00a2" name="ZW162 Doorbell 6" type="1d03"/>
<Product config="aeotec/zwa006.xml" id="00b4" name="ZWA006 Smart Boost Timer Switch" type="0003"/>
<Product config="aeotec/zwa006.xml" id="00b4" name="ZWA006 Smart Boost Timer Switch" type="0103"/>
<Product config="aeotec/zwa008.xml" id="0007" name="ZWA008 Door Window Sensor 7" type="0002"/>
<Product config="aeotec/zwa008.xml" id="0007" name="ZWA008 Door Window Sensor 7" type="0102"/>
<Product config="aeotec/zwa008.xml" id="0007" name="ZWA008 Door Window Sensor 7" type="0202"/>
<Product config="aeotec/zwa009.xml" id="0009" name="ZWA009 AërQ Temperature & Humidity Sensor" type="0002"/>
<Product config="aeotec/zwa009.xml" id="0009" name="ZWA009 AërQ Temperature & Humidity Sensor" type="0102"/>
<Product config="aeotec/zwa009.xml" id="0009" name="ZWA009 AërQ Temperature & Humidity Sensor" type="0202"/>
<Product config="aeotec/zwa011.xml" id="000B" name="ZWA011 Door Window Sensor 7" type="0002"/>
<Product config="aeotec/zwa012.xml" id="000C" name="ZWA012 Door Window Sensor 7 Pro" type="0002"/>
<Product config="aeotec/zwa012.xml" id="000C" name="ZWA012 Door Window Sensor 7 Pro" type="0102"/>
<Product config="aeotec/zwa012.xml" id="000C" name="ZWA012 Door Window Sensor 7 Pro" type="0202"/>
<Product config="aeotec/zwa019.xml" id="0013" name="ZWA019 Water Sensor 7 Pro" type="0002"/>
<Product config="aeotec/zwa019.xml" id="0013" name="ZWA019 Water Sensor 7 Pro" type="0102"/>
<Product config="aeotec/zwa019.xml" id="0013" name="ZWA019 Water Sensor 7 Pro" type="0202"/>
<Product config="aeotec/zwa023.xml" id="0017" name="ZWA023 Smart Switch 7" type="0103"/>
<Product config="aeotec/zw141.xml" id="008d" name="ZW141 Nano Shutter" type="0003"/>
<Product config="aeotec/zw141.xml" id="008d" name="ZW141 Nano Shutter" type="0103"/>
<Product config="aeotec/zw141.xml" id="008d" name="ZW141 Nano Shutter" type="0203"/>
<Product config="aeotec/zw164.xml" id="00a4" name="ZW164 Indoor Siren 6" type="0003"/>
<Product config="aeotec/zw164.xml" id="00a4" name="ZW164 Indoor Siren 6" type="0103"/>
<Product config="aeotec/zw175.xml" id="00af" name="ZW175 Smart Switch 7" type="0003"/>
<Product config="aeotec/zw187.xml" id="00bb" name="ZW187 Recessed Door Sensor 7" type="0002"/>
<Product config="aeotec/zw187.xml" id="00bb" name="ZW187 Recessed Door Sensor 7" type="0102"/>
<Product config="aeotec/zw187.xml" id="00bb" name="ZW187 Recessed Door Sensor 7" type="0202"/>
<Product config="aeotec/zw189.xml" id="00bd" name="ZW189 Range Extender 7" type="0004"/>
<Product config="aeotec/zw189.xml" id="00bd" name="ZW189 Range Extender 7" type="0104"/>
<Product config="aeotec/zw189.xml" id="00bd" name="ZW189 Range Extender 7" type="0204"/>
<Product config="aeotec/zw189.xml" id="00bd" name="ZW189 Range Extender 7" type="0404"/>
</Manufacturer>
<Manufacturer id="0088" name="Airvent SAM S.p.A."></Manufacturer>
<Manufacturer id="0094" name="Alarm.com"></Manufacturer>
<Manufacturer id="0126" name="Alertme (Iris)">
<Product config="iris/rangeextender.xml" id="0001" name="Range Extender" type="0002"/>
</Manufacturer>
<Manufacturer id="0372" name="ALLEATO"></Manufacturer>
<Manufacturer id="028E" name="Alphanetworks"></Manufacturer>
<Manufacturer id="0230" name="Alphonsus Tech">
<Product config="idlock/idlock101.xml" id="0001" name="ID Lock 101" type="0003"/>
</Manufacturer>
<Manufacturer id="029F" name="AMADAS Co. LTD "></Manufacturer>
<Manufacturer id="019C" name="Amdocs"></Manufacturer>
<Manufacturer id="005A" name="American Grid Inc."></Manufacturer>
<Manufacturer id="0384" name="Ameta International Co. Ltd."></Manufacturer>
<Manufacturer id="032B" name="Anchor Tech"></Manufacturer>
<Manufacturer id="0392" name="Animus Home AB"></Manufacturer>
<Manufacturer id="026D" name="Antik Technology Ltd."></Manufacturer>
<Manufacturer id="0078" name="anyCOMM Corporation"></Manufacturer>
<Manufacturer id="0144" name="Applied Micro Electronics AME BV"></Manufacturer>
<Manufacturer id="0291" name="Arkea"></Manufacturer>
<Manufacturer id="0029" name="Asia Heading"></Manufacturer>
<Manufacturer id="0231" name="ASITEQ"></Manufacturer>
<Manufacturer id="028A" name="Askey Computer Corp."></Manufacturer>
<Manufacturer id="0129" name="Assa Abloy">
<Product config="assa_abloy/TouchLever.xml" id="0000" name="Yale Touchscreen Lever (YRL220)" type="0001"/>
<Product config="assa_abloy/TouchDeadbolt.xml" id="0000" name="Yale Touchscreen Deadbolt (YRD220)" type="0002"/>
<Product config="assa_abloy/TouchDeadbolt.xml" id="aa00" name="Yale Touchscreen Deadbolt (YRD220)" type="0002"/>
<Product config="assa_abloy/TouchDeadbolt.xml" id="0209" name="Yale Key Free Touchscreen Deadbolt (YRD240)" type="0002"/>
<Product config="assa_abloy/TouchDeadbolt.xml" id="0600" name="Yale Key Free Touchscreen Deadbolt (YRD446)" type="8002"/>
<Product config="assa_abloy/TouchDeadbolt.xml" id="1000" name="Yale Key Free Touchscreen Deadbolt (YRD446)" type="8002"/>
<Product config="assa_abloy/PushButtonLever.xml" id="0409" name="Yale Push Button Lever Lock (YRL210)" type="0003"/>
<Product config="assa_abloy/PushButtonLever.xml" id="0800" name="Yale Push Button Lever Lock (YRL210)" type="0003"/>
<Product config="assa_abloy/PushButtonLever.xml" id="0f00" name="Yale Push Button Lever Lock (YRL226)" type="800c"/>
<Product config="assa_abloy/PushButtonDeadbolt.xml" id="0000" name="Yale Push Button Deadbolt (YRD210)" type="0004"/>
<Product config="assa_abloy/PushButtonDeadbolt.xml" id="0209" name="Yale Push Button Deadbolt (YRD210)" type="0004"/>
<Product config="assa_abloy/PushButtonDeadbolt.xml" id="aa00" name="Yale Push Button Deadbolt (YRD210)" type="0004"/>
<Product config="assa_abloy/PushButtonDeadbolt.xml" id="0600" name="Yale Push Button Deadbolt (YRD216)" type="8004"/>
<Product config="assa_abloy/ProSLKey-FreeDeadbolt.xml" id="0508" name="Yale ProSL Push Button Deadbolt (YRD136)" type="803b"/>
<Product config="assa_abloy/TouchDeadbolt.xml" id="0000" name="Yale Key Free Touchscreen Deadbolt (YRD240)" type="0006"/>
<Product config="assa_abloy/KeyfreeConnected.xml" id="0000" name="Yale Keyless Connected Smart Lock (YSL)" type="0007"/>
<Product config="assa_abloy/KeyfreeConnected.xml" id="9230" name="Yale Keyless Connected Smart Lock (YSL)" type="1bef"/>
<Product config="assa_abloy/ConexisL1.xml" id="0002" name="Yale Conexis L1 (SD-L1000-CH)" type="6600"/>
<Product config="assa_abloy/KeyfreeConnected-plus.xml" id="0001" name="Keyless Connected (YD-01-CON)" type="0007"/>
<Product config="assa_abloy/KeyfreeConnected-plus.xml" id="0001" name="Yale Keyfree Connected Smart Lock (YKFCON)" type="0006"/>
<Product config="assa_abloy/KeyfreeConnected-plus.xml" id="0000" name="Yale Keyfree Connected Smart Lock (YKFCON)" type="0600"/>
<Product config="assa_abloy/nexTouch.xml" id="0b00" name="Yale nexTouch Wireless Push Button (NTB610)" type="8001"/>
<Product config="assa_abloy/nexTouch.xml" id="0b00" name="Yale nexTouch Wireless Push Button (NTB620)" type="8003"/>
<Product config="assa_abloy/yrd1x0.xml" id="0800" name="YRD110 Push Button Deadbolt" type="0004"/>
<Product config="assa_abloy/yrd1x0.xml" id="0800" name="YRD120 Touchscreen Deadbolt" type="0002"/>
<Product config="assa_abloy/yrm276.xml" id="1604" name="Yale Assure Lock for Andersen Patio Doors (YRM276)" type="8014"/>
</Manufacturer>
<Manufacturer id="013B" name="AstraLink"></Manufacturer>
<Manufacturer id="0134" name="AT&T"></Manufacturer>
<Manufacturer id="002b" name="Atech"></Manufacturer>
<Manufacturer id="0244" name="Athom BV"></Manufacturer>
<Manufacturer id="032A" name="AUCEAN TECHNOLOGY. INC"></Manufacturer>
<Manufacturer id="033f" name="August">
<Product config="august/asl-03.xml" id="0001" name="ASL-03 Smart Lock" type="0001"/>
</Manufacturer>
<Manufacturer id="025D" name="Avadesign Technology Co."></Manufacturer>
<Manufacturer id="0155" name="Avadesign Technology Co. Ltd"></Manufacturer>
<Manufacturer id="0146" name="Axesstel Inc"></Manufacturer>
<Manufacturer id="0018" name="Balboa Inst."></Manufacturer>
<Manufacturer id="0236" name="Bandi Comm Tech Inc."></Manufacturer>
<Manufacturer id="0204" name="Beijing Sino-American Boyi Software Development Co. Ltd"></Manufacturer>
<Manufacturer id="0251" name="Beijing Universal Energy Huaxia Technology Co.Ltd"></Manufacturer>
<Manufacturer id="0196" name="Bellatrix Systems Inc."></Manufacturer>
<Manufacturer id="032D" name="Benetek"></Manufacturer>
<Manufacturer id="008a" name="BeNext">
<Product config="BeNext/mygate.xml" id="0100" name="myGate" type="0001"/>
<Product config="BeNext/mydisplay.xml" id="0100" name="myDisplay" type="0002"/>
<Product config="BeNext/Molite.xml" id="0100" name="MoLiTe Sensor" type="0003"/>
<Product config="BeNext/Molite.xml" id="0101" name="DHS-ZW-SNMT-01 Multi Sensor" type="0003"/>
<Product config="BeNext/DoorSensor.xml" id="0100" name="Door Sensor" type="0004"/>
<Product config="BeNext/DoorSensor.xml" id="0101" name="Door Sensor" type="0004"/>
<Product config="BeNext/AlarmSound.xml" id="0101" name="Alarm Sound" type="0005"/>
<Product config="BeNext/EnergySwitch.xml" id="0101" name="Energy Switch" type="0006"/>
<Product config="BeNext/EnergySwitch.xml" id="0200" name="Energy Switch" type="0006"/>
<Product config="BeNext/TagReader.xml" id="0100" name="Tag Reader" type="0007"/>
<Product config="BeNext/TagReader.xml" id="0101" name="Tag Reader" type="0007"/>
<Product config="BeNext/TagReader500.xml" id="0200" name="Tag Reader 500" type="0007"/>
<Product id="0101" name="Power Switch" type="0008"/>
<Product config="BeNext/BuiltinDimmer.xml" id="0100" name="Built-in Dimmer" type="000d"/>
<Product config="BeNext/PanicButton.xml" id="0100" name="Panic Button" type="0014"/>
<Product config="BeNext/PanicButton.xml" id="0101" name="Panic Button" type="0014"/>
<Product config="BeNext/PanicWatch.xml" id="0101" name="Panic Watch" type="0015"/>
<Product config="BeNext/SceneController.xml" id="0100" name="Scene Controller" type="0017"/>
<Product config="BeNext/PluginDimmer.xml" id="0100" name="Plug-in Dimmer" type="0018"/>
<Product config="BeNext/1poleswitch.xml" id="0001" name="1Pole Switch" type="001e"/>
<Product config="BeNext/2poleswitch.xml" id="0001" name="2Pole Switch" type="001f"/>
<Product config="BeNext/EnergySwitch.xml" id="0001" name="Energy Switch plus" type="0020"/>
<Product config="BeNext/HeatingControl.xml" id="0001" name="Heating Control" type="0021"/>
<Product config="BeNext/HeatingControl.xml" id="0100" name="Heating Control" type="0021"/>
<Product config="BeNext/HeatingControl.xml" id="0102" name="Heating Control" type="0021"/>
<Product config="BeNext/P1dongle.xml" id="0100" name="P1 Dongle" type="002f"/>
</Manufacturer>
<Manufacturer id="014B" name="BFT S.p.A."></Manufacturer>
<Manufacturer id="0052" name="Bit7 Inc."></Manufacturer>
<Manufacturer id="0311" name="Blaze Automation"></Manufacturer>
<Manufacturer id="0213" name="BMS Evler LTD"></Manufacturer>
<Manufacturer id="0023" name="Boca Devices"></Manufacturer>
<Manufacturer id="0169" name="Bonig und Kallenbach oHG (Popp)">
<Product config="popp/zweather.xml" id="0001" name="ZWeather" type="0001"/>
</Manufacturer>
<Manufacturer id="015C" name="Bosch Security Systems Inc"></Manufacturer>
<Manufacturer id="002d" name="Broadband Energy Networks Inc."></Manufacturer>
<Manufacturer id="024A" name="BTSTAR(HK) TECHNOLOGY COMPANY LIMITED"></Manufacturer>
<Manufacturer id="0145" name="Buffalo">
<Product config="buffalo/hw-100v15a-zw.xml" id="0004" name="HW-100V15A-ZW Measure Power Monitor" type="0001"/>
</Manufacturer>
<Manufacturer id="0190" name="Building 36 Technologies">
<Product config="building36/b36-t10.xml" id="0001" name="B36-T10" type="0001"/>
</Manufacturer>
<Manufacturer id="0396" name="Bulcraft Control"></Manufacturer>
<Manufacturer id="0026" name="BuLogics"></Manufacturer>
<Manufacturer id="0398" name="Calix"></Manufacturer>
<Manufacturer id="009C" name="Cameo Communications Inc."></Manufacturer>
<Manufacturer id="002e" name="Carrier"></Manufacturer>
<Manufacturer id="000B" name="CasaWorks"></Manufacturer>
<Manufacturer id="0243" name="casenio AG"></Manufacturer>
<Manufacturer id="0404" name="CCC Air Inc."></Manufacturer>
<Manufacturer id="0246" name="CentraLite Systems Inc"></Manufacturer>
<Manufacturer id="033C" name="Centurylink"></Manufacturer>
<Manufacturer id="0359" name="Chamberlain Group"></Manufacturer>
<Manufacturer id="014E" name="Check-It Solutions Inc."></Manufacturer>
<Manufacturer id="038F" name="CHENGPUTECH "></Manufacturer>
<Manufacturer id="0320" name="China Security and Fire IOT Sensing CO. LTD"></Manufacturer>
<Manufacturer id="0116" name="Chromagic Technologies Corporation">
<Product config="everspring/hsp02.xml" id="0001" name="HSCP02 Motion Detector" type="0001"/>
<Product config="everspringct/hsm02.xml" id="0001" name="HSM02 Mini Door/Window Detector" type="0002"/>
<Product config="everspring/hac01.xml" id="0001" name="HAC01 Remote Button" type="0010"/>
</Manufacturer>
<Manufacturer id="0280" name="Chuango Security Technology Corporation"></Manufacturer>
<Manufacturer id="0082" name="Cisco Consumer Business Group"></Manufacturer>
<Manufacturer id="0194" name="Clare Controls"></Manufacturer>
<Manufacturer id="018E" name="Climax Technology, Ltd."></Manufacturer>
<Manufacturer id="0200" name="Cloud Media "></Manufacturer>
<Manufacturer id="002f" name="Color Kinetics"></Manufacturer>
<Manufacturer id="0329" name="COMAP"></Manufacturer>
<Manufacturer id="0309" name="Comfortability"></Manufacturer>
<Manufacturer id="0140" name="Computime"></Manufacturer>
<Manufacturer id="011B" name="Connected Object"></Manufacturer>
<Manufacturer id="0179" name="ConnectHome">
<Product config="connecthome/ch-201.xml" id="0021" name="CH-201 Thermostat" type="0013"/>
</Manufacturer>
<Manufacturer id="0285" name="CONNECTION TECHNOLOGY SYSTEMS"></Manufacturer>
<Manufacturer id="025D" name="Contec intelligent housing"></Manufacturer>
<Manufacturer id="023F" name="Control4 Corporation"></Manufacturer>
<Manufacturer id="0019" name="ControlThink"></Manufacturer>
<Manufacturer id="000F" name="ConvergeX"></Manufacturer>
<Manufacturer id="007D" name="CoolGuard"></Manufacturer>
<Manufacturer id="0079" name="Cooper Lighting"></Manufacturer>
<Manufacturer id="001a" name="Cooper Wiring Devices">
<Product config="cooper/RF9542-Z.xml" id="0000" name="RF9542-Z Accessory Dimmer" type="4441"/>
<Product config="cooper/rf9534.xml" id="0002" name="RF9534DS Wall Dimmer Module" type="4449"/>
<Product config="cooper/RF9540-N.xml" id="0101" name="RF9540-N All Load Dimmer Light Switch" type="4449"/>
<Product config="cooper/RF9505-T.xml" id="0000" name="RF9505-T Split Control Duplex Receptacle" type="5244"/>
<Product config="cooper/RF9501.xml" id="0000" name="RF9501 Light Switch" type="534c"/>
<Product config="cooper/RF9517.xml" id="0000" name="RF9517 Accessory Light Switch" type="5352"/>
<Product config="cooper/RFWC5.xml" id="0000" name="RFWC5/RFWDC Scene Controller" type="574d"/>
<Product config="cooper/RF9601.xml" id="0503" name="RF9601 Light Switch" type="534c"/>
</Manufacturer>
<Manufacturer id="009d" name="Coventive Technologies Inc."></Manufacturer>
<Manufacturer id="0379" name="CPRO"></Manufacturer>
<Manufacturer id="0383" name="CribOS"></Manufacturer>
<Manufacturer id="0328" name="Cvnet"></Manufacturer>
<Manufacturer id="0014" name="Cyberhouse (GoControl)">
<Product config="gocontrol/GC-TBZ48L.xml" id="5436" name="GC-TBZ48L Battery Powered Z-Wave Plus Thermostat" type="5442"/>
</Manufacturer>
<Manufacturer id="0067" name="CyberTAN Technology, Inc."></Manufacturer>
<Manufacturer id="0030" name="Cytech Technology Pre Ltd.">
<Product config="comfort/ucm.xml" id="0001" name="Comfort 9000 with UCM/Zwave" type="0001"/>
</Manufacturer>
<Manufacturer id="0294" name="D-3 Technology Co. Ltd"></Manufacturer>
<Manufacturer id="0108" name="D-Link Corporation">
<Product config="dlink/dch-z110.xml" id="000e" name="DCH-Z110 Door/Window 3 in 1 sensor" type="0002"/>
<Product config="dlink/dch-z120.xml" id="000d" name="DCH-Z120 PIR/Motion 3 in 1 sensor" type="0002"/>
<Product config="dlink/dch-z510.xml" id="000a" name="DCH-Z510 Siren" type="0004"/>
<Product config="dlink/dch-z210.xml" id="0011" name="DCH-Z210 Gen5 Plug" type="0001"/>
</Manufacturer>
<Manufacturer id="0002" name="Danfoss">
<Product config="danfoss/rsroom.xml" id="8010" name="RS Room Sensor" type="0003"/>
<Product config="danfoss/rsroom.xml" id="8001" name="RS Room Sensor" type="8003"/>
<Product config="danfoss/z.xml" id="0175" name="Devolo Home Control Radiator Thermostat" type="0005"/>
<Product config="danfoss/z.xml" id="0003" name="Z Thermostat" type="0005"/>
<Product config="danfoss/z.xml" id="0004" name="Z Thermostat 014G0013" type="0005"/>
<Product id="0001" name="RA Plus-W Radiator Thermostat" type="0064"/>
<Product config="danfoss/z.xml" id="a010" name="Popp Radiator Thermostat" type="0115"/>
<Product id="2000" name="RXZ3 RF relay Switching Unit" type="8004"/>
<Product config="danfoss/living.xml" id="0001" name="Living Connect Radiator Thermostat" type="8005"/>
</Manufacturer>
<Manufacturer id="018C" name="Dawon DNS"></Manufacturer>
<Manufacturer id="020A" name="Decoris Intelligent System Limited"></Manufacturer>
<Manufacturer id="013F" name="Defacontrols BV"></Manufacturer>
<Manufacturer id="032E" name="DEFARO"></Manufacturer>
<Manufacturer id="040D" name="Delaney Hardware"></Manufacturer>
<Manufacturer id="0031" name="Destiny Networks"></Manufacturer>
<Manufacturer id="0175" name="devolo Home Control">
<Product config="devolo/mt2646.xml" id="0011" name="Metering Plug MT02646" type="0001"/>
<Product config="devolo/mt02792.xml" id="0012" name="Smart Metering Plug MT02792" type="0001"/>
<Product config="devolo/mt02648.xml" id="000e" name="Door/Window Contact MT02648" type="0002"/>
<Product config="devolo/mt02755.xml" id="0020" name="Humidity Sensor MT02755" type="0002"/>
<Product config="devolo/mt2756.xml" id="0021" name="Flood Sensor MT02756" type="0002"/>
<Product config="devolo/mt2647.xml" id="000d" name="Motion Sensor MT02647" type="0002"/>
<Product config="devolo/rs014G0159.xml" id="8010" name="Thermostats RS 014G0159" type="0003"/>
<Product config="devolo/mt02758.xml" id="000a" name="Siren MT02758" type="0004"/>
<Product config="devolo/connectz.xml" id="0175" name="Thermostats Danfoss Connect Z" type="0005"/>
<Product config="devolo/mt2652.xml" id="0101" name="Scene Switch MT2652" type="0100"/>
<Product config="devolo/mt2653.xml" id="0102" name="Key MT2653" type="0100"/>
<Product config="devolo/mt2651.xml" id="04a4" name="Smoke Detector MT2651" type="2004"/>
<Product config="devolo/mt2651.xml" id="2004" name="Smoke Detector MT2651" type="2004"/>
<Product config="devolo/mt2761.xml" id="0052" name="Home Control Shutter FM MT2761" type="0003"/>
<Product config="devolo/mt2759.xml" id="0052" name="Home Control Switch FM MT2759" type="0002"/>
<Product config="devolo/mt2760.xml" id="0052" name="Home Control Dimmer FM MT2760" type="0001"/>
</Manufacturer>
<Manufacturer id="0103" name="Diehl AKO">
<Product config="diehlcontrols/766366.xml" id="0002" name="Dimmer Actuator" type="0002"/>
</Manufacturer>
<Manufacturer id="0032" name="Digital 5 Inc."></Manufacturer>
<Manufacturer id="035D" name="Digital Watchdog"></Manufacturer>
<Manufacturer id="0228" name="DigitalZone"></Manufacturer>
<Manufacturer id="0127" name="Digital Monitoring Products"></Manufacturer>
<Manufacturer id="0177" name="Domino sistemi d.o.o."></Manufacturer>
<Manufacturer id="020e" name="Domitech">
<Product config="domitech/ze27eu.xml" id="3134" name="Smart LED Retrofit Kit ZE27EU" type="4c42"/>
<Product config="domitech/zb22uk.xml" id="3135" name="Smart LED Light Bulb ZB22UK" type="4c42"/>
</Manufacturer>
<Manufacturer id="021c" name="Domux Shenzhen iSurpass Technology Co.">
<Product config="domux/DX1DS-Z.xml" id="0168" name="Door Sensor DX1DS-Z" type="0168"/>
<Product config="domux/DX1MS-Z.xml" id="1000" name="Motion Sensor DX1MS-Z" type="8001"/>
<Product config="domux/DX1SA-Z.xml" id="1000" name="Smart Smoke Sensor DX1SA-Z" type="8002"/>
<Product config="domux/DX1CG-Z.xml" id="1000" name="Combustible Gas Sensor DX1CG-Z" type="8003"/>
<Product config="domux/DX1WL-Z.xml" id="1000" name="Water Leakage Sensor DX1WL-Z" type="8004"/>
<Product config="domux/DX1CA-Z.xml" id="1000" name="CO Sensor DX1CA-Z" type="8005"/>
<Product config="domux/DX2SK-Z.xml" id="1000" name="Smart Metering Plug DX2SK-Z" type="8006"/>
<Product config="domux/DX1HT-Z.xml" id="1000" name="Temperature Humidity Sensor DX1HT-Z" type="8007"/>
<Product config="domux/DX2SK-Z.xml" id="1000" name="Smart Plug DX2SK-Z" type="8008"/>
</Manufacturer>
<Manufacturer id="020C" name="Dongguan Zhou Da Electronics Co.,Ltd"></Manufacturer>
<Manufacturer id="017D" name="DRACOR Inc."></Manufacturer>
<Manufacturer id="0184" name="Dragon Tech">
<Product config="dragontech/wd-100.xml" id="3034" name="In Wall Dimmer" type="4447"/>
</Manufacturer>
<Manufacturer id="0223" name="DTV Research Unipessoal, Lda"></Manufacturer>
<Manufacturer id="0272" name="Dune-HD"></Manufacturer>
<Manufacturer id="0334" name="Dusun Electron Ltd."></Manufacturer>
<Manufacturer id="031B" name="DVACO GROUP"></Manufacturer>
<Manufacturer id="0132" name="DynaQuip Controls"></Manufacturer>
<Manufacturer id="010D" name="e-Home AUTOMATION"></Manufacturer>
<Manufacturer id="0247" name="EASY SAVER Co. Inc"></Manufacturer>
<Manufacturer id="001A" name="Eaton"></Manufacturer>
<Manufacturer id="017C" name="EbV"></Manufacturer>
<Manufacturer id="016B" name="Echostar"></Manufacturer>
<Manufacturer id="028F" name="Eco Automation"></Manufacturer>
<Manufacturer id="0431" name="EcoDim">
<Product config="ecodim/0.7.xml" id="0002" name="ECO-DIM.07 Z-Wave LED dimmer" type="0202"/>
</Manufacturer>
<Manufacturer id="037C" name="Eco Life Engineering Co. Ltd."></Manufacturer>
<Manufacturer id="014a" name="Ecolink">
<Product config="ecolink/sensor.xml" id="0001" name="Motion Sensor" type="0001"/>
<Product config="ecolink/doorwindow.xml" id="0002" name="Door/Window Sensor" type="0001"/>
<Product config="ecolink/tiltsensor.xml" id="0003" name="Tilt Sensor" type="0001"/>
<Product config="ecolink/motion.xml" id="0001" name="Motion Detector" type="0004"/>
<Product config="ecolink/doorwindow.xml" id="0002" name="Door/Window Sensor" type="0004"/>
<Product config="ecolink/tiltsensor.xml" id="0003" name="Tilt Sensor" type="0004"/>
<Product config="ecolink/floodfreeze.xml" id="0010" name="Flood/Freeze Sensor" type="0005"/>
<Product config="ecolink/firefighter.xml" id="000f" name="FireFighter" type="0005"/>
</Manufacturer>
<Manufacturer id="015d" name="EcoNet Controls">
<Product config="econet/ezw1204.xml" id="c41c" name="EZW1204 Water Leak Sensor" type="2003"/>
</Manufacturer>
<Manufacturer id="039D" name="ECS"></Manufacturer>
<Manufacturer id="031F" name="Eelectron SpA"></Manufacturer>
<Manufacturer id="026B" name="Ei Electronics"></Manufacturer>
<Manufacturer id="0087" name="Eka Systems"></Manufacturer>
<Manufacturer id="0034" name="El-Gev Electronics LTD"></Manufacturer>
<Manufacturer id="0389" name="Elear Solutions Tech Pvt. Ltd."></Manufacturer>
<Manufacturer id="0033" name="Electronic Solutions Inc">
<Product config="electronicsolutions/dbmz.xml" id="0002" name="DBMZ Motor Control" type="5250"/>
<Product config="electronicsolutions/dbmz.xml" id="3032" name="DBMZ Motor Control" type="5250"/>
</Manufacturer>
<Manufacturer id="021f" name="Elexa Consumer Products Inc. (Dome)">
<Product config="dome/0002.xml" id="0002" name="Water Shut-Off Valve" type="0003"/>
<Product config="dome/0083.xml" id="0083" name="Motion Detector" type="0003"/>
<Product config="dome/0085.xml" id="0085" name="Leak Sensor" type="0003"/>
<Product config="dome/0086.xml" id="0086" name="Mouser" type="0003"/>
<Product config="dome/0087.xml" id="0087" name="On/Off Plug-In Switch" type="0003"/>
<Product config="dome/0088.xml" id="0088" name="Siren" type="0003"/>
<Product config="dome/0101.xml" id="0101" name="Door/Window Sensor" type="0003"/>
<Product config="dome/0104.xml" id="0104" name="Mouser" type="0003"/>
<Product config="dome/dmex1.xml" id="0108" name="DMEX1 Range Extender" type="0003"/>
<Product config="dome/0201.xml" id="0201" name="Door/Window Sensor Pro" type="0003"/>
</Manufacturer>
<Manufacturer id="001b" name="ELK Products"></Manufacturer>
<Manufacturer id="0393" name="Embedded Data Systems"></Manufacturer>
<Manufacturer id="020B" name="Embedded System Design Limited"></Manufacturer>
<Manufacturer id="0035" name="Embedit A/S"></Manufacturer>
<Manufacturer id="0284" name="Empers Tech Co., Ltd."></Manufacturer>
<Manufacturer id="0336" name="EMT Controls"></Manufacturer>
<Manufacturer id="014d" name="Enblink">
<Product config="enblink/ss201-us-w_1308.xml" id="0001" name="SS201-US-W Z-Wave Controller" type="0001"/>
</Manufacturer>
<Manufacturer id="0219" name="Enwox Technologies s.r.o."></Manufacturer>
<Manufacturer id="006F" name="Erone">
<Product id="0001" name="Door/Window Sensor" type="0102"/>
<Product id="0001" name="HM-AM001 Plugin Appliance Module" type="0104"/>
</Manufacturer>
<Manufacturer id="0160" name="Essence Security"></Manufacturer>
<Manufacturer id="029B" name="ESSENTIAL TECHNOLOGIES INC."></Manufacturer>
<Manufacturer id="0148" name="EUROtronic">
<Product config="eurotronic/eur_stellaz.xml" id="0001" name="EUR_STELLAZ Wall Radiator Thermostat Valve Control" type="0001"/>
<Product config="eurotronic/eur_cometz.xml" id="0001" name="EUR_COMETZ Wall Radiator Thermostat Valve Control" type="0002"/>
<Product config="eurotronic/eur_spiritz.xml" id="0001" name="EUR_SPIRITZ Wall Radiator Thermostat" type="0003"/>
<Product config="eurotronic/eur_spiritz.xml" id="0002" name="EUR_SPIRITZ Wall Radiator Thermostat" type="0003"/>
<Product config="eurotronic/eur_spiritz.xml" id="0003" name="EUR_SPIRITZ Wall Radiator Thermostat" type="0003"/>
<Product config="eurotronic/eur_temphumin.xml" id="0001" name="Temperature and Humidity Sensor" type="0004"/>
<Product config="eurotronic/eur_airquality.xml" id="0001" name="Air Quality Sensor" type="0005"/>
</Manufacturer>
<Manufacturer id="011a" name="Enerwave">
<Product config="enerwave/zwn-bpc.xml" id="0901" name="ZWN-BPC Ceiling Mounted PIR Motion Sensor" type="0601"/>
<Product config="enerwave/zwn-sc7.xml" id="0b03" name="ZWN-SC7 7-Button Scene Controller" type="0801"/>
<Product config="enerwave/zw15s.xml" id="0102" name="ZW15S 15A On/Off Switch" type="0101"/>
<Product config="enerwave/zw20r.xml" id="0603" name="ZW20R 20A TR Duplex Receptacle" type="0101"/>
<Product config="enerwave/zwnrsm1plus.xml" id="0605" name="ZWN-RSM1 PLUS—Smart Single Relay Switch Module" type="0111"/>
<Product config="enerwave/zwnrsm2plus.xml" id="0606" name="ZWN-RSM2-PLUS Smart Single Relay Switch Module" type="0111"/>
<Product config="enerwave/zw20rm.xml" id="0101" name="ZW20RM 20A TR Smart Meter Duplex Receptacle" type="0111"/>
<Product config="enerwave/zw500d.xml" id="0201" name="ZW500D 500W In-Wall Preset Dimmer Switch" type="0102"/>
<Product config="enerwave/zw15rmplus.xml" id="0105" name="ZW15RM Plus 15A TR Smart Meter Duplex Receptacle" type="0111"/>
</Manufacturer>
<Manufacturer id="0060" name="Everspring">
<Product config="everspring/hsp02.xml" id="0001" name="HSP02 Motion Detector" type="0001"/>
<Product config="everspring/sp814.xml" id="0002" name="SP814 Motion Detector" type="0001"/>
<Product config="everspring/sp815.xml" id="0004" name="SP815 Pet Immune Pir Motion Detector" type="0001"/>
<Product config="everspring/sp816.xml" id="0005" name="SP816 Outdoor Motion Detector" type="0001"/>
<Product config="everspring/sm103.xml" id="0001" name="SM103 Door/Window Sensor" type="0002"/>
<Product config="everspring/lptdm1u.xml" id="0001" name="AD142 Plug-in Dimmer Module" type="0003"/>
<Product config="everspring/ad147.xml" id="0003" name="AD147 Plug-in Dimmer Module" type="0003"/>
<Product config="everspring/ad146.xml" id="0002" name="AD146 In wall Dimmer Module" type="0003"/>
<Product config="everspring/an157.xml" id="0001" name="AN157 Plug-in Appliance Module" type="0004"/>
<Product config="everspring/an158.xml" id="0002" name="AN158 Plug-in Meter Appliance Module" type="0004"/>
<Product config="everspring/an163.xml" id="0005" name="AN163 Plug-in On/Off with meter function" type="0004"/>
<Product config="everspring/an181.xml" id="0006" name="AN181 Miniplug On/Off with meter function" type="0004"/>
<Product config="everspring/an180.xml" id="0007" name="AN180 Plug-in ON/OFF Module" type="0004"/>
<Product config="everspring/an179.xml" id="0008" name="AN179 In wall ON/OFF Module" type="0004"/>
<Product config="everspring/st814.xml" id="0001" name="ST814 Temperature and Humidity Sensor" type="0006"/>
<Product config="everspring/st815.xml" id="0001" name="ST815 Illumination Sensor" type="0007"/>
<Product config="everspring/tse03.xml" id="0001" name="TSE03 Door Bell" type="0009"/>
<Product config="everspring/st812.xml" id="0001" name="ST812 Flood Detector" type="000b"/>
<Product config="everspring/se812.xml" id="0001" name="SE812 Siren" type="000c"/>
<Product config="everspring/sf812.xml" id="0001" name="SF812 Smoke Alarm" type="000d"/>
<Product config="everspring/hac01.xml" id="0001" name="HAC01 In-wall Remote Module" type="0010"/>
<Product config="everspring/han01.xml" id="0001" name="HAN01 In-wall Switch Module" type="0011"/>
<Product config="everspring/han02-1.xml" id="0002" name="HAN02 In-wall Switch Module" type="0011"/>
<Product config="everspring/sp103.xml" id="0001" name="SP103 PIR Motion Sensor" type="0101"/>
<Product config="everspring/an145.xml" id="0001" name="AN145 Lamp Screw In Module" type="0104"/>
<Product config="everspring/sm103.xml" id="0001" name="SM103 Door/Window Sensor" type="0202"/>
</Manufacturer>
<Manufacturer id="0113" name="Evolve Guest Controls">
<Product config="evolve/lrm-as.xml" id="3034" name="LRM-AS Wall Dimmer 500W" type="4457"/>
<Product config="evolve/lfm-20.xml" id="3133" name="LFM-20 Fixture Module" type="5246"/>
<Product config="evolve/lsm-15.xml" id="3533" name="LSM-15 Wall Switch" type="5257"/>
<Product config="evolve/ltm-5.xml" id="3033" name="LTM-5 Wall Switch Transmitter" type="5457"/>
<Product config="evolve/t-100.xml" id="5434" name="T-100 Thermostat" type="4556" />
</Manufacturer>
<Manufacturer id="036F" name="Evolvere SpA"></Manufacturer>
<Manufacturer id="0036" name="Exceptional Innovations"></Manufacturer>
<Manufacturer id="0004" name="Exhausto"></Manufacturer>
<Manufacturer id="009f" name="Exigent"></Manufacturer>
<Manufacturer id="0233" name="eZEX Corporation"></Manufacturer>
<Manufacturer id="0085" name="Fakro">
<Product config="fakro/zwp10.xml" id="0001" name="ZWP10 Remote Controller" type="0001"/>
<Product config="fakro/arz.xml" id="0002" name="ARZ Roof Window Roller Shutter" type="0002"/>
<Product config="fakro/zws230.xml" id="0005" name="ZWS230 Chain actuator 230VAC" type="0002"/>
<Product config="fakro/zws12.xml" id="0001" name="ZWS12 Chain actuator 12VDC" type="0003"/>
<Product config="fakro/zws230.xml" id="0002" name="ZWS230 Chain actuator 230VAC" type="0003"/>
<Product config="fakro/zwrs.xml" id="0001" name="ZWRS Roller Shutter FLiRS module" type="0016"/>
<Product config="fakro/arzsolar.xml" id="0012" name="ARZ SOLAR Roof Window Roller Shutter" type="0003"/>
<Product config="fakro/zrh12.xml" id="0004" name="ZRH12 Portable Remote Controller" type="0001"/>
</Manufacturer>
<Manufacturer id="016a" name="Fantem (Oomi)">
<!-- EU-market products seems to start with type prefix "00" -->
<!-- US-market products start with type prefix "01" -->
<!-- AU-market products start with type prefix "02" -->
<!-- CN-market products start with type prefix "1D" -->
<Product config="oomi/ft100.xml" id="0064" name="FT100 MultiSensor 6" type="0002"/>
<Product config="oomi/ft100.xml" id="0064" name="FT100 MultiSensor 6" type="0102"/>
<Product config="oomi/ft100.xml" id="0064" name="FT100 MultiSensor 6" type="0202"/>
<Product config="oomi/ft100.xml" id="0064" name="FT100 MultiSensor 6" type="1D02"/>
<Product config="oomi/ft111.xml" id="006F" name="FT111 In Wall Dimmer" type="0103"/>
<Product config="oomi/ft111.xml" id="006F" name="FT111 In Wall Dimmer" type="0203"/>
<Product config="oomi/ft111.xml" id="006F" name="FT111 In Wall Dimmer" type="1D03"/>
<Product config="oomi/ft112.xml" id="0070" name="FT112 Door-window sensor" type="0002"/>
<Product config="oomi/ft118.xml" id="0076" name="FT118 Range extender 6" type="0004"/>
</Manufacturer>
<Manufacturer id="010f" name="FIBARO System">
<Product config="fibaro/fgbs001.xml" id="0101" name="FGBS001 Universal Binary Sensor" type="0501"/>
<Product config="fibaro/fgbs001.xml" id="0102" name="FGBS001 Universal Binary Sensor" type="0501"/>
<Product config="fibaro/fgbs001.xml" id="0109" name="FGBS001 Universal Binary Sensor" type="0501"/>
<Product config="fibaro/fgbs001.xml" id="1002" name="FGBS001 Universal Binary Sensor" type="0501"/>
<Product config="fibaro/fgbs001.xml" id="3002" name="FGBS001 Universal Binary Sensor" type="0501"/>
<Product config="fibaro/fgbs001.xml" id="4002" name="FGBS001 Universal Binary Sensor" type="0501"/>
<Product config="fibaro/fgbs222.xml" id="1000" name="FGBS222 Smart Implant" type="0502"/>
<Product config="fibaro/fgbs222.xml" id="2000" name="FGBS222 Smart Implant" type="0502"/>
<Product config="fibaro/fgbs222.xml" id="3000" name="FGBS222 Smart Implant" type="0502"/>
<Product config="fibaro/fgd211.xml" id="0104" name="FGD211 Universal Dimmer 500W" type="0100"/>
<Product config="fibaro/fgd211.xml" id="0106" name="FGD211 Universal Dimmer 500W" type="0100"/>
<Product config="fibaro/fgd211.xml" id="0107" name="FGD211 Universal Dimmer 500W" type="0100"/>
<Product config="fibaro/fgd211.xml" id="0109" name="FGD211 Universal Dimmer 500W" type="0100"/>
<Product config="fibaro/fgd211.xml" id="100a" name="FGD211 Universal Dimmer 500W" type="0100"/>
<Product config="fibaro/fgd211.xml" id="300a" name="FGD211 Universal Dimmer 500W" type="0100"/>
<Product config="fibaro/fgd212.xml" id="1000" name="FGD212 Dimmer 2" type="0102"/>
<Product config="fibaro/fgd212.xml" id="2000" name="FGD212 Dimmer 2" type="0102"/>
<Product config="fibaro/fgd212.xml" id="3000" name="FGD212 Dimmer 2" type="0102"/>
<Product config="fibaro/fgd212.xml" id="4000" name="FGD212 Dimmer 2" type="0102"/>
<Product config="fibaro/fgk001.xml" id="1000" name="FGK101 Door Opening Sensor" type="0700"/>
<Product config="fibaro/fgk001.xml" id="2000" name="FGK10x Door Opening Sensor" type="0700"/>
<Product config="fibaro/fgk001.xml" id="3000" name="FGK101 Door Opening Sensor" type="0700"/>
<Product config="fibaro/fgk001.xml" id="4000" name="FGK101 Door Opening Sensor" type="0700"/>
<Product config="fibaro/fgk10x.xml" id="1001" name="FGK10x Door Opening Sensor" type="0701"/>
<Product config="fibaro/fgk10x.xml" id="2001" name="FGK10x Door Opening Sensor" type="0701"/>
<Product config="fibaro/fgk10x.xml" id="3001" name="FGK10x Door Opening Sensor" type="0701"/>
<Product config="fibaro/fgdw2.xml" id="1000" name="FGDW002 Door Opening Sensor 2" type="0702"/>
<Product config="fibaro/fgdw2.xml" id="2000" name="FGDW002 Door Opening Sensor 2" type="0702"/>
<Product config="fibaro/fgdw2.xml" id="3000" name="FGDW002 Door Opening Sensor 2" type="0702"/>
<Product config="fibaro/fgr221.xml" id="0104" name="FGR221 Roller Shutter Controller" type="0300"/>
<Product config="fibaro/fgr221.xml" id="100a" name="FGR221 Roller Shutter Controller" type="0300"/>
<Product config="fibaro/fgr221.xml" id="0106" name="FGR221 Roller Shutter Controller" type="0300"/>
<Product config="fibaro/fgr221.xml" id="0107" name="FGR221 Roller Shutter Controller" type="0300"/>
<Product config="fibaro/fgr221.xml" id="0109" name="FGR221 Roller Shutter Controller" type="0300"/>
<Product config="fibaro/fgrm222.xml" id="1001" name="FGRM222 Roller Shutter Controller 2" type="0301"/>
<Product config="fibaro/fgrm222.xml" id="1000" name="FGRM222 Roller Shutter Controller 2" type="0302"/>
<Product config="fibaro/fgrm222.xml" id="3000" name="FGRM222 Roller Shutter Controller 2" type="0302"/>
<Product config="fibaro/fgrm222.xml" id="4000" name="FGRM222 Roller Shutter Controller 2" type="0302"/>
<Product config="fibaro/fgs211.xml" id="0104" name="FGS211 Switch 3kW" type="0400"/>
<Product config="fibaro/fgs211.xml" id="0105" name="FGS211 Switch 3kW" type="0400"/>
<Product config="fibaro/fgs211.xml" id="0106" name="FGS211 Switch 3kW" type="0400"/>
<Product config="fibaro/fgs211.xml" id="0107" name="FGS211 Switch 3kW" type="0400"/>
<Product config="fibaro/fgs211.xml" id="0108" name="FGS211 Switch 3kW" type="0400"/>
<Product config="fibaro/fgs211.xml" id="0109" name="FGS211 Switch 3kW" type="0400"/>
<Product config="fibaro/fgs211.xml" id="100a" name="FGS211 Switch 3kW" type="0400"/>
<Product config="fibaro/fgs211.xml" id="400a" name="FGS211 Switch 3kW" type="0400"/>
<Product config="fibaro/fgs212.xml" id="1002" name="FGS212 Switch 3kW" type="0402"/>
<Product config="fibaro/fgs212.xml" id="3002" name="FGS212 Switch 3kW" type="0402"/>
<Product config="fibaro/fgs212.xml" id="4002" name="FGS212 Switch 3kW" type="0402"/>
<Product config="fibaro/fgs213.xml" id="1000" name="FGS213 Switch" type="0403"/>
<Product config="fibaro/fgs213.xml" id="2000" name="FGS213 Switch" type="0403"/>
<Product config="fibaro/fgs213.xml" id="3000" name="FGS213 Switch" type="0403"/>
<Product config="fibaro/fgs213.xml" id="4000" name="FGS213 Switch" type="0403"/>
<Product config="fibaro/fgs214.xml" id="1000" name="FGS214 Single Relay Switch" type="0404"/>
<Product config="fibaro/fgs214.xml" id="4000" name="FGS214 Single Relay Switch" type="0404"/>
<Product config="fibaro/fgs221.xml" id="0104" name="FGS221 Double Relay Switch 2x1.5kW" type="0200"/>
<Product config="fibaro/fgs221.xml" id="0105" name="FGS221 Double Relay Switch 2x1.5kW" type="0200"/>
<Product config="fibaro/fgs221.xml" id="0106" name="FGS221 Double Relay Switch 2x1.5kW" type="0200"/>
<Product config="fibaro/fgs221.xml" id="0107" name="FGS221 Double Relay Switch 2x1.5kW" type="0200"/>
<Product config="fibaro/fgs221.xml" id="0109" name="FGS221 Double Relay Switch 2x1.5kW" type="0200"/>
<Product config="fibaro/fgs221.xml" id="100a" name="FGS221 Double Relay Switch 2x1.5kW" type="0200"/>
<Product config="fibaro/fgs221.xml" id="300a" name="FGS221 Double Relay Switch 2x1.5kW" type="0200"/>
<Product config="fibaro/fgs221.xml" id="400a" name="FGS221 Double Relay Switch 2x1.5kW" type="0200"/>
<Product config="fibaro/fgs222.xml" id="1002" name="FGS222 Double Relay Switch 2x1.5kW" type="0202"/>
<Product config="fibaro/fgs222.xml" id="3002" name="FGS222 Double Relay Switch 2x1.5kW" type="0202"/>
<Product config="fibaro/fgs223.xml" id="1000" name="FGS223 Double Relay" type="0203"/>
<Product config="fibaro/fgs223.xml" id="2000" name="FGS223 Double Relay" type="0203"/>
<Product config="fibaro/fgs223.xml" id="3000" name="FGS223 Double Relay" type="0203"/>
<Product config="fibaro/fgs223.xml" id="4000" name="FGS223 Double Relay" type="0203"/>
<Product config="fibaro/fgs224.xml" id="1000" name="FGS224 Double Smart Module" type="0204"/>
<Product config="fibaro/fgr223.xml" id="1000" name="FGR223 Roller Shutter Controller 3" type="0303"/>
<Product config="fibaro/fgwpe.xml" id="1000" name="FGWPE/F Wall Plug" type="0600"/>
<Product config="fibaro/fgwpe.xml" id="1000" name="FGWPE/F Wall Plug" type="0200"/>
<Product config="fibaro/fgwoe.xml" id="1000" name="FGWOE/F Walli Outlet" type="1f01"/>
<Product config="fibaro/fgwpb121.xml" id="2000" name="FGWPB-121 Wall Plug" type="1401"/>
<Product config="fibaro/fgwpfzw5.xml" id="1001" name="FGWPE/F Wall Plug Gen5" type="0602"/>
<Product config="fibaro/fgwpfzw5.xml" id="1003" name="FGWPE/F Wall Plug Gen5" type="0602"/>
<Product config="fibaro/fgms.xml" id="1001" name="FGMS001 Motion Sensor" type="0800"/>
<Product config="fibaro/fgms.xml" id="2001" name="FGMS001 Motion Sensor" type="0800"/>
<Product config="fibaro/fgms.xml" id="3001" name="FGMS001 Motion Sensor" type="0800"/>
<Product config="fibaro/fgms.xml" id="4001" name="FGMS001 Motion Sensor" type="0800"/>
<!--<Product type="0801" id="1001" name="FGMS001 Motion Sensor" config="fibaro/fgms.xml" />-->
<Product config="fibaro/fgmszw5.xml" id="1001" name="FGMS001-ZW5 Motion Sensor" type="0801"/>
<Product config="fibaro/fgmszw5.xml" id="1002" name="FGMS001-ZW5 Motion Sensor" type="0801"/>
<Product config="fibaro/fgmszw5.xml" id="2001" name="FGMS001-ZW5 Motion Sensor" type="0801"/>
<Product config="fibaro/fgmszw5.xml" id="2002" name="FGMS001-ZW5 Motion Sensor" type="0801"/>
<Product config="fibaro/fgmszw5.xml" id="3001" name="FGMS001-ZW5 Motion Sensor" type="0801"/>
<Product config="fibaro/fgmszw5.xml" id="3002" name="FGMS001-ZW5 Motion Sensor" type="0801"/>
<Product config="fibaro/fgfs101.xml" id="3001" name="FGFS101 Flood Sensor" type="0b00"/>
<Product config="fibaro/fgfs101.xml" id="4001" name="FGFS101 Flood Sensor" type="0b00"/>
<Product config="fibaro/fgfs101.xml" id="1001" name="FGFS101 Flood Sensor" type="0b00"/>
<Product config="fibaro/fgfs101.xml" id="2001" name="FGFS101 Flood Sensor" type="0b00"/>
<Product config="fibaro/fgfs101.xml" id="9e00" name="FGFS101 Flood Sensor" type="0b00"/>
<Product config="fibaro/fgfs101zw5.xml" id="1002" name="FGFS101 Zwave+ Flood Sensor" type="0b01"/>
<Product config="fibaro/fgfs101zw5.xml" id="1003" name="FGFS101 Zwave+ Flood Sensor" type="0b01"/>
<Product config="fibaro/fgfs101zw5.xml" id="2002" name="FGFS101 Zwave+ Flood Sensor" type="0b01"/>
<Product config="fibaro/fgfs101zw5.xml" id="2003" name="FGFS101 Zwave+ Flood Sensor" type="0b01"/>
<Product config="fibaro/fgfs101zw5.xml" id="3002" name="FGFS101 Zwave+ Flood Sensor" type="0b01"/>
<Product config="fibaro/fgrgbwm441.xml" id="1000" name="FGRGBWM441 RGBW Controller" type="0900"/>
<Product config="fibaro/fgrgbwm441.xml" id="2000" name="FGRGBWM441 RGBW Controller" type="0900"/>
<Product config="fibaro/fgrgbwm441.xml" id="3000" name="FGRGBWM441 RGBW Controller" type="0900"/>
<Product config="fibaro/fgrgbwm441.xml" id="4000" name="FGRGBWM441 RGBW Controller" type="0900"/>
<Product config="fibaro/fgrgbw442.xml" id="1000" name="FGRGBW442 RGBW Controller 2" type="0902"/>
<Product config="fibaro/fgrgbw442.xml" id="2000" name="FGRGBW442 RGBW Controller 2" type="0902"/>
<Product config="fibaro/fgrgbw442.xml" id="3000" name="FGRGBW442 RGBW Controller 2" type="0902"/>
<Product config="fibaro/fgrgbw442.xml" id="4000" name="FGRGBW442 RGBW Controller 2" type="0902"/>
<Product config="fibaro/fgss101.xml" id="1000" name="FGSS101 Smoke Sensor" type="0c00"/>
<Product config="fibaro/fgsd002.xml" id="1002" name="FGSD002 Smoke Sensor" type="0c02"/>
<Product config="fibaro/fgsd002.xml" id="1003" name="FGSD002 Smoke Sensor" type="0c02"/>
<Product config="fibaro/fggc001.xml" id="1000" name="FGGC001 Swipe" type="0d01"/>
<Product config="fibaro/fggc001.xml" id="2000" name="FGGC001 Swipe" type="0d01"/>
<Product config="fibaro/fgpb101.xml" id="1000" name="FGPB101 Button" type="0f01"/>
<Product config="fibaro/fgpb101.xml" id="2000" name="FGPB101 Button" type="0f01"/>
<Product config="fibaro/fgpb101.xml" id="3000" name="FGPB101 Button" type="0f01"/>
<Product config="fibaro/fgkf601.xml" id="1000" name="FGKF601 Keyfob" type="1001"/>
<Product config="fibaro/fgkf601.xml" id="2000" name="FGKF601 Keyfob" type="1001"/>
<Product config="fibaro/fgcd001.xml" id="1000" name="FGSD001 CO Sensor" type="1201"/>
<Product config="fibaro/fgcd001.xml" id="1001" name="FGSD001 CO Sensor" type="1201"/>
<Product config="fibaro/fgt001.xml" id="1000" name="FGT001 Heat Controller" type="1301"/>
<Product config="fibaro/fgt001.xml" id="1001" name="FGT001 Heat Controller" type="1301"/>
<Product config="fibaro/fgwpg111.xml" id="2000" name="FGWPG111 US Wall Plug" type="1701"/>
<Product config="fibaro/fgwpg111.xml" id="1000" name="FGWPG111 UK Wall Plug" type="1801"/>
<Product config="fibaro/fgwds221ss.xml" id="1000" name="FGWDS221 Walli Double Switch (Single switch mode)" type="1A01"/>
<Product config="fibaro/fgwds221.xml" id="1000" name="FGWDS221 Walli Double Switch" type="1B01"/>
<Product config="fibaro/fgwd111.xml" id="1000" name="FGWD111 Walli Dimmer" type="1C01"/>
<Product config="fibaro/fgwr111.xml" id="1000" name="FGWR111 Walli Roller Shutter" type="1d01"/>
<Product config="fibaro/fgwceu201.xml" id="1000" name="FGWCEU201 Walli Controller" type="2301"/>
</Manufacturer>
<Manufacturer id="0295" name="fifthplay nv"></Manufacturer>
<Manufacturer id="0138" name="First Alert (BRK Brands Inc)">
<Product config="firstalert/zsmoke.xml" id="0001" name="ZSmoke Smoke Detector" type="0001"/>
<Product config="firstalert/zcombo.xml" id="0002" name="ZCombo Smoke and Carbon Monoxide Detector" type="0001"/>
<Product config="firstalert/zcombo-g.xml" id="0003" name="ZCombo-G Smoke/CO Alarm" type="0001"/>
</Manufacturer>
<Manufacturer id="002c" name="Flex Automation"></Manufacturer>
<Manufacturer id="004F" name="Flex Automation"></Manufacturer>
<Manufacturer id="018D" name="Flextronics"></Manufacturer>
<Manufacturer id="0024" name="Flue Sentinel"></Manufacturer>
<Manufacturer id="0037" name="Foard Systems"></Manufacturer>
<Manufacturer id="018F" name="Focal Point Limited"></Manufacturer>
<Manufacturer id="0137" name="FollowGood Technology Company">
<Product config="followgood/swz-1002.xml" id="0002" name="SWZ-1002 Binary Power Switch" type="3001"/>
</Manufacturer>
<Manufacturer id="0207" name="Forest Group Nederland B.V">
<Product config="forest/fs2z5232000002.xml" id="0100" name="Shuttle L Z-Wave" type="0027"/>
</Manufacturer>
<Manufacturer id="0084" name="FortrezZ">
<Product config="fortrezz/wwa-01aa.xml" id="0210" name="WWA-01AA - Wireless Water and Freeze Alarm" type="0013"/>
<Product config="fortrezz/wwa02.xml" id="010a" name="WWA-02 Water and Temperature Alarm" type="0021"/>
<Product config="fortrezz/wwa02.xml" id="0109" name="WWA-02 Water and Temperature Alarm" type="0023"/>
<Product id="0216" name="WWA-01AA Wireless Water and Freeze Alarm" type="0053"/>
<Product config="fortrezz/wv01.xml" id="020c" name="WV-01 Automated Water Shut-Off Valve" type="0213"/>
<Product config="fortrezz/wv01.xml" id="aa06" name="WV-01 Automated Water Shut-Off Valve" type="0233"/>
<Product config="fortrezz/wv01.xml" id="0300" name="WV-01 Automated Water Shut-Off Valve" type="0241"/>
<Product config="fortrezz/wv01.xml" id="0216" name="WV-01 Automated Water Shut-Off Valve" type="0243"/>
<Product config="fortrezz/ssa2.xml" id="0109" name="SSA1 / SSA2 - Siren/Strobe Light Alarm" type="0311"/>
<Product config="fortrezz/ssa2.xml" id="010b" name="SSA1 / SSA2 - Siren/Strobe Light Alarm" type="0311"/>
<Product config="fortrezz/ssa2.xml" id="0107" name="SSA1 / SSA2 - Siren/Strobe Light Alarm" type="0313"/>
<Product config="fortrezz/ssa2.xml" id="010b" name="SSA2 - Siren/Strobe Light Alarm" type="0313"/>
<Product config="fortrezz/ssa3.xml" id="010b" name="SSA3 - Siren/Strobe Light Alarm" type="0331"/>
<Product config="fortrezz/ssa3.xml" id="0205" name="SSA3 - Siren/Strobe Light Alarm" type="0341"/>
<Product config="fortrezz/ssa3.xml" id="0205" name="SSA3 - Siren/Strobe Light Alarm" type="0343"/>
<Product config="fortrezz/mimolite.xml" id="0111" name="MIMOlite" type="0451"/>
<Product config="fortrezz/mimolite.xml" id="0110" name="MIMOlite" type="0453"/>
<Product config="fortrezz/mimolite.xml" id="0111" name="MIMOlite" type="0453"/>
<Product config="fortrezz/mimo2plus.xml" id="0204" name="MIMO2+" type="0463"/>
<Product config="fortrezz/mimo2plus.xml" id="0208" name="MIMO2+" type="0463"/>
<Product config="fortrezz/fmi.xml" id="0110" name="FMI Flow Meter" type="0473"/>
<Product config="fortrezz/gdc1_fortrezz_1501.xml" id="0111" name="GDC1 Siren/Strobe Light Alarm" type="0513"/>
<Product config="fortrezz/fts05p.xml" id="020a" name="FTS05P Flood & Temperature Sensor" type="00a3"/>
<Product config="fortrezz/fts05p.xml" id="020e" name="FTS05P Flood & Temperature Sensor" type="00a3"/>
</Manufacturer>
<Manufacturer id="011D" name="Foxconn"></Manufacturer>
<Manufacturer id="039C" name="Foxconn Industrial Internet"></Manufacturer>
<Manufacturer id="0110" name="Frostdale">
<Product config="frostdale/fdn2311.xml" id="0001" name="Nanogrid: FDN2nxx light switch - where n is 1, 2, 3 or 4 buttons" type="2411"/>
<Product config="frostdale/fdn2nxx.xml" id="0031" name="Nanogrid: FDN2nxx light switch - where n is 1, 2, 3 or 4 buttons" type="7333"/>
</Manufacturer>
<Manufacturer id="0305" name="Future Home AS">
<Product config="thermofloor/heatitz8.xml" id="a305" name="Future Home AS (Heatit) Z-Push Button 8" type="0300"/>
</Manufacturer>
<Manufacturer id="033E" name="GE"></Manufacturer>
<Manufacturer id="0063" name="GE (Jasco Products)">
<Product config="ge/dimmer_module.xml" id="3030" name="45602 Lamp Dimmer Module" type="4450"/>
<Product config="ge/dimmer.xml" id="3230" name="45606 2-Way Dimmer Switch" type="4457"/>
<Product config="ge/12724-dimmer.xml" id="3031" name="12724 3-Way Dimmer Switch" type="4944"/>
<Product config="ge/12724-dimmer.xml" id="3033" name="12729 3-Way Dimmer Switch" type="4944"/>
<Product config="ge/12724-dimmer.xml" id="3034" name="12730 Fan Control Switch" type="4944"/>
<Product config="ge/12724-dimmer.xml" id="3131" name="14287 Fan Control Switch" type="4944"/>
<Product config="ge/12724-dimmer.xml" id="3032" name="12725 In-Wall 1000W Dimmer" type="4944"/>
<Product config="ge/14280-plugin-dimmer.xml" id="3033" name="14280 Plug-In Two-Outlet Smart Dimmer with Simultaneous Control" type="5044"/>
<Product config="ge/14288-outlet.xml" id="3134" name="14288 In-Wall Tamper Resistant Smart Outlet" type="4952"/>
<Product config="ge/14294-dimmer.xml" id="3038" name="14294 In-Wall Smart Dimmer" type="4944"/>
<Product config="ge/14294-dimmer.xml" id="3039" name="14299 In-Wall 1000W Smart Dimmer" type="4944"/>
<Product config="ge/14295-dimmer-toggle.xml" id="3130" name="14295 In-Wall Smart Toggle Dimmer" type="4944"/>
<Product config="ge/14298.xml" id="3034" name="14298 Plug-in Outdoor Smart Switch" type="4F50"/>
<Product config="ge/14322-dimmer-toggle.xml" id="3137" name="14322 In-Wall Smart Toggle Dimmer" type="4944"/>
<Product config="ge/26931-motion-switch.xml" id="3032" name="26931 Smart Motion Switch" type="494d"/>
<Product config="ge/26932-motion-dimmer.xml" id="3033" name="26932 Smart Motion Dimmer" type="494d"/>
<Product config="ge/26933-motion-dimmer.xml" id="3034" name="26933 Smart Motion Dimmer" type="494d"/>
<Product config="ge/14291-switch.xml" id="3036" name="14291 In-Wall Smart Switch" type="4952"/>
<Product config="ge/46201-switch.xml" id="3135" name="46201 In-Wall Smart Switch" type="4952"/>
<Product config="ge/46202-switch.xml" id="3137" name="46202 In-Wall Smart Switch" type="4952"/>
<Product config="ge/46203-dimmer.xml" id="3235" name="46203 In-Wall Smart Dimmer" type="4944"/>
<Product config="ge/46204-dimmer-toggle.xml" id="3237" name="In-Wall Smart Toggle Dimmer" type="4944"/>
<Product config="ge/14292-toggle-switch.xml" id="3037" name="14292 In-Wall Smart Toggle Switch" type="4952"/>
<Product config="ge/14292-toggle-switch.xml" id="3038" name="14293 In-Wall Smart Toggle Switch" type="4952"/>
<Product config="ge/45604.xml" id="3030" name="45603 Plugin Appliance Module" type="5250"/>
<Product id="3130" name="45604 Outdoor Module" type="5250"/>
<Product id="3031" name="12720 Outdoor Smart Switch" type="4f50"/>
<Product config="ge/12720.xml" id="3130" name="12720 Outdoor Smart Switch" type="6363"/>
<Product config="ge/14284.xml" id="3032" name="14284 Outdoor Smart Switch" type="4f50"/>
<Product config="ge/14285.xml" id="3032" name="14285 Outdoor Smart Switch" type="4f44"/>
<Product config="ge/receptacle.xml" id="3530" name="45605 Duplex Receptacle" type="5252"/>
<Product config="ge/28167-plugin-dimmer.xml" id="3038" name="28167/ZW3104 Plug-In Smart Dimmer (Single Plug)" type="5044"/>
<Product config="ge/receptacle.xml" id="3133" name="14288 Duplex Receptacle" type="4952"/>
<Product config="ge/relay.xml" id="3533" name="45609 On/Off Relay Switch" type="5257"/>
<Product config="ge/dimmer.xml" id="3033" name="45613 3-Way Dimmer Switch" type="4457"/>
<Product config="ge/receptacle.xml" id="3031" name="12721 Lighting Control Duplex Receptacle" type="4952"/>
<Product config="ge/relay.xml" id="3032" name="12722 On/Off Relay Switch" type="4952"/>
<Product config="ge/12727.xml" id="3033" name="12727 In-Wall Smart Switch (Toggle)" type="4952"/>
<Product config="ge/hinge-pin.xml" id="3032" name="32563 Hinge Pin Smart Door Sensor" type="4953"/>
<Product config="ge/dimmer_module.xml" id="3031" name="12718 Plug-In Two-Outlet Smart Dimmer" type="5044"/>
<Product config="ge/12719-plugin-switch.xml" id="3031" name="12719 Plug-in Smart Switch" type="5052"/>
<Product config="ge/14282-plugin-switch.xml" id="3033" name="14282 Plug-In Two-Outlet Smart Switch" type="5052"/>
<Product config="ge/28169-plugin-switch.xml" id="3038" name="28169 Plug-In One-Outlet Smart Switch" type="5052"/>
<Product config="ge/zw4001-switch.xml" id="3533" name="ZW4001 In-Wall Decora Style On/Off Relay Switch" type="6363"/>
<Product config="ge/ze26i.xml" id="3031" name="ZW7101 Smart LED Light Bulb ZE26I" type="4c42"/>
<Product config="ge/zw6302.xml" id="3133" name="ZW6302 Portable Smart Motion Sensor" type="4953"/>
<Product config="ge/zw6302.xml" id="3134" name="ZW6302 Portable Smart Motion Sensor" type="4953"/>
</Manufacturer>
<Manufacturer id="0408" name="Gerber Technology"></Manufacturer>
<Manufacturer id="025A" name="GES"></Manufacturer>
<Manufacturer id="022B" name="GKB Security Corporation"></Manufacturer>
<Manufacturer id="018A" name="Globalchina-Tech"></Manufacturer>
<Manufacturer id="0076" name="Goggin Research"></Manufacturer>
<Manufacturer id="0068" name="Good Way Technology Co. Ltd">
<Product config="goodway/td14010.xml" id="000b" name="RGBW Color LED Dimmer" type="0003"/>
</Manufacturer>
<Manufacturer id="0099" name="GreenWave Reality Inc">
<Product config="greenwave/gs1110-1-gr-1.xml" id="0002" name="One Gateway" type="0001"/>
<Product config="greenwave/powernode1.xml" id="0002" name="PowerNode 1 port" type="0002"/>
<Product config="greenwave/powernode6.xml" id="0004" name="PowerNode 6 port" type="0003"/>
</Manufacturer>
<Manufacturer id="0401" name="Grenton Sp. z o.o."></Manufacturer>
<Manufacturer id="018B" name="Grib"></Manufacturer>
<Manufacturer id="0391" name="GUANGDONG PHNIX ECO-ENERGY SOLUTION LTD"></Manufacturer>
<Manufacturer id="016D" name="Guangzhou Ruixiang M&E Co. Ltd"></Manufacturer>
<Manufacturer id="0158" name="GuangZhou Zeewave Information Technology Co. Ltd"></Manufacturer>
<Manufacturer id="0395" name="Guangzhou_SIMT Limited"></Manufacturer>
<Manufacturer id="037B" name="Guardtec Inc">
<Product type="0002" id="0001" name="GKW-2000D Door Lock" config="guardtec/gkw2000d.xml"/>
</Manufacturer>
<Manufacturer id="0287" name="HAB Home Intelligence LLC">
<Product type="0003" id="000D" name="iblinds V2" config="hab/iblindsV2.xml"/>
<Product type="0004" id="0071" name="iblinds V3" config="hab/iblindsV3.xml"/>
</Manufacturer>
<Manufacturer id="030D" name="Hampoo"></Manufacturer>
<Manufacturer id="040A" name="Hangzhou Hikvision Digital Technology Co. Ltd"></Manufacturer>
<Manufacturer id="0387" name="HangZhou iMagic Technology Co. Ltd"></Manufacturer>
<Manufacturer id="0208" name="HANK Electronics Ltd">
<Product config="hank/hkzw-so01-smartplug.xml" id="0005" name="HKZW-SO01 Smart Plug" type="0101"/>
<Product config="hank/hkzw-so05-smartplug.xml" id="000a" name="HKZW-SO05 Smart Plug" type="0100"/>
<Product config="hank/hkzw-ms01.xml" id="0006" name="HKZW-MS01 Multisensor" type="0200"/>
<Product config="hank/hkzw-ms02-200.xml" id="0012" name="HKZW-MS02 Motion Sensor" type="0200"/>
<Product config="hank/hkzw-ms02-300.xml" id="0012" name="HKZW-MS02 Motion Sensor" type="0300"/>
<Product config="hank/hkzw-dws01.xml" id="0008" name="HKZW-DWS01 Door/Window Sensor" type="0200"/>
<Product config="hank/hkzw-dws01.xml" id="0008" name="HKZW-DWS01 Door/Window Sensor" type="0201"/>
<Product config="hank/scenecontroller1.xml" id="0009" name="HKZW-SCN01 Scene Controller" type="0200"/>
<Product config="hank/scenecontroller4.xml" id="000b" name="HKZW-SCN04 Scene Controller" type="0200"/>
<Product config="hank/scenecontroller4.xml" id="000b" name="HKZW-SCN04 Scene Controller" type="0201"/>
<Product config="hank/hkzw-rgb01.xml" id="0004" name="HKZW-RGB01 RGB bulb" type="0100"/>
<Product config="hank/hkzw-rgb01.xml" id="0004" name="HKZW-RGB01 RGB bulb" type="0101"/>
<Product config="hank/hkzw-so03.xml" id="000a" name="HKZW-SO03 Smart Plug" type="0101"/>
<Product config="hank/hkzw-fld01.xml" id="000f" name="HKZW-FLD01 Flood Sensor" type="0200"/>
<Product config="hank/hkzw-so08-smartplug.xml" id="0019" name="HKZW-SO08 Smart Plug" type="0100"/>
</Manufacturer>
<Manufacturer id="024C" name="Hankook Gas Kiki CO.LTD"></Manufacturer>
<Manufacturer id="025C" name="Hauppauge"></Manufacturer>
<Manufacturer id="0073" name="Hawking Technologies Inc"></Manufacturer>
<Manufacturer id="040C" name="HEIGHTS TELECOM T LTD"></Manufacturer>
<Manufacturer id="0260" name="Heiman Technology Co. Ltd">
<Product config="heiman/HS1DS-Z.xml" id="0168" name="Door Sensor HS1DS-Z" type="0168"/>
<Product config="heiman/HS1MS-Z.xml" id="1000" name="Motion Sensor HS1MS-Z" type="8001"/>
<Product config="heiman/HS1SA-Z.xml" id="1000" name="Smart Smoke Sensor HS1SA-Z" type="8002"/>
<Product config="heiman/HS1CG-Z.xml" id="1000" name="Combustible Gas Sensor HS1CG-Z" type="8003"/>
<Product config="heiman/HS1WL-Z.xml" id="1000" name="Water Leakage Sensor HS1WL-Z" type="8004"/>
<Product config="heiman/HS1CA-Z.xml" id="1000" name="CO Sensor HS1CA-Z" type="8005"/>
<Product config="heiman/HS2SK-Z.xml" id="1000" name="Smart Metering Plug HS2SK-Z" type="8006"/>
<Product config="heiman/HS1HT-Z.xml" id="1000" name="Temperature Humidity Sensor HS1HT-Z" type="8007"/>
<Product config="heiman/HS2SK-Z.xml" id="1000" name="Smart Plug HS2SK-Z" type="8008"/>
</Manufacturer>
<Manufacturer id="0344" name="HELTUN">
<Product config="heltun/he-zw-therm-fl2.xml" id="0001" name="HE-ZW-THERM-FL2 Heating Thermostat" type="0003"/>
<Product config="heltun/he-zw-sw-5a-1.xml" id="0003" name="HE-ZW-SW-5A-1 Touch Panel Switch" type="0003"/>
<Product config="heltun/he-zw-therm-fc1.xml" id="0002" name="HE-ZW-THERM-FC1 Fan Coil Thermostat" type="0003"/>
<Product config="heltun/he-ht01.xml" id="0001" name="Heating Thermostat HE-HT01" type="0004"/>
<Product config="heltun/he-ft01.xml" id="0002" name="Fan Coil Thermostat HE-FT01" type="0004"/>
</Manufacturer>
<Manufacturer id="020F" name="Herald Datanetics Limited"></Manufacturer>
<Manufacturer id="0017" name="HiTech Automation"></Manufacturer>
<Manufacturer id="024C" name="Hankook Gas Kiki CO.LTD"></Manufacturer>
<Manufacturer id="025C" name="Hauppauge"></Manufacturer>
<Manufacturer id="0073" name="Hawking Technologies Inc"></Manufacturer>
<Manufacturer id="040C" name="HEIGHTS TELECOM T LTD"></Manufacturer>
<Manufacturer id="0344" name="HELTUN"></Manufacturer>
<Manufacturer id="020F" name="Herald Datanetics Limited"></Manufacturer>
<Manufacturer id="0017" name="HiTech Automation"></Manufacturer>
<Manufacturer id="0181" name="Holion Electronic Engineering Co. Ltd"></Manufacturer>
<Manufacturer id="013E" name="Holtec Electronics BV"></Manufacturer>
<Manufacturer id="000D" name="Home Automated Living"></Manufacturer>
<Manufacturer id="009a" name="Home Automation Europe"></Manufacturer>
<Manufacturer id="005b" name="Home Automation Inc."></Manufacturer>
<Manufacturer id="0293" name="Home controls"></Manufacturer>
<Manufacturer id="0038" name="Home Director"></Manufacturer>
<Manufacturer id="0070" name="Homemanageables Inc"></Manufacturer>
<Manufacturer id="0050" name="Homepro"></Manufacturer>
<Manufacturer id="0162" name="HomeScenario"></Manufacturer>
<Manufacturer id="001e" name="Homeseer (Express Controls)">
<Product config="homeseer/ztroller.xml" id="0002" name="ZTroller" type="0001"/>
<Product config="homeseer/hsm100.xml" id="0001" name="HSM100 Wireless Multi-Sensor" type="0002"/>
<Product config="homeseer/ezmotionplus.xml" id="0002" name="EZMotion+ 3-in-1 Sensor" type="0002"/>
<Product config="homeseer/hsm200.xml" id="0001" name="HSM200 Wireless Multi-Sensor" type="0004"/>
</Manufacturer>
<Manufacturer id="000c" name="HomeSeer Technologies">
<Product config="homeseer/hsm200.xml" id="0001" name="HSM200 Wireless Multi-Sensor" type="0004"/>
<Product config="homeseer/hs-ws100plus.xml" id="3033" name="HS-WS100+ Wall Switch" type="4447"/>
<Product config="homeseer/hs-wd100plus.xml" id="3034" name="HS-WD100+ Wall Dimmer" type="4447"/>
<Product config="homeseer/hs-ws200plus.xml" id="3035" name="HS-WS200+ Wall Switch" type="4447"/>
<Product config="homeseer/hs-wd200plus.xml" id="3036" name="HS-WD200+ Wall Dimmer" type="4447"/>
<Product config="homeseer/hs-ds100plus.xml" id="0008" name="HS-DS100+ Door/Window Sensor" type="0201"/>
<Product config="homeseer/hs-ms100plus.xml" id="0009" name="HS-MS100+ Motion Sensor" type="0201"/>
<Product config="homeseer/hs-ls100plus.xml" id="000a" name="HS-LS100+ Leak Sensor" type="0201"/>
<Product config="homeseer/hs-fls100plus.xml" id="000b" name="HS-FLS100+ Floodlight Sensor" type="0201"/>
<Product config="homeseer/hs-fc200plus.xml" id="0001" name="HS-FC200+ Z-Wave Plus Fan Controller" type="0203"/>
<Product config="homeseer/hs-fs100plus.xml" id="0001" name="HS-FS100+ Flex Sensor" type="0202"/>
</Manufacturer>
<Manufacturer id="0275" name="Honest Technology"></Manufacturer>
<Manufacturer id="023D" name="Honest Technology Co. Ltd"></Manufacturer>
<Manufacturer id="0039" name="Honeywell">
<Product config="honeywell/th8320zw1000.xml" id="0001" name="TH8320ZW1000 Touchscreen Thermostat" type="0011"/>
<Product config="honeywell/th6320zw2003.xml" id="0008" name="TH6320ZW2003 T6 Pro Series Thermostat" type="0011"/>
<Product config="honeywell/lynx-touch-l5100.xml" id="0003" name="Lynx Touch L5100 / L7000" type="0001"/>
<Product config="honeywell/39351-ZW3005.xml" id="3038" name="39351 / ZW3005 In-Wall Smart Dimmer" type="4944"/>
<Product config="honeywell/39348-ZW4005.xml" id="3036" name="39348 / ZW4005 In-Wall Smart Switch" type="4952"/>
<Product config="honeywell/39348-zw4008.xml" id="3135" name="39348 / ZW4008 In-Wall Smart Switch" type="4952"/>
<Product config="honeywell/39349-ZW1002.xml" id="3133" name="39349 / ZW1002 In-Wall Tamper Resistant Outlet" type="4952"/>
<Product config="honeywell/39357-ZW3004.xml" id="3130" name="39357 / ZW3004 In-Wall Smart Toggle Dimmer" type="4944"/>
<Product config="honeywell/39351-ZW3010.xml" id="3235" name="39351 / ZW3010 In-Wall Smart Dimmer" type="4944"/>
<Product config="honeywell/39358-ZW4002.xml" id="3131" name="39358 / ZW4002 In-Wall Fan Control" type="4944"/>
<Product config="honeywell/39449-ZW4106.xml" id="3033" name="39449 / ZW4106 Plug-in Smart Switch" type="5052"/>
<Product config="honeywell/2681-plugin-dimmer.xml" id="3038" name="39336 / ZW3104 Plug-in Dimmer" type="5044"/>
<Product config="honeywell/3830-zw3107.xml" id="3033" name="39446 / ZW3107 Plug-in Dimmer" type="5044"/>
</Manufacturer>
<Manufacturer id="0313" name="Hoppe"></Manufacturer>
<Manufacturer id="0377" name="HORNBACH Baumarkt AG"></Manufacturer>
<Manufacturer id="0059" name="Horstmann (Secure Meters)">