Skip to content

Commit 3fe484c

Browse files
diegocjorgeKoenkk
andauthored
fix: Fix _TZ3210_mja6r5ix not controllable (#7567)
* Fix for Tuya _TZ3210_mja6r5ix The device was incorrectly identified as TS0505B_2_1, which led to errors when changing color or temperature. This issue has been resolved by correctly identifying it as TS0505B_1_1 * Update tuya.ts * Update tuya.ts * Update tuya.ts * u --------- Co-authored-by: Koen Kanters <[email protected]>
1 parent 66349c1 commit 3fe484c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/devices/tuya.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -1584,7 +1584,11 @@ const definitions: DefinitionWithExtend[] = [
15841584
tuya.whitelabel('Moes', 'ZB-TDA9-RCW-E27-MS', 'RGB+CCT 9W E27 LED bulb', ['_TZ3210_wxa85bwk']),
15851585
tuya.whitelabel('Moes', 'ZB-LZD10-RCW', '10W RGB+CCT Smart Downlight', ['_TZ3210_s9lumfhn', '_TZ3210_jjqdqxfq']),
15861586
tuya.whitelabel('MiBoxer', 'FUT106ZR', 'GU10 bulb', ['_TZB210_rwy5hexp']),
1587-
tuya.whitelabel('Tuya', 'TS0505B_1_1', 'Zigbee 3.0 18W led light bulb E27 RGBCW', ['_TZ3210_jd3z4yig', '_TZ3210_r5afgmkl']),
1587+
tuya.whitelabel('Tuya', 'TS0505B_1_1', 'Zigbee 3.0 18W led light bulb E27 RGBCW', [
1588+
'_TZ3210_jd3z4yig',
1589+
'_TZ3210_r5afgmkl',
1590+
'_TZ3210_mja6r5ix',
1591+
]),
15881592
tuya.whitelabel('MiBoxer', 'FUTC11ZR', 'Outdoor light', ['_TZB210_zmppwawa']),
15891593
],
15901594
extend: [tuya.modernExtend.tuyaLight({colorTemp: {range: [153, 500]}, color: true})],
@@ -1599,7 +1603,6 @@ const definitions: DefinitionWithExtend[] = [
15991603
description: 'Zigbee RGB+CCT light',
16001604
whiteLabel: [
16011605
tuya.whitelabel('Lidl', '14149505L/14149506L_2', 'Livarno Lux light bar RGB+CCT (black/white)', ['_TZ3210_iystcadi']),
1602-
tuya.whitelabel('Tuya', 'TS0505B_2_1', 'Zigbee 3.0 18W led light bulb E27 RGBCW', ['_TZ3210_mja6r5ix']),
16031606
tuya.whitelabel('Tuya', 'TS0505B_2_2', 'Zigbee GU10/E14 5W smart bulb', ['_TZ3210_it1u8ahz']),
16041607
],
16051608
toZigbee: [tz.on_off, tzLocal.led_control, tuya.tz.do_not_disturb],

0 commit comments

Comments
 (0)