-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathdevice_db.yaml
More file actions
5355 lines (5353 loc) · 157 KB
/
device_db.yaml
File metadata and controls
5355 lines (5353 loc) · 157 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
# yaml-language-server: $schema=./device_db.schema.json
# ========== Device database ==========
#
# Please refer to device_db_explained.md
#
# And use the schema for validation!
# (e.g. in VSCode with YAML extension)
#
# Rules:
# - Follow the format
# - Fill empty values with null
# - Keep KEYs in (mostly) alphabetical order
# - Keep attributes in the same order
BOARD__MHCOZY_TS0004:
human_name: MHCOZY TYWB 4ch-RF <br> ZG-005(-RF) 🅰
category: board
power: mains
neutral: required
output: relay
device_type: router
stock_model_name: TS0004
stock_manufacturer_name: _TZ3000_imaccztn
stock_converter_manufacturer: Tuya
stock_converter_model: TS0004
override_z2m_device: TYWB 4ch-RF
tuya_module: ZT3L
mcu_family: Telink
mcu: TLSR8258
config_str: imaccztn;TS0004-MC;LC3i;SD7u;RD4;SC0u;RA0;SB5u;RD2;SB7u;RC2;M;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 43551
build: yes
status: fully_supported
info: Supported
threads: https://github.com/romasku/tuya-zigbee-switch/issues/130
store: https://www.aliexpress.com/item/1005005457296054.html
BOARD__MHCOZY_TS0004_1:
human_name: MHCOZY TYWB 4ch-RF <br> ZG-005(-RF) 🅱
category: board
power: mains
neutral: required
output: relay
device_type: end_device # specifically requested
stock_model_name: TS0004
stock_manufacturer_name: _TZ3210_imaccztn
stock_converter_manufacturer: Tuya
stock_converter_model: TS0004
override_z2m_device: TYWB 4ch-RF
tuya_module: ZT3L
mcu_family: Telink
mcu: TLSR8258
config_str: imaccztn1;TS0004-MC1;LC3i;SD7u;RD4;SC0u;RA0;SB5u;RD2;SB7u;RC2;M;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: 4417
stock_image_type: 2050
firmware_image_type: 45631
build: yes
status: mostly_supported
info: Needs pinout confirmation
threads: https://github.com/romasku/tuya-zigbee-switch/issues/245
store: https://github.com/romasku/tuya-zigbee-switch/issues/245
BOARD__MHCOZY_TS0004_2:
human_name: MHCOZY TYWB 4ch-RF <br> ZG-005(-RF) 🅲
category: board
power: mains
neutral: required
output: relay
device_type: end_device # specifically requested
stock_model_name: TS0004
stock_manufacturer_name: _TZ3000_u3oupgdy
stock_converter_manufacturer: Tuya
stock_converter_model: TS0004
override_z2m_device: TYWB 4ch-RF
tuya_module: ZT3L
mcu_family: Telink
mcu: TLSR8258
config_str: u3oupgdy;TS0004-MC2;LC3i;SD7u;RD4;SC0u;RA0;SB5u;RD2;SB7u;RC2;M;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 45594
build: yes
status: fully_supported
info: Supported
threads: https://github.com/romasku/tuya-zigbee-switch/issues/245
store: null
BOARD__SCIMAGIC_TS0001:
human_name: Scimagic ZG-001 1ch-RF
category: board
power: mains
neutral: required
output: relay
device_type: router
stock_model_name: TS0001
stock_manufacturer_name: _TZ3000_g8n1n7lg
stock_converter_manufacturer: Tuya
stock_converter_model: TS0001
override_z2m_device: ZG-001
tuya_module: ZT3L
mcu_family: Telink
mcu: TLSR8258
config_str: g8n1n7lg;Tuya-ZG-001;LC3i;SD7u;RD4;M;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 43623
build: yes
status: fully_supported
info: Supported
threads: https://github.com/romasku/tuya-zigbee-switch/issues/330
store: https://aliexpress.com/item/1005004657817159.html
BOARD__SCIMAGIC_TS0002 :
human_name: Scimagic ZG-2002-RF 🅰
category: board
power: mains
neutral: required
output: relay
device_type: router
stock_model_name: TS0002
stock_manufacturer_name: _TZ3000_nuenzetq
stock_converter_manufacturer: Tuya
stock_converter_model: TS0002
override_z2m_device: ZG-2002-RF
tuya_module: ZT3L
mcu_family: Telink
mcu: TLSR825x
config_str: nuenzetq;TS0002-SC;LC3i;SD7u;RD4;SC0u;RA0;M;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 45598
build: yes
status: mostly_supported
info: No RF, inching, power-on behavior??
threads: https://github.com/romasku/tuya-zigbee-switch/pull/282
store: https://www.aliexpress.com/item/1005009646584697.html
BOARD__SCIMAGIC_TS0002_1 :
human_name: Scimagic ZG-2002-RF 🅱
category: board
power: mains
neutral: required
output: relay
device_type: router
stock_model_name: TS0002
stock_manufacturer_name: _TZ3210_nuenzetq
stock_converter_manufacturer: Tuya
stock_converter_model: TS0002
override_z2m_device: ZG-2002-RF
tuya_module: ZT3L
mcu_family: Telink
mcu: TLSR825x
config_str: nuenzetq1;TS0002-SC;LC3i;SD7u;RD4;SC0u;RA0;M;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: 4417
stock_image_type: 513
firmware_image_type: 45599
build: yes
status: mostly_supported
info: No RF, inching, power-on behavior??
threads: https://github.com/romasku/tuya-zigbee-switch/pull/376
store: https://www.aliexpress.com/item/1005006190483000.html
BOARD__ZIGBEE_ZTU_2:
human_name: ZTU dev board 2
category: board
power: USB
neutral: without
output: nothing
device_type: router
stock_model_name: null
stock_manufacturer_name: null
stock_converter_manufacturer: null
stock_converter_model: null
override_z2m_device: Zigbee_SoC_Board_V2_(ZTU)
tuya_module: ZTU
mcu_family: Telink
mcu: TLSR8258
config_str: TUYA;DEV-ZTU2;LD7;SA0u;RC1;IB6;M;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: null
stock_image_type: null
firmware_image_type: 45574
build: yes
status: fully_supported
info: Supported
threads: null
store: https://www.aliexpress.com/item/1005007599675462.html
MODULE_AUBESS_TS0001:
human_name: Aubess WHD02
category: module
power: mains
neutral: required
output: relay
device_type: end_device # specifically requested
stock_model_name: TS0001
stock_manufacturer_name: _TZ3000_46t1rvdu
stock_converter_manufacturer: Tuya
stock_converter_model: WHD02
override_z2m_device: null
tuya_module: ZT2S_real
mcu_family: Telink
mcu: TLSR8258
config_str: 46t1rvdu;WHD02-Aubess;BC4u;LD2;SB4u;RB5;
alt_config_str: null
old_manufacturer_names:
- WHD02-Aubess
old_zb_models:
- WHD02-Aubess-ED
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 43531
build: yes
status: fully_supported
info: Supported
threads: https://github.com/romasku/tuya-zigbee-switch/issues/18
store: null
MODULE_AUBESS_TS0002:
human_name: Aubess TMZ02
category: module
power: mains
neutral: required
output: relay
device_type: router
stock_model_name: TS0002
stock_manufacturer_name: _TZ3000_lmlsduws
stock_converter_manufacturer: Tuya
stock_converter_model: TS0002_basic
override_z2m_device: TMZ02
tuya_module: ZT2S_real
mcu_family: Telink
mcu: TLSR8258
config_str: lmlsduws;TS0002-AUB;BC4u;LB1;SC2u;RB7;SC3u;RB4;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 43553
build: yes
status: fully_supported
info: Supported
threads: https://github.com/romasku/tuya-zigbee-switch/pull/153
store: https://www.aliexpress.com/item/1005005748264739.html
MODULE_AUBESS_TS0003:
human_name: Aubess 3-gang
category: module
power: mains
neutral: required
output: relay
device_type: router
stock_model_name: TS0003
stock_manufacturer_name: _TZ3000_lvhy15ix
stock_converter_manufacturer: Tuya
stock_converter_model: TS0003_switch_module_2
override_z2m_device: null
tuya_module: ZT2S_real
mcu_family: Telink
mcu: TLSR8258
config_str: lvhy15ix;TS0003-AUB;BC4u;LB1;SC2u;RB7;SC3u;RB4;SD2u;RB5;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 43561
build: yes
status: fully_supported
info: Supported
threads: https://github.com/romasku/tuya-zigbee-switch/pull/151
store:
- https://www.amazon.co.uk/dp/B0DKC2CRFJ
- https://www.aliexpress.com/item/1005005748264739.html
MODULE_AUBESS_TS0004:
human_name: Aubess 4-gang
category: module
power: mains
neutral: required
output: relay
device_type: router
stock_model_name: TS0004
stock_manufacturer_name: _TZ3000_mmkbptmx
stock_converter_manufacturer: Tuya
stock_converter_model: TS0004_switch_module
override_z2m_device: null
tuya_module: ZTU
mcu_family: Telink
mcu: TLSR8258
config_str: mmkbptmx;TS0004-custom;BB6u;LB1;SC1u;RB7;SC2u;RB5;SC3u;RB4;SD2u;RC4;
alt_config_str: null
old_manufacturer_names:
- Tuya-TS0004-custom
old_zb_models: null
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 43545
build: yes
status: fully_supported
info: Supported
threads: https://github.com/romasku/tuya-zigbee-switch/issues/66
store: https://www.aliexpress.com/item/1005005748264739.html
MODULE_AVATTO_A_TS0001:
human_name: AVATTO ZWSM16-1 🅰🅱
category: module
power: mains
neutral: required
output: relay
device_type: router
stock_model_name: TS0001
stock_manufacturer_name: _TZ3000_4rbqgcuv
stock_converter_manufacturer: Tuya
stock_converter_model: TS0001_switch_module
override_z2m_device: ZWSM16-1-Zigbee
tuya_module: ZTU
mcu_family: Telink
mcu: TLSR8258
config_str: 4rbqgcuv;TS0001-AVB;BC2u;LD2i;SD3u;RC0;
alt_config_str: null
old_manufacturer_names:
- Tuya-TS0001-Avatto-custom
- TS0001-AV-CUS
- TS0001-AVB
old_zb_models:
- TS0001-Avatto-custom
- TS0001-AV-CUS
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 43527
build: yes
status: fully_supported
info: Supported
threads:
- https://github.com/romasku/tuya-zigbee-switch/issues/9
- https://github.com/romasku/tuya-zigbee-switch/issues/350
store:
- https://www.aliexpress.com/item/1005007247647375.html
- https://www.aliexpress.com/item/1005006041739970.html
MODULE_AVATTO_A_TS0002:
human_name: AVATTO ZWSM16-2 🅰🅱
category: module
power: mains
neutral: required
output: relay
device_type: router
stock_model_name: TS0002
stock_manufacturer_name: _TZ3000_mtnpt6ws
stock_converter_manufacturer: Tuya
stock_converter_model: TS0002_limited
override_z2m_device: ZWSM16-2-Zigbee
tuya_module: ZTU
mcu_family: Telink
mcu: TLSR8258
config_str: mtnpt6ws;TS0002-AVB;BC2u;LD2i;SD3u;RC0;SD7u;RD4;
alt_config_str: null
old_manufacturer_names:
- Tuya-TS0002-Avatto-custom
- TS0002-AV-CUS
- TS0002-AVB
old_zb_models:
- TS0002-Avatto-custom
- TS0002-AV-CUS
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 43528
build: yes
status: fully_supported
info: Supported
threads:
- https://github.com/romasku/tuya-zigbee-switch/issues/9
- https://github.com/romasku/tuya-zigbee-switch/issues/350
store:
- https://www.aliexpress.com/item/1005007247647375.html
- https://www.aliexpress.com/item/1005006041739970.html
MODULE_AVATTO_A_TS0003:
human_name: AVATTO ZWSM16-3 🅰
category: module
power: mains
neutral: required
output: relay
device_type: router
stock_model_name: TS0003
stock_manufacturer_name: _TZ3000_hbic3ka3
stock_converter_manufacturer: Tuya
stock_converter_model: TS0003_switch_module_2
override_z2m_device: ZWSM16-3-Zigbee
tuya_module: ZTU
mcu_family: Telink
mcu: TLSR8258
config_str: hbic3ka3;TS0003-AVB;BC2u;LD2i;SD3u;RC0;SD7u;RD4;SB6u;RC1;
alt_config_str: null
old_manufacturer_names:
- Tuya-TS0003-Avatto-custom
- TS0003-AV-CUS
- TS0003-AVB
old_zb_models:
- TS0003-Avatto-custom
- TS0003-AV-CUS
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 43543
build: yes
status: fully_supported
info: Supported
threads: https://github.com/romasku/tuya-zigbee-switch/issues/56
store: https://www.aliexpress.com/item/1005007247647375.html
MODULE_AVATTO_A_TS0004:
human_name: AVATTO ZWSM16-4 🅰
category: module
power: mains
neutral: required
output: relay
device_type: router
stock_model_name: TS0004
stock_manufacturer_name: _TZ3000_5ajpkyq6
stock_converter_manufacturer: Tuya
stock_converter_model: TS0004_switch_module_2
override_z2m_device: ZWSM16-4-Zigbee
tuya_module: ZTU
mcu_family: Telink
mcu: TLSR8258
config_str: 5ajpkyq6;TS0004-AVB;BC2u;LD2i;SD3u;RC0;SD7u;RD4;SB6u;RC1;SA0u;RC4;
alt_config_str:
- 5ajpkyq6;TS0004-AVB;BC2u;LD2i;SD7u;RB6;SC0u;RD4;SA0u;RC1;SA1u;RC4;
old_manufacturer_names:
- Tuya-TS0004-Avatto-custom
- TS0004-AV-CUS
- TS0004-AVB
old_zb_models:
- TS0004-Avatto-custom
- TS0004-AV-CUS
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 43529
build: yes
status: fully_supported
info: Supported
threads: https://github.com/romasku/tuya-zigbee-switch/issues/9
store: https://www.aliexpress.com/item/1005007247647375.html
MODULE_AVATTO_B_TS0003:
human_name: AVATTO ZWSM16-3 🅱
category: module
power: mains
neutral: required
output: relay
device_type: router
stock_model_name: TS0003
stock_manufacturer_name: _TZ3000_iv4eq7eh
stock_converter_manufacturer: Tuya
stock_converter_model: TS0003_switch_module_2
override_z2m_device: ZWSM16-3-Zigbee
tuya_module: ZTU
mcu_family: Telink
mcu: TLSR8258
config_str: iv4eq7eh;TS0003-AVB2;BC2u;LD2i;SD3u;RC0;SD7u;RD4;SB6u;RC1;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 43603
build: yes
status: fully_supported
info: Supported
threads:
- https://github.com/romasku/tuya-zigbee-switch/issues/275
- https://github.com/romasku/tuya-zigbee-switch/issues/316
store: https://www.aliexpress.com/item/1005006041739970.html
MODULE_AVATTO_B_TS0004:
human_name: AVATTO ZWSM16-4 🅱
category: module
power: mains
neutral: required
output: relay
device_type: router
stock_model_name: TS0004
stock_manufacturer_name: _TZ3000_3n2minvf
stock_converter_manufacturer: Tuya
stock_converter_model: TS0004_switch_module_2
override_z2m_device: ZWSM16-4-Zigbee
tuya_module: ZTU
mcu_family: Telink
mcu: TLSR8258
config_str: 3n2minvf;TS0004-AVB2;BC2u;LD2i;SD3u;RC0;SD7u;RD4;SB6u;RC1;SB4u;RC4;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 43602
build: yes
status: fully_supported
info: Supported
threads: https://github.com/romasku/tuya-zigbee-switch/issues/275
store: https://www.aliexpress.com/item/1005006041739970.html
MODULE_AVATTO_DRY_TS0001:
human_name: AVATTO 1-gang dry-contact
category: module
power: DC
neutral: without
output: relay
device_type: router
stock_model_name: TS0001
stock_manufacturer_name: _TZ3000_gzggw2ia
stock_converter_manufacturer: Tuya
stock_converter_model: TS0001
override_z2m_device: null
tuya_module: ZTU
mcu_family: Telink
mcu: TLSR8258
config_str: gzggw2ia;TS0001-AV-DRY;BC2u;LD2i;SD3u;RC0;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 43527
build: yes
status: mostly_supported
info: Reversed state?
threads: https://github.com/romasku/tuya-zigbee-switch/issues/138
store: https://www.aliexpress.com/item/1005007342942592.html
MODULE_AVATTO_TS0011:
human_name: AVATTO LZWSM16-1
category: module
power: mains
neutral: without
output: triac
device_type: end_device
stock_model_name: TS0011
stock_manufacturer_name: _TZ3000_hbxsdd6k
stock_converter_manufacturer: AVATTO
stock_converter_model: LZWSM16-1
override_z2m_device: null
tuya_module: ZTU
mcu_family: Telink
mcu: TLSR8258
config_str: hbxsdd6k;TS0011-avatto;BB4u;LB5;SC0u;RC2;
alt_config_str: null
old_manufacturer_names:
- TS0011-Avatto
old_zb_models:
- TS0011-avatto-ED
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 43537
build: yes
status: fully_supported
info: Supported
threads: https://github.com/romasku/tuya-zigbee-switch/issues/9
store: https://www.aliexpress.com/item/1005007247647375.html
MODULE_AVATTO_TS0012:
human_name: AVATTO LZWSM16-2
category: module
power: mains
neutral: without
output: triac
device_type: end_device
stock_model_name: TS0012
stock_manufacturer_name: _TZ3000_ljhbw1c9
stock_converter_manufacturer: Tuya
stock_converter_model: TS0012_switch_module
override_z2m_device: LZWSM16-2
tuya_module: ZTU
mcu_family: Telink
mcu: TLSR8258
config_str: ljhbw1c9;TS0012-avatto;BB4u;LB5;SC0u;RC2;SC3u;RC4;
alt_config_str: null
old_manufacturer_names:
- TS0012-Avatto
old_zb_models:
- TS0012-avatto-ED
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 43530
build: yes
status: fully_supported
info: Supported
threads: https://github.com/romasku/tuya-zigbee-switch/issues/16
store: https://www.aliexpress.com/item/1005007247647375.html
MODULE_AVATTO_TS0012_1:
human_name: AVATTO LZWSM16-2
category: module
power: mains
neutral: without
output: triac
device_type: end_device
stock_model_name: TS0012
stock_manufacturer_name: _TZ3000_kpatq5pq
stock_converter_manufacturer: Tuya
stock_converter_model: TS0012_switch_module
override_z2m_device: LZWSM16-2
tuya_module: ZTU
mcu_family: Telink
mcu: TLSR8258
config_str: kpatq5pq;TS0012-AVB1;BB4u;LB5;SC0u;RC2;SC3u;RC4;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 43613
build: yes
status: fully_supported
info: Supported
threads: https://github.com/romasku/tuya-zigbee-switch/issues/299
store: https://smartdeal.bg/product/avatto-lzwsm16-zigbee-light-switch-module-no-neutral-1-3-gang/?attribute_pa_sonoff-version=avatto-lzwsm16-2-gang
MODULE_AVATTO_TS0013:
human_name: AVATTO LZWSM16-3
category: module
power: mains
neutral: without
output: triac
device_type: end_device
stock_model_name: TS0013
stock_manufacturer_name: _TZ3000_avotanj3
stock_converter_manufacturer: Tuya
stock_converter_model: TS0013
override_z2m_device: LZWSM16-3
tuya_module: ZTU
mcu_family: Telink
mcu: TLSR8258
config_str: avotanj3;TS0013-AVB;BB4u;LB5;SA1u;RC2;SC3u;RC4;SC0u;RD2;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 43552
build: yes
status: fully_supported
info: Supported
threads: https://github.com/romasku/tuya-zigbee-switch/issues/135
store: https://www.aliexpress.com/item/1005007247647375.html
MODULE_EKAZA_TS0002:
human_name: EKAZA EKAC-T3092Z
category: module
power: mains
neutral: required
output: relay
device_type: router
stock_model_name: TS0002
stock_manufacturer_name: _TZ3000_hznzbl0x
stock_converter_manufacturer: Tuya
stock_converter_model: TS0002_basic
override_z2m_device: EKAC-T3092Z
tuya_module: ZT3L
mcu_family: Telink
mcu: TLSR8258
config_str: hznzbl0x;EKAC-T3092Z-CUSTOM;BD2u;LC0;SB4u;RC2;SB5u;RC3;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 43547
build: yes
status: fully_supported
info: Supported
threads: https://github.com/romasku/tuya-zigbee-switch/issues/303
store: https://www.amazon.com.br/EKAZA-Interruptor-Modulo-Embutido-ZigBee/dp/B0C6VMVPPK
MODULE_EKF_TS0011:
human_name: EKF ssh-1g-zb-nn
category: module
power: mains
neutral: without
output: triac
device_type: end_device
stock_model_name: TS0011
stock_manufacturer_name: null
stock_converter_manufacturer: null
stock_converter_model: null
override_z2m_device: null
tuya_module: ZT3L
mcu_family: Telink
mcu: TLSR8258
config_str: null____;TS0011-EKF;BA0u;LD7;SC2u;RC0;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 43593
build: no
status: in_progress
info: Needs ID (maybe tw4ztbp4) and pinout confirmation
threads: https://github.com/romasku/tuya-zigbee-switch/issues/205
store: https://ekfgroup.com/ru/catalog/products/umnoe-rele-v-podrozetnik-1-kanalnoe-bez-nejtrali-zigbee-ekf-connect-select
MODULE_EKF_TS0012:
human_name: EKF ssh-2g-zb-nn
category: module
power: mains
neutral: without
output: triac
device_type: end_device
stock_model_name: TS0012
stock_manufacturer_name: _TZ3000_num4zd6s
stock_converter_manufacturer: Tuya
stock_converter_model: TS0012
override_z2m_device: null
tuya_module: ZT3L
mcu_family: Telink
mcu: TLSR8258
config_str: num4zd6s;TS0012-EKF;BA0u;LD7;SC2u;RC0;SC3u;RB4;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 45592
build: yes
status: fully_supported
info: Supported
threads: https://github.com/romasku/tuya-zigbee-switch/issues/205
store: https://ekfgroup.com/ru/catalog/products/umnoe-rele-v-podrozetnik-2-kanalnoe-bez-nejtrali-zigbee-ekf-connect-select
MODULE_EKF_TS0013:
human_name: EKF ssh-3g-zb-nn
category: module
power: mains
neutral: without
output: triac
device_type: end_device
stock_model_name: TS0013
stock_manufacturer_name: null
stock_converter_manufacturer: null
stock_converter_model: null
override_z2m_device: null
tuya_module: ZT3L
mcu_family: Telink
mcu: TLSR8258
config_str: null____;TS0013-EKF;BA0u;LD7;SC2u;RC0;SC3u;RB4;SD2u;RB5;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 43594
build: no
status: in_progress
info: Needs ID and pinout confirmation
threads: https://github.com/romasku/tuya-zigbee-switch/issues/205
store: https://ekfgroup.com/ru/catalog/products/umnoe-rele-v-podrozetnik-3-kanalnoe-bez-nejtrali-zigbee-ekf-connect-select
MODULE_EMOS_TS0001:
human_name: GoSmart IP-2101SZ <br> EMOS H5101
category: module
power: mains
neutral: required
output: relay
device_type: router
stock_model_name: TS0001
stock_manufacturer_name: _TZ3000_hyziup76
stock_converter_manufacturer: Tuya
stock_converter_model: TS0001
override_z2m_device: null
tuya_module: ZT3L
mcu_family: Telink
mcu: TLSR8258
config_str: hyziup76;TS0001-GS;BA0u;LC0;SB4u;RC2;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 45587
build: yes
status: fully_supported
info: Supported
threads: https://github.com/romasku/tuya-zigbee-switch/issues/199
store:
- https://www.emosgosmart.eu/en/products/gosmart-switch-module-ip-2101sz-zigbee-1-channel/
- https://www.amazon.de/dp/B0DDCJ53Y4
MODULE_EMOS_TS0002:
human_name: GoSmart IP-2102SZ <br> EMOS H5102
category: module
power: mains
neutral: required
output: relay
device_type: router
stock_model_name: TS0002
stock_manufacturer_name: _TZ3000_wxtmgjbd
stock_converter_manufacturer: Tuya
stock_converter_model: TS0002
override_z2m_device: null
tuya_module: ZT3L
mcu_family: Telink
mcu: TLSR8258
config_str: wxtmgjbd;TS0002-GS;BA0u;LC0;SB4u;RC2;SB5u;RC3;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 45588
build: yes
status: fully_supported
info: Supported
threads: https://github.com/romasku/tuya-zigbee-switch/issues/199
store:
- https://www.emosgosmart.eu/en/products/gosmart-switch-module-ip-2102sz-zigbee-2-channel/
- https://www.amazon.de/dp/B0DDCKHXDL
MODULE_FARYLINK_TS0001:
human_name: Farylink FS-02Z
category: module
power: mains
neutral: required
output: relay
device_type: router
stock_model_name: TS0001
stock_manufacturer_name: _TZ3000_fdxihpp7
stock_converter_manufacturer: Tuya
stock_converter_model: WHD02
override_z2m_device: null
tuya_module: ZT2S_real_no_shield
mcu_family: Telink
mcu: TLSR8258
config_str: fdxihpp7;WHD02-FS02Z;BD2u;LB4i;SB5u;RC3;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: 4107
stock_image_type: 517
firmware_image_type: 43591
build: no
status: in_progress
info: Stops responding after OTA update?
threads: https://github.com/romasku/tuya-zigbee-switch/pull/243
store: https://www.aliexpress.com/item/1005006908878393.html
MODULE_FARYLINK_TS0002:
human_name: Farylink FS-02HZ <br> (Nous L13Z clone)
category: module
power: mains
neutral: required
output: relay
device_type: router
stock_model_name: TS0002
stock_manufacturer_name: _TZ3000_ruxexjfz
stock_converter_manufacturer: Tuya
stock_converter_model: TS0002_basic
override_z2m_device: L13Z
tuya_module: ZT2S_real_no_shield
mcu_family: Telink
mcu: TLSR8258
config_str: ruxexjfz;TS0002-NS;BB5u;LB4;SB7u;RC2;SB1u;RC3;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: 4107
stock_image_type: 517
firmware_image_type: 45582
build: yes
status: fully_supported
info: Supported
threads: https://github.com/romasku/tuya-zigbee-switch/issues/216
store: https://www.aliexpress.com/item/1005008003253420.html
MODULE_FARYLINK_L_TS0001:
human_name: Farylink FS-02Z-L
category: module
power: mains
neutral: without
output: triac
device_type: end_device
stock_model_name: TS0001 # it's router on stock
stock_manufacturer_name: _TZ3000_qlhs2kqr
stock_converter_manufacturer: Tuya
stock_converter_model: TS0001
override_z2m_device: null
tuya_module: ZT2S_real
mcu_family: Telink
mcu: TLSR8258
config_str: qlhs2kqr;TS0001-FL;BB7u;LB1;SC4u;RC2;
alt_config_str: null
old_manufacturer_names: null
old_zb_models:
- TS0002-FL
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 43617
build: yes
status: fully_supported
info: Supported
threads: https://github.com/romasku/tuya-zigbee-switch/issues/326
store: null
MODULE_FARYLINK_L_TS0002:
human_name: Farylink 2-gang L
category: module
power: mains
neutral: without
output: triac
device_type: end_device
stock_model_name: TS0002
stock_manufacturer_name: null
stock_converter_manufacturer: Tuya
stock_converter_model: TS0002
override_z2m_device: null
tuya_module: ZT2S_real
mcu_family: Telink
mcu: TLSR8258
config_str: null____;TS0002-FLL;BB7u;LB1;SC4u;RC2;SD2u;RB4;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 43618
build: no
status: in_progress
info: Needs ID and pinout
threads: https://github.com/romasku/tuya-zigbee-switch/issues/326
store: null
MODULE_FARYLINK_L_TS0003:
human_name: Farylink 3-gang L
category: module
power: mains
neutral: without
output: triac
device_type: end_device
stock_model_name: TS0003
stock_manufacturer_name: null
stock_converter_manufacturer: Tuya
stock_converter_model: TS0003
override_z2m_device: null
tuya_module: ZT2S_real
mcu_family: Telink
mcu: TLSR8258
config_str: null____;TS0003-FL;BB7u;LB1;SC4u;RC2;SD2u;RB4;SC3u;RB5;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 43619
build: no
status: in_progress
info: Needs ID and pinout
threads: https://github.com/romasku/tuya-zigbee-switch/issues/326
store: null
MODULE_GIRIER_A_TS0001:
human_name: Girier 🅰 1-gang
category: module
power: mains
neutral: required
output: relay
device_type: router
stock_model_name: TS0001
stock_manufacturer_name: null
stock_converter_manufacturer: null
stock_converter_model: null
override_z2m_device: null
tuya_module: ZT3L
mcu_family: Telink
mcu: TLSR8258
config_str: null____;TS0001-GRAA;BB1u;LD7;SC2u;RC0;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 43620
build: no
status: in_progress
info: Needs ID and pinout confirmation
threads: https://github.com/romasku/tuya-zigbee-switch/issues/183
store: https://www.aliexpress.com/item/1005006084705740.html
MODULE_GIRIER_A_TS0002:
human_name: Girier 🅰 2-gang
category: module
power: mains
neutral: required
output: relay
device_type: router
stock_model_name: TS0002
stock_manufacturer_name: null
stock_converter_manufacturer: null
stock_converter_model: null
override_z2m_device: null
tuya_module: ZT3L
mcu_family: Telink
mcu: TLSR8258
config_str: null____;TS0002-GRA;BB1u;LD7;SC2u;RC0;SC3u;RB4;
alt_config_str: null
old_manufacturer_names: null
old_zb_models: null
stock_manufacturer_id: 4417
stock_image_type: 54179
firmware_image_type: 43596