diff --git a/src/devices/tuya.ts b/src/devices/tuya.ts index 80b2abbe26e3c..dcf8112a5d06e 100644 --- a/src/devices/tuya.ts +++ b/src/devices/tuya.ts @@ -7036,7 +7036,7 @@ export const definitions: DefinitionWithExtend[] = [ endpoint: (device) => { return {l1: 1, l2: 2}; }, - meta: {multiEndpoint: true}, + meta: {multiEndpoint: true, disableDefaultResponse: true}, configure: async (device, coordinatorEndpoint) => { await tuya.configureMagicPacket(device, coordinatorEndpoint); @@ -7286,7 +7286,7 @@ export const definitions: DefinitionWithExtend[] = [ endpoint: (device) => { return {l1: 1, l2: 2, l3: 3}; }, - meta: {multiEndpoint: true}, + meta: {multiEndpoint: true, disableDefaultResponse: true}, configure: async (device, coordinatorEndpoint) => { await tuya.configureMagicPacket(device, coordinatorEndpoint); await reporting.bind(device.getEndpoint(1), coordinatorEndpoint, ["genOnOff"]); @@ -7436,6 +7436,7 @@ export const definitions: DefinitionWithExtend[] = [ inchingSwitch: (m) => m === "_TZ3000_afgzktgb", }), ], + meta: {disableDefaultResponse: true}, configure: async (device, coordinatorEndpoint) => { await tuya.configureMagicPacket(device, coordinatorEndpoint); await reporting.bind(device.getEndpoint(1), coordinatorEndpoint, ["genOnOff"]); @@ -11010,6 +11011,7 @@ export const definitions: DefinitionWithExtend[] = [ {vendor: "Mercator Ikuü", model: "SSW01"}, tuya.whitelabel("Nous", "LZ3", "Smart water/gas valve", ["_TZ3000_abjodzas"]), ], + meta: {disableDefaultResponse: true}, configure: async (device, coordinatorEndpoint) => { await tuya.configureMagicPacket(device, coordinatorEndpoint); await reporting.bind(device.getEndpoint(1), coordinatorEndpoint, ["genOnOff"]); @@ -11267,6 +11269,7 @@ export const definitions: DefinitionWithExtend[] = [ tuya.whitelabel("Nova Digital", "SA-4", "Safira smart light switch - 4 gang", ["_TZ3000_iymfxdis"]), tuya.whitelabel("AVATTO", "ZBTS60-04", "4 gang switch module with backlight", ["_TZ3000_r9e2w7dn"]), ], + meta: {disableDefaultResponse: true}, configure: async (device, coordinatorEndpoint) => { await tuya.configureMagicPacket(device, coordinatorEndpoint); await reporting.bind(device.getEndpoint(1), coordinatorEndpoint, ["genOnOff"]);