Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Zigbee smart dimmer reported "Received unexpected Tuya DataPoint" #13800

Closed
madmax1970 opened this issue Sep 1, 2022 · 72 comments
Closed

Zigbee smart dimmer reported "Received unexpected Tuya DataPoint" #13800

madmax1970 opened this issue Sep 1, 2022 · 72 comments
Labels
new device support New device support request

Comments

@madmax1970
Copy link

Link

https://smartguys.com.au/makegood-zigbee-dimmer-smart-light-switch.html

Database entry

0x588e81fffed0d59d (0xA21F)

Comments

Zigbee Model : TS0601
Zigbee Manufacturer : _TZE200_1agwnems

On/Off - working
Dimmer - not working
brightness - reverts back to 0
min_brightness - reverts back to 0
max_brightness - reverts back to 0

Any help on how to fix this please.

State
{
"brightness": -3,
"level": 0,
"linkquality": 255,
"state": "ON"
}

Warning (plenty of this)
Zigbee2MQTT:warn 2022-09-01 20:32:00: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x588e81fffed0d59d with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
Zigbee2MQTT:warn 2022-09-01 20:32:00: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x588e81fffed0d59d with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]

External converter

No response

Supported color modes

No response

Color temperature range

No response

@madmax1970 madmax1970 added the new device support New device support request label Sep 1, 2022
@shanelord01
Copy link

This is the same issue I've reported here #13697

Glad I'm not alone - hoping @Koenkk can help fix it :)

@benflux
Copy link

benflux commented Sep 2, 2022

Same here with the devices from this seller, hoping they are the same? @shanelord01 @madmax1970

https://www.ozsmartthings.com.au/products/zigbee-dimmer-switch-white

@shanelord01
Copy link

Same here with the devices from this seller, hoping they are the same? @shanelord01 @madmax1970

https://www.ozsmartthings.com.au/products/zigbee-dimmer-switch-white

Yes these are the ones I use.

@benflux
Copy link

benflux commented Sep 4, 2022

Shouldn’t we be submitting a whole new device here, I mean the picture is currently a square device and these are rectangular?

@shanelord01
Copy link

I don’t believe so. They are the same underlying technology/product just in different form factors.

@benflux
Copy link

benflux commented Sep 10, 2022

@shanelord01 i know this isn’t the right place to ask this but I can’t PM you. Do your dimmers always turn on at their brightest and then ramp down to the last remembered level when using the physical button? Surely there must be a setting to turn on to the last remembered level directly?

@shanelord01
Copy link

shanelord01 commented Sep 10, 2022

@shanelord01 i know this isn’t the right place to ask this but I can’t PM you. Do your dimmers always turn on at their brightest and then ramp down to the last remembered level when using the physical button? Surely there must be a setting to turn on to the last remembered level directly?

Yes mine do that too. Hoping it’s related to the Z2M issues and all of these issues can get looked at by the devs soon.

@Koenkk
Copy link
Owner

Koenkk commented Sep 12, 2022

Let's first try to fix the brightness part, could you check if the issue is fixed with the following external converter:

const fz = require('zigbee-herdsman-converters/converters/fromZigbee');
const tz = require('zigbee-herdsman-converters/converters/toZigbee');
const exposes = require('zigbee-herdsman-converters/lib/exposes');
const reporting = require('zigbee-herdsman-converters/lib/reporting');
const extend = require('zigbee-herdsman-converters/lib/extend');
const utils = require('zigbee-herdsman-converters/lib/utils');
const ota = require('zigbee-herdsman-converters/lib/ota');
const tuya = require('zigbee-herdsman-converters/lib/tuya');
const e = exposes.presets;
const ea = exposes.access;

const tzLocal = {
    tuya_dimmer_level: {
        key: ['brightness_min', 'min_brightness', 'max_brightness', 'brightness', 'brightness_percent', 'level'],
        convertSet: async (entity, key, value, meta) => {
            // upscale to 1000
            let newValue;
            let dp = tuya.dataPoints.dimmerLevel;
            if (['_TZE200_3p5ydos3', '_TZE200_9i9dt8is', '_TZE200_dfxkcots', '_TZE200_w4cryh2i', '_TZE200_1agwnems'].includes(meta.device.manufacturerName)) {
                dp = tuya.dataPoints.eardaDimmerLevel;
            }
            if (key === 'brightness_min') {
                if (value >= 0 && value <= 100) {
                    newValue = utils.mapNumberRange(value, 0, 100, 0, 1000);
                    dp = tuya.dataPoints.dimmerLevel;
                } else {
                    throw new Error('Dimmer brightness_min is out of range 0..100');
                }
            } else if (key === 'min_brightness') {
                if (value >= 1 && value <= 255) {
                    newValue = utils.mapNumberRange(value, 1, 255, 0, 1000);
                    dp = tuya.dataPoints.dimmerMinLevel;
                } else {
                    throw new Error('Dimmer min_brightness is out of range 1..255');
                }
            } else if (key === 'max_brightness') {
                if (value >= 1 && value <= 255) {
                    newValue = utils.mapNumberRange(value, 1, 255, 0, 1000);
                    dp = tuya.dataPoints.dimmerMaxLevel;
                } else {
                    throw new Error('Dimmer min_brightness is out of range 1..255');
                }
            } else if (key === 'level') {
                if (value >= 0 && value <= 1000) {
                    newValue = Math.round(Number(value));
                } else {
                    throw new Error('Dimmer level is out of range 0..1000');
                }
            } else if (key === 'brightness_percent') {
                if (value >= 0 && value <= 100) {
                    newValue = utils.mapNumberRange(value, 0, 100, 0, 1000);
                } else {
                    throw new Error('Dimmer brightness_percent is out of range 0..100');
                }
            } else { // brightness
                if (value >= 0 && value <= 254) {
                    newValue = utils.mapNumberRange(value, 0, 254, 0, 1000);
                } else {
                    throw new Error('Dimmer brightness is out of range 0..254');
                }
            }
            // Always use same transid as tuya_dimmer_state (https://github.com/Koenkk/zigbee2mqtt/issues/6366)
            await tuya.sendDataPointValue(entity, dp, newValue, 'dataRequest', 1);
        },
    }
}

const definition = {
    fingerprint: [
        {modelID: 'TS0601', manufacturerName: '_TZE200_1agwnems'},
    ],
    model: 'TS0601_dimmer',
    vendor: 'TuYa',
    description: 'Zigbee smart dimmer',
    fromZigbee: [fz.tuya_dimmer, fz.ignore_basic_report],
    toZigbee: [tz.tuya_dimmer_state, tzLocal.tuya_dimmer_level],
    configure: async (device, coordinatorEndpoint, logger) => {
        const endpoint = device.getEndpoint(1);
        await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff', 'genLevelCtrl']);
    },
    exposes: [e.light_brightness().withMinBrightness().withMaxBrightness().setAccess(
        'state', ea.STATE_SET).setAccess('brightness', ea.STATE_SET).setAccess(
        'min_brightness', ea.STATE_SET).setAccess('max_brightness', ea.STATE_SET)],
    whiteLabel: [
        {vendor: 'Larkkey', model: 'ZSTY-SM-1DMZG-EU'},
        {vendor: 'Earda', model: 'EDM-1ZAA-EU'},
        {vendor: 'Earda', model: 'EDM-1ZAB-EU'},
        {vendor: 'Earda', model: 'EDM-1ZBA-EU'},
        {vendor: 'Mercator Ikuü', model: 'SSWD01'},
        {vendor: 'Moes', model: 'ZS-USD'},
    ],
};

module.exports = definition;
  • save this as file next to configuration.yaml as ext_converter.js
  • add it to configuration.yaml:
external_converters:
  - ext_converter.js
  • start z2m, check if issue is fixed

@shanelord01
Copy link

No luck at the moment:

debug 2022-09-12 21:05:35: Publishing 'set' 'brightness' to '0x9035eafffecc7967'
error 2022-09-12 21:05:35: Publish 'set' 'brightness' to '0x9035eafffecc7967' failed: 'ReferenceError: utils is not defined'
debug 2022-09-12 21:05:35: ReferenceError: utils is not defined
    at Object.convertSet (/app/dist/util/externally-loaded.js:56:21)
    at Publish.onMQTTMessage (/app/lib/extension/publish.ts:246:52)
    at EventEmitter.emit (node:events:539:35)
    at EventBus.emitMQTTMessage (/app/lib/eventBus.ts:109:22)
    at MQTT.onMessage (/app/lib/mqtt.ts:140:27)
    at MqttClient.emit (node:events:527:28)
    at MqttClient._handlePublish (/app/node_modules/mqtt/lib/client.js:1547:12)
    at MqttClient._handlePacket (/app/node_modules/mqtt/lib/client.js:535:12)
    at work (/app/node_modules/mqtt/lib/client.js:438:12)
    at Writable.writable._write (/app/node_modules/mqtt/lib/client.js:452:5)
info  2022-09-12 21:05:35: MQTT publish: topic 'zigbee2mqtt/bridge/log', payload '{"message":"Publish 'set' 'brightness' to '0x9035eafffecc7967' failed: 'ReferenceError: utils is not defined'","meta":{"friendly_name":"0x9035eafffecc7967"},"type":"zigbee_publish_error"}'
debug 2022-09-12 21:05:35: Publishing 'set' 'state' to '0x9035eafffecc7967'
debug 2022-09-12 21:05:35: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-12 21:05:35: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:05:36: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"state":"ON","brightness":254}'
debug 2022-09-12 21:05:36: Publishing 'set' 'brightness' to '0x9035eafffecc7967'
error 2022-09-12 21:05:36: Publish 'set' 'brightness' to '0x9035eafffecc7967' failed: 'ReferenceError: utils is not defined'
debug 2022-09-12 21:05:36: ReferenceError: utils is not defined
    at Object.convertSet (/app/dist/util/externally-loaded.js:56:21)
    at Publish.onMQTTMessage (/app/lib/extension/publish.ts:246:52)
    at EventEmitter.emit (node:events:539:35)
    at EventBus.emitMQTTMessage (/app/lib/eventBus.ts:109:22)
    at MQTT.onMessage (/app/lib/mqtt.ts:140:27)
    at MqttClient.emit (node:events:527:28)
    at MqttClient._handlePublish (/app/node_modules/mqtt/lib/client.js:1547:12)
    at MqttClient._handlePacket (/app/node_modules/mqtt/lib/client.js:535:12)
    at work (/app/node_modules/mqtt/lib/client.js:438:12)
    at Writable.writable._write (/app/node_modules/mqtt/lib/client.js:452:5)
info  2022-09-12 21:05:36: MQTT publish: topic 'zigbee2mqtt/bridge/log', payload '{"message":"Publish 'set' 'brightness' to '0x9035eafffecc7967' failed: 'ReferenceError: utils is not defined'","meta":{"friendly_name":"0x9035eafffecc7967"},"type":"zigbee_publish_error"}'
debug 2022-09-12 21:05:36: Publishing 'set' 'state' to '0x9035eafffecc7967'
debug 2022-09-12 21:05:36: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-12 21:05:36: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:05:37: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-12 21:05:37: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:05:37: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,107],"type":"Buffer"},"datatype":2,"dp":2}],"seq":257}' from endpoint 1 with groupID null
warn  2022-09-12 21:05:37: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,3,107]}}': type='commandDataResponse', datatype='value', value='875', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-12 21:05:37: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":222,"level":875,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:05:37: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":513}' from endpoint 1 with groupID null
warn  2022-09-12 21:05:37: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #3 with invalid value 1 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:05:37: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-2,"level":1,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:05:37: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":769}' from endpoint 1 with groupID null
warn  2022-09-12 21:05:37: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
warn  2022-09-12 21:05:37: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #4 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-12 21:05:37: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":1025}' from endpoint 1 with groupID null
warn  2022-09-12 21:05:37: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #5 from 0x9035eafffecc7967 with raw data '{"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,24]}}': type='commandDataResponse', datatype='value', value='24', known DP# usage: ["fanMode","dimmerMaxLevel","motorDirection","config","moesSboostHeatingCountdown","neoAOVolume","silvercrestSetColor","lidlTimer","haozeeBoostHeatingCountdown","evanellLocalTemp","AM02Direction"]
info  2022-09-12 21:05:37: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"level":24,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:05:37: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":1281}' from endpoint 1 with groupID null
warn  2022-09-12 21:05:37: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
warn  2022-09-12 21:05:37: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #6 with invalid value 0 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:05:37: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:05:37: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":1537}' from endpoint 1 with groupID null
warn  2022-09-12 21:05:37: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
warn  2022-09-12 21:05:37: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-12 21:05:38: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"state":"ON","brightness":254}'
debug 2022-09-12 21:05:38: Publishing 'set' 'brightness' to '0x9035eafffecc7967'
error 2022-09-12 21:05:38: Publish 'set' 'brightness' to '0x9035eafffecc7967' failed: 'ReferenceError: utils is not defined'
debug 2022-09-12 21:05:38: ReferenceError: utils is not defined
    at Object.convertSet (/app/dist/util/externally-loaded.js:56:21)
    at Publish.onMQTTMessage (/app/lib/extension/publish.ts:246:52)
    at EventEmitter.emit (node:events:539:35)
    at EventBus.emitMQTTMessage (/app/lib/eventBus.ts:109:22)
    at MQTT.onMessage (/app/lib/mqtt.ts:140:27)
    at MqttClient.emit (node:events:527:28)
    at MqttClient._handlePublish (/app/node_modules/mqtt/lib/client.js:1547:12)
    at MqttClient._handlePacket (/app/node_modules/mqtt/lib/client.js:535:12)
    at work (/app/node_modules/mqtt/lib/client.js:438:12)
    at Writable.writable._write (/app/node_modules/mqtt/lib/client.js:452:5)
info  2022-09-12 21:05:38: MQTT publish: topic 'zigbee2mqtt/bridge/log', payload '{"message":"Publish 'set' 'brightness' to '0x9035eafffecc7967' failed: 'ReferenceError: utils is not defined'","meta":{"friendly_name":"0x9035eafffecc7967"},"type":"zigbee_publish_error"}'
debug 2022-09-12 21:05:39: Publishing 'set' 'state' to '0x9035eafffecc7967'
debug 2022-09-12 21:05:39: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-12 21:05:39: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:05:42: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"state":"ON","brightness":208}'
debug 2022-09-12 21:05:42: Publishing 'set' 'brightness' to '0x9035eafffecc7967'
error 2022-09-12 21:05:42: Publish 'set' 'brightness' to '0x9035eafffecc7967' failed: 'ReferenceError: utils is not defined'
debug 2022-09-12 21:05:42: ReferenceError: utils is not defined
    at Object.convertSet (/app/dist/util/externally-loaded.js:56:21)
    at Publish.onMQTTMessage (/app/lib/extension/publish.ts:246:52)
    at EventEmitter.emit (node:events:539:35)
    at EventBus.emitMQTTMessage (/app/lib/eventBus.ts:109:22)
    at MQTT.onMessage (/app/lib/mqtt.ts:140:27)
    at MqttClient.emit (node:events:527:28)
    at MqttClient._handlePublish (/app/node_modules/mqtt/lib/client.js:1547:12)
    at MqttClient._handlePacket (/app/node_modules/mqtt/lib/client.js:535:12)
    at work (/app/node_modules/mqtt/lib/client.js:438:12)
    at Writable.writable._write (/app/node_modules/mqtt/lib/client.js:452:5)
info  2022-09-12 21:05:42: MQTT publish: topic 'zigbee2mqtt/bridge/log', payload '{"message":"Publish 'set' 'brightness' to '0x9035eafffecc7967' failed: 'ReferenceError: utils is not defined'","meta":{"friendly_name":"0x9035eafffecc7967"},"type":"zigbee_publish_error"}'
debug 2022-09-12 21:05:42: Publishing 'set' 'state' to '0x9035eafffecc7967'
debug 2022-09-12 21:05:42: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-12 21:05:42: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:05:43: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"state":"ON","brightness":120}'
debug 2022-09-12 21:05:43: Publishing 'set' 'brightness' to '0x9035eafffecc7967'
error 2022-09-12 21:05:43: Publish 'set' 'brightness' to '0x9035eafffecc7967' failed: 'ReferenceError: utils is not defined'
debug 2022-09-12 21:05:43: ReferenceError: utils is not defined
    at Object.convertSet (/app/dist/util/externally-loaded.js:56:21)
    at Publish.onMQTTMessage (/app/lib/extension/publish.ts:246:52)
    at EventEmitter.emit (node:events:539:35)
    at EventBus.emitMQTTMessage (/app/lib/eventBus.ts:109:22)
    at MQTT.onMessage (/app/lib/mqtt.ts:140:27)
    at MqttClient.emit (node:events:527:28)
    at MqttClient._handlePublish (/app/node_modules/mqtt/lib/client.js:1547:12)
    at MqttClient._handlePacket (/app/node_modules/mqtt/lib/client.js:535:12)
    at work (/app/node_modules/mqtt/lib/client.js:438:12)
    at Writable.writable._write (/app/node_modules/mqtt/lib/client.js:452:5)
info  2022-09-12 21:05:43: MQTT publish: topic 'zigbee2mqtt/bridge/log', payload '{"message":"Publish 'set' 'brightness' to '0x9035eafffecc7967' failed: 'ReferenceError: utils is not defined'","meta":{"friendly_name":"0x9035eafffecc7967"},"type":"zigbee_publish_error"}'
debug 2022-09-12 21:05:43: Publishing 'set' 'state' to '0x9035eafffecc7967'
debug 2022-09-12 21:05:43: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-12 21:05:44: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:05:45: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"state":"ON","brightness":46}'
debug 2022-09-12 21:05:45: Publishing 'set' 'brightness' to '0x9035eafffecc7967'
error 2022-09-12 21:05:45: Publish 'set' 'brightness' to '0x9035eafffecc7967' failed: 'ReferenceError: utils is not defined'
debug 2022-09-12 21:05:45: ReferenceError: utils is not defined
    at Object.convertSet (/app/dist/util/externally-loaded.js:56:21)
    at Publish.onMQTTMessage (/app/lib/extension/publish.ts:246:52)
    at EventEmitter.emit (node:events:539:35)
    at EventBus.emitMQTTMessage (/app/lib/eventBus.ts:109:22)
    at MQTT.onMessage (/app/lib/mqtt.ts:140:27)
    at MqttClient.emit (node:events:527:28)
    at MqttClient._handlePublish (/app/node_modules/mqtt/lib/client.js:1547:12)
    at MqttClient._handlePacket (/app/node_modules/mqtt/lib/client.js:535:12)
    at work (/app/node_modules/mqtt/lib/client.js:438:12)
    at Writable.writable._write (/app/node_modules/mqtt/lib/client.js:452:5)
info  2022-09-12 21:05:45: MQTT publish: topic 'zigbee2mqtt/bridge/log', payload '{"message":"Publish 'set' 'brightness' to '0x9035eafffecc7967' failed: 'ReferenceError: utils is not defined'","meta":{"friendly_name":"0x9035eafffecc7967"},"type":"zigbee_publish_error"}'
debug 2022-09-12 21:05:45: Publishing 'set' 'state' to '0x9035eafffecc7967'
debug 2022-09-12 21:05:45: Received Zigbee message from 'Back Lounge Blinds 3', type 'raw', cluster '64528', data '{"data":[13,99,18,56,128,81,0,0,0,0,2,0,0,0,200,191,64,0,0,192,65,0,255,253,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-12 21:05:45: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,56,128,81,0,0,0,0,2,0,0,0,200,191,64,0,0,192,65,0,255,253,0,0,0],"type":"Buffer"}'
debug 2022-09-12 21:05:45: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-12 21:05:45: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:05:46: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-12 21:05:46: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:05:46: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,107],"type":"Buffer"},"datatype":2,"dp":2}],"seq":257}' from endpoint 1 with groupID null
warn  2022-09-12 21:05:46: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,3,107]}}': type='commandDataResponse', datatype='value', value='875', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-12 21:05:46: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":222,"level":875,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:05:46: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":513}' from endpoint 1 with groupID null
warn  2022-09-12 21:05:46: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #3 with invalid value 1 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:05:46: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-2,"level":1,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:05:46: Received Zigbee message from 'Back Lounge Smart Plug', type 'read', cluster 'genTime', data '["time"]' from endpoint 1 with groupID null
debug 2022-09-12 21:05:46: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":769}' from endpoint 1 with groupID null
warn  2022-09-12 21:05:46: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
warn  2022-09-12 21:05:46: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #4 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-12 21:05:46: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":1025}' from endpoint 1 with groupID null
warn  2022-09-12 21:05:46: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #5 from 0x9035eafffecc7967 with raw data '{"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,24]}}': type='commandDataResponse', datatype='value', value='24', known DP# usage: ["fanMode","dimmerMaxLevel","motorDirection","config","moesSboostHeatingCountdown","neoAOVolume","silvercrestSetColor","lidlTimer","haozeeBoostHeatingCountdown","evanellLocalTemp","AM02Direction"]
info  2022-09-12 21:05:46: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"level":24,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:05:46: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":1281}' from endpoint 1 with groupID null
warn  2022-09-12 21:05:46: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
warn  2022-09-12 21:05:46: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #6 with invalid value 0 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:05:46: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:05:46: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":1537}' from endpoint 1 with groupID null
warn  2022-09-12 21:05:46: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
warn  2022-09-12 21:05:46: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-12 21:05:47: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"state":"ON","brightness":254}'
debug 2022-09-12 21:05:47: Publishing 'set' 'brightness' to '0x9035eafffecc7967'
error 2022-09-12 21:05:47: Publish 'set' 'brightness' to '0x9035eafffecc7967' failed: 'ReferenceError: utils is not defined'
debug 2022-09-12 21:05:47: ReferenceError: utils is not defined
    at Object.convertSet (/app/dist/util/externally-loaded.js:56:21)
    at Publish.onMQTTMessage (/app/lib/extension/publish.ts:246:52)
    at EventEmitter.emit (node:events:539:35)
    at EventBus.emitMQTTMessage (/app/lib/eventBus.ts:109:22)
    at MQTT.onMessage (/app/lib/mqtt.ts:140:27)
    at MqttClient.emit (node:events:527:28)
    at MqttClient._handlePublish (/app/node_modules/mqtt/lib/client.js:1547:12)
    at MqttClient._handlePacket (/app/node_modules/mqtt/lib/client.js:535:12)
    at work (/app/node_modules/mqtt/lib/client.js:438:12)
    at Writable.writable._write (/app/node_modules/mqtt/lib/client.js:452:5)
info  2022-09-12 21:05:47: MQTT publish: topic 'zigbee2mqtt/bridge/log', payload '{"message":"Publish 'set' 'brightness' to '0x9035eafffecc7967' failed: 'ReferenceError: utils is not defined'","meta":{"friendly_name":"0x9035eafffecc7967"},"type":"zigbee_publish_error"}'
debug 2022-09-12 21:05:47: Publishing 'set' 'state' to '0x9035eafffecc7967'
debug 2022-09-12 21:05:47: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-12 21:05:47: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:07: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"state":"ON","brightness":152}'
debug 2022-09-12 21:06:07: Publishing 'set' 'brightness' to '0x9035eafffecc7967'
error 2022-09-12 21:06:07: Publish 'set' 'brightness' to '0x9035eafffecc7967' failed: 'ReferenceError: utils is not defined'
debug 2022-09-12 21:06:07: ReferenceError: utils is not defined
    at Object.convertSet (/app/dist/util/externally-loaded.js:56:21)
    at Publish.onMQTTMessage (/app/lib/extension/publish.ts:246:52)
    at EventEmitter.emit (node:events:539:35)
    at EventBus.emitMQTTMessage (/app/lib/eventBus.ts:109:22)
    at MQTT.onMessage (/app/lib/mqtt.ts:140:27)
    at MqttClient.emit (node:events:527:28)
    at MqttClient._handlePublish (/app/node_modules/mqtt/lib/client.js:1547:12)
    at MqttClient._handlePacket (/app/node_modules/mqtt/lib/client.js:535:12)
    at work (/app/node_modules/mqtt/lib/client.js:438:12)
    at Writable.writable._write (/app/node_modules/mqtt/lib/client.js:452:5)
info  2022-09-12 21:06:07: MQTT publish: topic 'zigbee2mqtt/bridge/log', payload '{"message":"Publish 'set' 'brightness' to '0x9035eafffecc7967' failed: 'ReferenceError: utils is not defined'","meta":{"friendly_name":"0x9035eafffecc7967"},"type":"zigbee_publish_error"}'
debug 2022-09-12 21:06:07: Publishing 'set' 'state' to '0x9035eafffecc7967'
debug 2022-09-12 21:06:09: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"state":"ON","brightness":170}'
debug 2022-09-12 21:06:09: Publishing 'set' 'brightness' to '0x9035eafffecc7967'
error 2022-09-12 21:06:09: Publish 'set' 'brightness' to '0x9035eafffecc7967' failed: 'ReferenceError: utils is not defined'
debug 2022-09-12 21:06:09: ReferenceError: utils is not defined
    at Object.convertSet (/app/dist/util/externally-loaded.js:56:21)
    at Publish.onMQTTMessage (/app/lib/extension/publish.ts:246:52)
    at EventEmitter.emit (node:events:539:35)
    at EventBus.emitMQTTMessage (/app/lib/eventBus.ts:109:22)
    at MQTT.onMessage (/app/lib/mqtt.ts:140:27)
    at MqttClient.emit (node:events:527:28)
    at MqttClient._handlePublish (/app/node_modules/mqtt/lib/client.js:1547:12)
    at MqttClient._handlePacket (/app/node_modules/mqtt/lib/client.js:535:12)
    at work (/app/node_modules/mqtt/lib/client.js:438:12)
    at Writable.writable._write (/app/node_modules/mqtt/lib/client.js:452:5)
info  2022-09-12 21:06:09: MQTT publish: topic 'zigbee2mqtt/bridge/log', payload '{"message":"Publish 'set' 'brightness' to '0x9035eafffecc7967' failed: 'ReferenceError: utils is not defined'","meta":{"friendly_name":"0x9035eafffecc7967"},"type":"zigbee_publish_error"}'
debug 2022-09-12 21:06:09: Publishing 'set' 'state' to '0x9035eafffecc7967'
debug 2022-09-12 21:06:10: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"state":"ON","brightness":254}'
debug 2022-09-12 21:06:10: Publishing 'set' 'brightness' to '0x9035eafffecc7967'
error 2022-09-12 21:06:10: Publish 'set' 'brightness' to '0x9035eafffecc7967' failed: 'ReferenceError: utils is not defined'
debug 2022-09-12 21:06:10: ReferenceError: utils is not defined
    at Object.convertSet (/app/dist/util/externally-loaded.js:56:21)
    at Publish.onMQTTMessage (/app/lib/extension/publish.ts:246:52)
    at EventEmitter.emit (node:events:539:35)
    at EventBus.emitMQTTMessage (/app/lib/eventBus.ts:109:22)
    at MQTT.onMessage (/app/lib/mqtt.ts:140:27)
    at MqttClient.emit (node:events:527:28)
    at MqttClient._handlePublish (/app/node_modules/mqtt/lib/client.js:1547:12)
    at MqttClient._handlePacket (/app/node_modules/mqtt/lib/client.js:535:12)
    at work (/app/node_modules/mqtt/lib/client.js:438:12)
    at Writable.writable._write (/app/node_modules/mqtt/lib/client.js:452:5)
info  2022-09-12 21:06:10: MQTT publish: topic 'zigbee2mqtt/bridge/log', payload '{"message":"Publish 'set' 'brightness' to '0x9035eafffecc7967' failed: 'ReferenceError: utils is not defined'","meta":{"friendly_name":"0x9035eafffecc7967"},"type":"zigbee_publish_error"}'
debug 2022-09-12 21:06:10: Publishing 'set' 'state' to '0x9035eafffecc7967'
debug 2022-09-12 21:06:11: Received Zigbee message from 'Back Lounge Blinds 4', type 'raw', cluster '64528', data '{"data":[13,99,18,83,128,83,0,0,0,0,2,0,0,0,21,64,65,0,0,203,65,0,255,253,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-12 21:06:11: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,83,128,83,0,0,0,0,2,0,0,0,21,64,65,0,0,203,65,0,255,253,0,0,0],"type":"Buffer"}'
debug 2022-09-12 21:06:11: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-12 21:06:11: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:11: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-12 21:06:11: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:11: Received Zigbee message from '0x9035eafffecc7967', type 'attributeReport', cluster 'genBasic', data '{"65506":31,"65508":0,"appVersion":68}' from endpoint 1 with groupID null
debug 2022-09-12 21:06:11: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"state":"OFF"}'
debug 2022-09-12 21:06:11: Publishing 'set' 'state' to '0x9035eafffecc7967'
debug 2022-09-12 21:06:11: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-12 21:06:11: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"OFF"}'
debug 2022-09-12 21:06:12: Received MQTT message on 'homeassistant/linktap/A7523E24004B1200/state' with data '{"dev_id":"A7523E24004B1200","plan_mode":5,"plan_sn":598037866,"is_rf_linked":"ON","is_flm_plugin":"ON","is_fall":"OFF","is_broken":"OFF","is_cutoff":"OFF","is_leak":"OFF","is_clog":"OFF","signal":52,"battery":90,"child_lock":0,"is_manual_mode":"OFF","is_watering":"OFF","is_final":"ON","total_duration":60,"remain_duration":0,"speed":0.00,"volume":4.99,"failsafe_duration":0}'
debug 2022-09-12 21:06:12: Received MQTT message on 'homeassistant/linktap/A7523E24004B1200_water_switch/state' with data 'OFF'
debug 2022-09-12 21:06:12: Received MQTT message on 'homeassistant/linktap/A7523E24004B1200_fall_alarm/state' with data 'arming'
debug 2022-09-12 21:06:12: Received MQTT message on 'homeassistant/linktap/A7523E24004B1200_broken_alarm/state' with data 'arming'
debug 2022-09-12 21:06:12: Received MQTT message on 'homeassistant/linktap/A7523E24004B1200_cutoff_alarm/state' with data 'arming'
debug 2022-09-12 21:06:13: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-12 21:06:13: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"OFF"}'
debug 2022-09-12 21:06:13: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,107],"type":"Buffer"},"datatype":2,"dp":2}],"seq":257}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:13: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,3,107]}}': type='commandDataResponse', datatype='value', value='875', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-12 21:06:13: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":222,"level":875,"linkquality":255,"state":"OFF"}'
debug 2022-09-12 21:06:14: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":513}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:14: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #3 with invalid value 1 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:06:14: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-2,"level":1,"linkquality":255,"state":"OFF"}'
debug 2022-09-12 21:06:14: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":769}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:14: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
warn  2022-09-12 21:06:14: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #4 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-12 21:06:14: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":1025}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:14: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #5 from 0x9035eafffecc7967 with raw data '{"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,24]}}': type='commandDataResponse', datatype='value', value='24', known DP# usage: ["fanMode","dimmerMaxLevel","motorDirection","config","moesSboostHeatingCountdown","neoAOVolume","silvercrestSetColor","lidlTimer","haozeeBoostHeatingCountdown","evanellLocalTemp","AM02Direction"]
info  2022-09-12 21:06:14: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"level":24,"linkquality":255,"state":"OFF"}'
debug 2022-09-12 21:06:14: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":1281}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:14: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
warn  2022-09-12 21:06:14: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #6 with invalid value 0 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:06:14: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"OFF"}'
debug 2022-09-12 21:06:14: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":1537}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:14: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
warn  2022-09-12 21:06:14: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-12 21:06:15: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"state":"ON"}'
debug 2022-09-12 21:06:15: Publishing 'set' 'state' to '0x9035eafffecc7967'
debug 2022-09-12 21:06:15: Received Zigbee message from 'Front Lounge Blinds 1', type 'raw', cluster '64528', data '{"data":[13,99,18,2,128,190,0,0,0,0,2,0,1,0,0,128,61,0,0,194,65,0,255,6,1,88,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-12 21:06:15: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,2,128,190,0,0,0,0,2,0,1,0,0,128,61,0,0,194,65,0,255,6,1,88,0],"type":"Buffer"}'
debug 2022-09-12 21:06:15: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-12 21:06:15: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:16: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-12 21:06:16: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:16: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,107],"type":"Buffer"},"datatype":2,"dp":2}],"seq":257}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:16: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,3,107]}}': type='commandDataResponse', datatype='value', value='875', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-12 21:06:16: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":222,"level":875,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:17: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":513}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:17: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #3 with invalid value 1 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:06:17: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-2,"level":1,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:17: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":769}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:17: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
warn  2022-09-12 21:06:17: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #4 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-12 21:06:17: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":1025}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:17: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #5 from 0x9035eafffecc7967 with raw data '{"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,24]}}': type='commandDataResponse', datatype='value', value='24', known DP# usage: ["fanMode","dimmerMaxLevel","motorDirection","config","moesSboostHeatingCountdown","neoAOVolume","silvercrestSetColor","lidlTimer","haozeeBoostHeatingCountdown","evanellLocalTemp","AM02Direction"]
info  2022-09-12 21:06:17: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"level":24,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:17: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":1281}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:17: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
warn  2022-09-12 21:06:17: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #6 with invalid value 0 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:06:17: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:17: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":1537}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:17: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
warn  2022-09-12 21:06:17: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-12 21:06:17: Received Zigbee message from 'Front Lounge Blinds 1', type 'raw', cluster '64528', data '{"data":[13,99,18,2,128,190,0,0,0,0,2,0,1,0,0,128,61,0,0,194,65,0,255,6,1,88,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-12 21:06:17: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,2,128,190,0,0,0,0,2,0,1,0,0,128,61,0,0,194,65,0,255,6,1,88,0],"type":"Buffer"}'
debug 2022-09-12 21:06:25: Received Zigbee message from 'Study Motion Sensor', type 'commandStatusChangeNotification', cluster 'ssIasZone', data '{"extendedstatus":0,"zonestatus":33}' from endpoint 1 with groupID null
info  2022-09-12 21:06:25: MQTT publish: topic 'zigbee2mqtt/Study Motion Sensor', payload '{"battery":100,"battery_low":false,"linkquality":255,"occupancy":true,"tamper":false,"temperature":23.09,"voltage":2900}'
debug 2022-09-12 21:06:25: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1537}' from endpoint 1 with groupID null
info  2022-09-12 21:06:25: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:25: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,107],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1793}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:25: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,3,107]}}': type='commandDataResponse', datatype='value', value='875', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-12 21:06:25: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":222,"level":875,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:25: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":2049}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:25: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #3 with invalid value 1 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:06:26: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-2,"level":1,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:26: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":2305}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:26: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
warn  2022-09-12 21:06:26: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #4 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-12 21:06:26: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":2561}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:26: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #5 from 0x9035eafffecc7967 with raw data '{"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,24]}}': type='commandDataResponse', datatype='value', value='24', known DP# usage: ["fanMode","dimmerMaxLevel","motorDirection","config","moesSboostHeatingCountdown","neoAOVolume","silvercrestSetColor","lidlTimer","haozeeBoostHeatingCountdown","evanellLocalTemp","AM02Direction"]
info  2022-09-12 21:06:26: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"level":24,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:26: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":2817}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:26: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
warn  2022-09-12 21:06:26: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #6 with invalid value 0 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:06:26: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:26: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":3073}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:26: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
warn  2022-09-12 21:06:26: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-12 21:06:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":3073}' from endpoint 1 with groupID null
info  2022-09-12 21:06:34: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,107],"type":"Buffer"},"datatype":2,"dp":2}],"seq":3329}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:34: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,3,107]}}': type='commandDataResponse', datatype='value', value='875', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-12 21:06:34: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":222,"level":875,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":3585}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:34: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #3 with invalid value 1 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:06:34: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-2,"level":1,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:35: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":3841}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:35: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
warn  2022-09-12 21:06:35: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #4 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-12 21:06:35: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":4097}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:35: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #5 from 0x9035eafffecc7967 with raw data '{"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,24]}}': type='commandDataResponse', datatype='value', value='24', known DP# usage: ["fanMode","dimmerMaxLevel","motorDirection","config","moesSboostHeatingCountdown","neoAOVolume","silvercrestSetColor","lidlTimer","haozeeBoostHeatingCountdown","evanellLocalTemp","AM02Direction"]
info  2022-09-12 21:06:35: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"level":24,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:35: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":4353}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:35: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
warn  2022-09-12 21:06:35: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #6 with invalid value 0 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:06:35: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:35: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":4609}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:35: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
warn  2022-09-12 21:06:35: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-12 21:06:37: Received Zigbee message from 'Front Lounge Blinds 2', type 'raw', cluster '64528', data '{"data":[13,99,18,76,128,191,0,0,0,0,2,0,0,0,240,89,64,0,0,190,65,0,255,249,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-12 21:06:37: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,76,128,191,0,0,0,0,2,0,0,0,240,89,64,0,0,190,65,0,255,249,0,0,0],"type":"Buffer"}'
debug 2022-09-12 21:06:37: Received Zigbee message from 'Back Lounge Blinds 2', type 'raw', cluster '64528', data '{"data":[13,99,18,78,128,80,202,226,128,254,2,0,0,0,232,145,64,0,0,203,65,0,255,250,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-12 21:06:37: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,78,128,80,202,226,128,254,2,0,0,0,232,145,64,0,0,203,65,0,255,250,0,0,0],"type":"Buffer"}'
debug 2022-09-12 21:06:43: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":4609}' from endpoint 1 with groupID null
info  2022-09-12 21:06:43: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:43: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,107],"type":"Buffer"},"datatype":2,"dp":2}],"seq":4865}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:43: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,3,107]}}': type='commandDataResponse', datatype='value', value='875', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-12 21:06:43: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":222,"level":875,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:43: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":5121}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:43: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #3 with invalid value 1 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:06:43: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-2,"level":1,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:43: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":5377}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:43: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
warn  2022-09-12 21:06:43: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #4 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-12 21:06:44: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":5633}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:44: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #5 from 0x9035eafffecc7967 with raw data '{"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,24]}}': type='commandDataResponse', datatype='value', value='24', known DP# usage: ["fanMode","dimmerMaxLevel","motorDirection","config","moesSboostHeatingCountdown","neoAOVolume","silvercrestSetColor","lidlTimer","haozeeBoostHeatingCountdown","evanellLocalTemp","AM02Direction"]
info  2022-09-12 21:06:44: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"level":24,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:44: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":5889}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:44: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
warn  2022-09-12 21:06:44: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #6 with invalid value 0 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:06:44: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:44: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":6145}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:44: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
warn  2022-09-12 21:06:44: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-12 21:06:48: Received Zigbee message from 'Study Motion Sensor', type 'commandStatusChangeNotification', cluster 'ssIasZone', data '{"extendedstatus":0,"zonestatus":32}' from endpoint 1 with groupID null
info  2022-09-12 21:06:48: MQTT publish: topic 'zigbee2mqtt/Study Motion Sensor', payload '{"battery":100,"battery_low":false,"linkquality":255,"occupancy":false,"tamper":false,"temperature":23.09,"voltage":2900}'
debug 2022-09-12 21:06:50: Received Zigbee message from 'Back Lounge Blinds 3', type 'raw', cluster '64528', data '{"data":[13,99,18,57,128,81,0,0,0,0,2,0,0,0,200,189,64,0,0,202,65,0,255,252,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-12 21:06:50: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,57,128,81,0,0,0,0,2,0,0,0,200,189,64,0,0,202,65,0,255,252,0,0,0],"type":"Buffer"}'
debug 2022-09-12 21:06:52: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":6145}' from endpoint 1 with groupID null
info  2022-09-12 21:06:52: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:52: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,107],"type":"Buffer"},"datatype":2,"dp":2}],"seq":6401}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:52: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,3,107]}}': type='commandDataResponse', datatype='value', value='875', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-12 21:06:52: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":222,"level":875,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:52: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":6657}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:52: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #3 with invalid value 1 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:06:52: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-2,"level":1,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:52: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":6913}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:52: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
warn  2022-09-12 21:06:52: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #4 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-12 21:06:52: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":7169}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:52: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #5 from 0x9035eafffecc7967 with raw data '{"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,24]}}': type='commandDataResponse', datatype='value', value='24', known DP# usage: ["fanMode","dimmerMaxLevel","motorDirection","config","moesSboostHeatingCountdown","neoAOVolume","silvercrestSetColor","lidlTimer","haozeeBoostHeatingCountdown","evanellLocalTemp","AM02Direction"]
info  2022-09-12 21:06:52: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"level":24,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:53: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":7425}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:53: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
warn  2022-09-12 21:06:53: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #6 with invalid value 0 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:06:53: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:06:53: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":7681}' from endpoint 1 with groupID null
warn  2022-09-12 21:06:53: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
warn  2022-09-12 21:06:53: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-12 21:06:55: Received Zigbee message from 'Front Lounge Blinds 2', type 'commandQueryNextImageRequest', cluster 'genOta', data '{"fieldControl":0,"fileVersion":24,"imageType":80,"manufacturerCode":4707}' from endpoint 1 with groupID null
debug 2022-09-12 21:06:55: Device 'Front Lounge Blinds 2' requested OTA
debug 2022-09-12 21:06:58: Received Zigbee message from 'Back Lounge Blinds 4', type 'raw', cluster '64528', data '{"data":[13,99,18,84,128,83,0,0,0,0,2,0,0,0,149,64,65,0,0,204,65,0,255,252,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-12 21:06:58: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,84,128,83,0,0,0,0,2,0,0,0,149,64,65,0,0,204,65,0,255,252,0,0,0],"type":"Buffer"}'
debug 2022-09-12 21:06:59: Received Zigbee message from 'Front Lounge Smart Plug', type 'attributeReport', cluster 'seMetering', data '{"currentSummDelivered":[0,516]}' from endpoint 1 with groupID null
info  2022-09-12 21:06:59: MQTT publish: topic 'zigbee2mqtt/Front Lounge Smart Plug', payload '{"energy":5.16,"linkquality":255,"power":12,"state":"ON"}'
debug 2022-09-12 21:07:01: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":7681}' from endpoint 1 with groupID null
info  2022-09-12 21:07:01: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":252,"state":"ON"}'
debug 2022-09-12 21:07:01: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,107],"type":"Buffer"},"datatype":2,"dp":2}],"seq":7937}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:01: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,3,107]}}': type='commandDataResponse', datatype='value', value='875', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-12 21:07:01: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":222,"level":875,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:01: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":8193}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:01: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #3 with invalid value 1 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:07:01: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-2,"level":1,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:01: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":8449}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:01: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
warn  2022-09-12 21:07:01: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #4 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-12 21:07:01: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":8705}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:01: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #5 from 0x9035eafffecc7967 with raw data '{"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,24]}}': type='commandDataResponse', datatype='value', value='24', known DP# usage: ["fanMode","dimmerMaxLevel","motorDirection","config","moesSboostHeatingCountdown","neoAOVolume","silvercrestSetColor","lidlTimer","haozeeBoostHeatingCountdown","evanellLocalTemp","AM02Direction"]
info  2022-09-12 21:07:01: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"level":24,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:01: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":8961}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:01: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
warn  2022-09-12 21:07:01: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #6 with invalid value 0 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:07:01: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:02: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":9217}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:02: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
warn  2022-09-12 21:07:02: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-12 21:07:08: Received Zigbee message from 'Back Lounge Blinds 1', type 'raw', cluster '64528', data '{"data":[13,99,18,109,128,83,0,0,0,0,2,0,0,0,248,147,63,0,0,207,65,0,255,255,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-12 21:07:08: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,109,128,83,0,0,0,0,2,0,0,0,248,147,63,0,0,207,65,0,255,255,0,0,0],"type":"Buffer"}'
debug 2022-09-12 21:07:10: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":9217}' from endpoint 1 with groupID null
info  2022-09-12 21:07:10: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:10: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,107],"type":"Buffer"},"datatype":2,"dp":2}],"seq":9473}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:10: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,3,107]}}': type='commandDataResponse', datatype='value', value='875', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-12 21:07:10: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":222,"level":875,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:10: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":9729}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:10: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #3 with invalid value 1 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:07:10: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-2,"level":1,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:10: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":9985}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:10: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
warn  2022-09-12 21:07:10: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #4 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-12 21:07:10: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":10241}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:10: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #5 from 0x9035eafffecc7967 with raw data '{"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,24]}}': type='commandDataResponse', datatype='value', value='24', known DP# usage: ["fanMode","dimmerMaxLevel","motorDirection","config","moesSboostHeatingCountdown","neoAOVolume","silvercrestSetColor","lidlTimer","haozeeBoostHeatingCountdown","evanellLocalTemp","AM02Direction"]
info  2022-09-12 21:07:10: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"level":24,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:10: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":10497}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:10: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
warn  2022-09-12 21:07:10: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #6 with invalid value 0 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:07:10: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:11: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":10753}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:11: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
warn  2022-09-12 21:07:11: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-12 21:07:19: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":10753}' from endpoint 1 with groupID null
info  2022-09-12 21:07:19: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:19: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,107],"type":"Buffer"},"datatype":2,"dp":2}],"seq":11009}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:19: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,3,107]}}': type='commandDataResponse', datatype='value', value='875', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-12 21:07:19: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":222,"level":875,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:19: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":11265}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:19: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #3 with invalid value 1 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:07:19: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-2,"level":1,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:19: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":11521}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:19: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
warn  2022-09-12 21:07:19: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #4 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-12 21:07:19: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":11777}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:19: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #5 from 0x9035eafffecc7967 with raw data '{"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,24]}}': type='commandDataResponse', datatype='value', value='24', known DP# usage: ["fanMode","dimmerMaxLevel","motorDirection","config","moesSboostHeatingCountdown","neoAOVolume","silvercrestSetColor","lidlTimer","haozeeBoostHeatingCountdown","evanellLocalTemp","AM02Direction"]
info  2022-09-12 21:07:19: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"level":24,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:19: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":12033}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:20: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
warn  2022-09-12 21:07:20: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #6 with invalid value 0 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:07:20: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:20: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":12289}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:20: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
warn  2022-09-12 21:07:20: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-12 21:07:21: Received Zigbee message from 'Front Lounge Blinds 1', type 'raw', cluster '64528', data '{"data":[13,99,18,3,128,190,0,0,0,0,2,0,1,0,0,128,61,0,0,193,65,0,255,5,1,87,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-12 21:07:21: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,3,128,190,0,0,0,0,2,0,1,0,0,128,61,0,0,193,65,0,255,5,1,87,0],"type":"Buffer"}'
debug 2022-09-12 21:07:28: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":12289}' from endpoint 1 with groupID null
info  2022-09-12 21:07:28: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:28: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,107],"type":"Buffer"},"datatype":2,"dp":2}],"seq":12545}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:28: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,3,107]}}': type='commandDataResponse', datatype='value', value='875', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-12 21:07:28: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":222,"level":875,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:28: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":12801}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:28: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #3 with invalid value 1 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:07:28: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-2,"level":1,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:28: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":13057}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:28: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
warn  2022-09-12 21:07:28: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #4 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-12 21:07:28: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":13313}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:28: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #5 from 0x9035eafffecc7967 with raw data '{"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,24]}}': type='commandDataResponse', datatype='value', value='24', known DP# usage: ["fanMode","dimmerMaxLevel","motorDirection","config","moesSboostHeatingCountdown","neoAOVolume","silvercrestSetColor","lidlTimer","haozeeBoostHeatingCountdown","evanellLocalTemp","AM02Direction"]
info  2022-09-12 21:07:28: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"level":24,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:28: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":13569}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:28: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
warn  2022-09-12 21:07:28: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #6 with invalid value 0 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:07:28: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:29: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":13825}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:29: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
warn  2022-09-12 21:07:29: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-12 21:07:37: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":13825}' from endpoint 1 with groupID null
info  2022-09-12 21:07:37: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:37: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,107],"type":"Buffer"},"datatype":2,"dp":2}],"seq":14081}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:37: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,3,107]}}': type='commandDataResponse', datatype='value', value='875', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-12 21:07:37: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":222,"level":875,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:37: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":14337}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:37: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #3 with invalid value 1 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:07:37: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-2,"level":1,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:37: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":14593}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:37: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
warn  2022-09-12 21:07:37: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #4 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-12 21:07:37: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":14849}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:37: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #5 from 0x9035eafffecc7967 with raw data '{"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,24]}}': type='commandDataResponse', datatype='value', value='24', known DP# usage: ["fanMode","dimmerMaxLevel","motorDirection","config","moesSboostHeatingCountdown","neoAOVolume","silvercrestSetColor","lidlTimer","haozeeBoostHeatingCountdown","evanellLocalTemp","AM02Direction"]
info  2022-09-12 21:07:37: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"level":24,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:37: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":15105}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:37: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
warn  2022-09-12 21:07:37: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #6 with invalid value 0 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:07:37: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:37: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":15361}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:37: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
warn  2022-09-12 21:07:37: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-12 21:07:43: Received Zigbee message from 'Front Lounge Blinds 2', type 'raw', cluster '64528', data '{"data":[13,99,18,78,128,191,0,0,0,0,2,0,0,0,240,89,64,0,0,189,65,0,255,248,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-12 21:07:43: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,78,128,191,0,0,0,0,2,0,0,0,240,89,64,0,0,189,65,0,255,248,0,0,0],"type":"Buffer"}'
debug 2022-09-12 21:07:43: Received Zigbee message from 'Back Lounge Blinds 2', type 'raw', cluster '64528', data '{"data":[13,99,18,79,128,80,202,226,128,254,2,0,0,0,226,150,64,0,0,203,65,0,255,249,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-12 21:07:43: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,79,128,80,202,226,128,254,2,0,0,0,226,150,64,0,0,203,65,0,255,249,0,0,0],"type":"Buffer"}'
debug 2022-09-12 21:07:46: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":15361}' from endpoint 1 with groupID null
info  2022-09-12 21:07:46: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:46: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,107],"type":"Buffer"},"datatype":2,"dp":2}],"seq":15617}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:46: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,3,107]}}': type='commandDataResponse', datatype='value', value='875', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-12 21:07:46: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":222,"level":875,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:46: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":15873}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:46: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #3 with invalid value 1 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:07:46: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-2,"level":1,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:46: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":16129}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:46: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
warn  2022-09-12 21:07:46: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #4 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-12 21:07:46: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":16385}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:46: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #5 from 0x9035eafffecc7967 with raw data '{"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,24]}}': type='commandDataResponse', datatype='value', value='24', known DP# usage: ["fanMode","dimmerMaxLevel","motorDirection","config","moesSboostHeatingCountdown","neoAOVolume","silvercrestSetColor","lidlTimer","haozeeBoostHeatingCountdown","evanellLocalTemp","AM02Direction"]
info  2022-09-12 21:07:46: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"level":24,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:46: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":16641}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:46: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
warn  2022-09-12 21:07:46: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #6 with invalid value 0 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:07:46: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:46: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":16897}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:46: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
warn  2022-09-12 21:07:46: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-12 21:07:55: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":16897}' from endpoint 1 with groupID null
info  2022-09-12 21:07:55: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:55: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,107],"type":"Buffer"},"datatype":2,"dp":2}],"seq":17153}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:55: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,3,107]}}': type='commandDataResponse', datatype='value', value='875', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-12 21:07:55: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":222,"level":875,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:55: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":17409}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:55: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #3 with invalid value 1 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:07:55: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-2,"level":1,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:55: Received Zigbee message from 'Back Lounge Blinds 3', type 'raw', cluster '64528', data '{"data":[13,99,18,58,128,81,0,0,0,0,2,0,0,0,200,197,64,0,0,202,65,0,255,251,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-12 21:07:55: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,58,128,81,0,0,0,0,2,0,0,0,200,197,64,0,0,202,65,0,255,251,0,0,0],"type":"Buffer"}'
debug 2022-09-12 21:07:55: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":17665}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:55: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
warn  2022-09-12 21:07:55: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #4 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-12 21:07:55: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":17921}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:55: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #5 from 0x9035eafffecc7967 with raw data '{"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,24]}}': type='commandDataResponse', datatype='value', value='24', known DP# usage: ["fanMode","dimmerMaxLevel","motorDirection","config","moesSboostHeatingCountdown","neoAOVolume","silvercrestSetColor","lidlTimer","haozeeBoostHeatingCountdown","evanellLocalTemp","AM02Direction"]
info  2022-09-12 21:07:55: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"level":24,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:55: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":18177}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:55: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
warn  2022-09-12 21:07:55: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #6 with invalid value 0 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:07:55: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:07:55: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":18433}' from endpoint 1 with groupID null
warn  2022-09-12 21:07:55: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
warn  2022-09-12 21:07:55: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-12 21:08:03: Received Zigbee message from 'Back Lounge Blinds 4', type 'raw', cluster '64528', data '{"data":[13,99,18,85,128,83,0,0,0,0,2,0,0,0,21,68,65,0,0,204,65,0,255,251,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-12 21:08:04: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,85,128,83,0,0,0,0,2,0,0,0,21,68,65,0,0,204,65,0,255,251,0,0,0],"type":"Buffer"}'
debug 2022-09-12 21:08:04: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":18433}' from endpoint 1 with groupID null
info  2022-09-12 21:08:04: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:08:04: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,107],"type":"Buffer"},"datatype":2,"dp":2}],"seq":18689}' from endpoint 1 with groupID null
warn  2022-09-12 21:08:04: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,3,107]}}': type='commandDataResponse', datatype='value', value='875', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-12 21:08:04: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":222,"level":875,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:08:04: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":18945}' from endpoint 1 with groupID null
warn  2022-09-12 21:08:04: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #3 with invalid value 1 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:08:04: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-2,"level":1,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:08:04: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":19201}' from endpoint 1 with groupID null
warn  2022-09-12 21:08:04: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
warn  2022-09-12 21:08:04: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #4 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-12 21:08:04: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":19457}' from endpoint 1 with groupID null
warn  2022-09-12 21:08:04: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #5 from 0x9035eafffecc7967 with raw data '{"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,24]}}': type='commandDataResponse', datatype='value', value='24', known DP# usage: ["fanMode","dimmerMaxLevel","motorDirection","config","moesSboostHeatingCountdown","neoAOVolume","silvercrestSetColor","lidlTimer","haozeeBoostHeatingCountdown","evanellLocalTemp","AM02Direction"]
info  2022-09-12 21:08:04: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"level":24,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:08:04: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":19713}' from endpoint 1 with groupID null
warn  2022-09-12 21:08:04: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
warn  2022-09-12 21:08:04: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #6 with invalid value 0 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:08:04: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:08:04: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":19969}' from endpoint 1 with groupID null
warn  2022-09-12 21:08:04: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
warn  2022-09-12 21:08:04: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-12 21:08:13: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":19969}' from endpoint 1 with groupID null
info  2022-09-12 21:08:13: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:08:13: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,107],"type":"Buffer"},"datatype":2,"dp":2}],"seq":20225}' from endpoint 1 with groupID null
warn  2022-09-12 21:08:13: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,3,107]}}': type='commandDataResponse', datatype='value', value='875', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-12 21:08:13: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":222,"level":875,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:08:13: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":20481}' from endpoint 1 with groupID null
warn  2022-09-12 21:08:13: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #3 with invalid value 1 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:08:13: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-2,"level":1,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:08:13: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":20737}' from endpoint 1 with groupID null
warn  2022-09-12 21:08:13: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
warn  2022-09-12 21:08:13: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #4 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-12 21:08:13: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":20993}' from endpoint 1 with groupID null
warn  2022-09-12 21:08:13: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #5 from 0x9035eafffecc7967 with raw data '{"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,24]}}': type='commandDataResponse', datatype='value', value='24', known DP# usage: ["fanMode","dimmerMaxLevel","motorDirection","config","moesSboostHeatingCountdown","neoAOVolume","silvercrestSetColor","lidlTimer","haozeeBoostHeatingCountdown","evanellLocalTemp","AM02Direction"]
info  2022-09-12 21:08:13: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"level":24,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:08:13: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":21249}' from endpoint 1 with groupID null
warn  2022-09-12 21:08:13: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
warn  2022-09-12 21:08:13: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #6 with invalid value 0 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:08:13: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:08:13: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":21505}' from endpoint 1 with groupID null
warn  2022-09-12 21:08:13: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
warn  2022-09-12 21:08:13: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-12 21:08:14: Received Zigbee message from 'Back Lounge Blinds 1', type 'raw', cluster '64528', data '{"data":[13,99,18,110,128,83,0,0,0,0,2,0,0,0,248,203,63,0,0,205,65,0,255,254,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-12 21:08:14: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,110,128,83,0,0,0,0,2,0,0,0,248,203,63,0,0,205,65,0,255,254,0,0,0],"type":"Buffer"}'
debug 2022-09-12 21:08:15: Received MQTT message on 'homeassistant/linktap/A7523E24004B1200/state' with data '{"dev_id":"A7523E24004B1200","plan_mode":5,"plan_sn":598037866,"is_rf_linked":"ON","is_flm_plugin":"ON","is_fall":"OFF","is_broken":"OFF","is_cutoff":"OFF","is_leak":"OFF","is_clog":"OFF","signal":52,"battery":90,"child_lock":0,"is_manual_mode":"OFF","is_watering":"OFF","is_final":"ON","total_duration":60,"remain_duration":0,"speed":0.00,"volume":4.99,"failsafe_duration":0}'
debug 2022-09-12 21:08:15: Received MQTT message on 'homeassistant/linktap/A7523E24004B1200_water_switch/state' with data 'OFF'
debug 2022-09-12 21:08:15: Received MQTT message on 'homeassistant/linktap/A7523E24004B1200_fall_alarm/state' with data 'arming'
debug 2022-09-12 21:08:15: Received MQTT message on 'homeassistant/linktap/A7523E24004B1200_broken_alarm/state' with data 'arming'
debug 2022-09-12 21:08:15: Received MQTT message on 'homeassistant/linktap/A7523E24004B1200_cutoff_alarm/state' with data 'arming'
debug 2022-09-12 21:08:22: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":21505}' from endpoint 1 with groupID null
info  2022-09-12 21:08:22: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:08:22: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,107],"type":"Buffer"},"datatype":2,"dp":2}],"seq":21761}' from endpoint 1 with groupID null
warn  2022-09-12 21:08:22: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,3,107]}}': type='commandDataResponse', datatype='value', value='875', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-12 21:08:22: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":222,"level":875,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:08:22: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":22017}' from endpoint 1 with groupID null
warn  2022-09-12 21:08:22: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #3 with invalid value 1 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:08:22: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-2,"level":1,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:08:22: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":22273}' from endpoint 1 with groupID null
warn  2022-09-12 21:08:22: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
warn  2022-09-12 21:08:22: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #4 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-12 21:08:22: Received Zigbee message from 'Pool Filter Smart Plug', type 'read', cluster 'genTime', data '["time"]' from endpoint 1 with groupID null
debug 2022-09-12 21:08:22: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":22529}' from endpoint 1 with groupID null
warn  2022-09-12 21:08:22: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #5 from 0x9035eafffecc7967 with raw data '{"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,24]}}': type='commandDataResponse', datatype='value', value='24', known DP# usage: ["fanMode","dimmerMaxLevel","motorDirection","config","moesSboostHeatingCountdown","neoAOVolume","silvercrestSetColor","lidlTimer","haozeeBoostHeatingCountdown","evanellLocalTemp","AM02Direction"]
info  2022-09-12 21:08:22: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"level":24,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:08:22: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":22785}' from endpoint 1 with groupID null
warn  2022-09-12 21:08:22: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
warn  2022-09-12 21:08:22: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #6 with invalid value 0 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:08:22: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:08:22: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":23041}' from endpoint 1 with groupID null
warn  2022-09-12 21:08:22: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
warn  2022-09-12 21:08:22: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-12 21:08:26: Received Zigbee message from 'Front Lounge Blinds 1', type 'raw', cluster '64528', data '{"data":[13,99,18,4,128,190,0,0,0,0,2,0,1,0,0,144,62,0,0,193,65,0,255,4,1,85,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-12 21:08:26: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,4,128,190,0,0,0,0,2,0,1,0,0,144,62,0,0,193,65,0,255,4,1,85,0],"type":"Buffer"}'
debug 2022-09-12 21:08:29: Received MQTT message on 'zigbee2mqtt/bridge/request/device/configure' with data '{"id":"0x9035eafffecc7967","transaction":"itjvb-1"}'
info  2022-09-12 21:08:29: Configuring '0x9035eafffecc7967'
info  2022-09-12 21:08:29: Successfully configured '0x9035eafffecc7967'
info  2022-09-12 21:08:30: MQTT publish: topic 'zigbee2mqtt/bridge/response/device/configure', payload '{"data":{"id":"0x9035eafffecc7967"},"status":"ok","transaction":"itjvb-1"}'
debug 2022-09-12 21:08:31: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":23041}' from endpoint 1 with groupID null
info  2022-09-12 21:08:31: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:08:31: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,107],"type":"Buffer"},"datatype":2,"dp":2}],"seq":23297}' from endpoint 1 with groupID null
warn  2022-09-12 21:08:31: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,3,107]}}': type='commandDataResponse', datatype='value', value='875', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-12 21:08:31: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":222,"level":875,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:08:31: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":23553}' from endpoint 1 with groupID null
warn  2022-09-12 21:08:31: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #3 with invalid value 1 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:08:31: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-2,"level":1,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:08:31: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":23809}' from endpoint 1 with groupID null
warn  2022-09-12 21:08:31: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
warn  2022-09-12 21:08:31: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #4 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-12 21:08:31: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":24065}' from endpoint 1 with groupID null
warn  2022-09-12 21:08:31: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #5 from 0x9035eafffecc7967 with raw data '{"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,24]}}': type='commandDataResponse', datatype='value', value='24', known DP# usage: ["fanMode","dimmerMaxLevel","motorDirection","config","moesSboostHeatingCountdown","neoAOVolume","silvercrestSetColor","lidlTimer","haozeeBoostHeatingCountdown","evanellLocalTemp","AM02Direction"]
info  2022-09-12 21:08:31: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"level":24,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:08:31: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":24321}' from endpoint 1 with groupID null
warn  2022-09-12 21:08:31: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
warn  2022-09-12 21:08:31: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #6 with invalid value 0 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-12 21:08:31: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-12 21:08:31: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":24577}' from endpoint 1 with groupID null
warn  2022-09-12 21:08:31: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
warn  2022-09-12 21:08:31: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]

@shanelord01
Copy link

shanelord01 commented Sep 12, 2022

The converter is definitely loaded as I changed description: 'Zigbee smart dimmer', to description: 'Zigbee smart dimmer ext', and it is showing in the device in Z2M.

@Koenkk
Copy link
Owner

Koenkk commented Sep 13, 2022

I made an error, updated #13800 (comment)

@shanelord01
Copy link

shanelord01 commented Sep 13, 2022

No luck... brightness won't change anything (in fact it jumps up and down about 3 steps over and over again). On/Off works. Lots of red errors on join and usage though.

info  2022-09-13 18:10:56: Device '0x9035eafffecc7967' joined
info  2022-09-13 18:10:56: MQTT publish: topic 'zigbee2mqtt/bridge/event', payload '{"data":{"friendly_name":"0x9035eafffecc7967","ieee_address":"0x9035eafffecc7967"},"type":"device_joined"}'
info  2022-09-13 18:10:56: MQTT publish: topic 'zigbee2mqtt/bridge/log', payload '{"message":{"friendly_name":"0x9035eafffecc7967"},"type":"device_connected"}'
info  2022-09-13 18:10:56: Starting interview of '0x9035eafffecc7967'
info  2022-09-13 18:10:57: MQTT publish: topic 'zigbee2mqtt/bridge/event', payload '{"data":{"friendly_name":"0x9035eafffecc7967","ieee_address":"0x9035eafffecc7967","status":"started"},"type":"device_interview"}'
info  2022-09-13 18:10:57: MQTT publish: topic 'zigbee2mqtt/bridge/log', payload '{"message":"interview_started","meta":{"friendly_name":"0x9035eafffecc7967"},"type":"pairing"}'
debug 2022-09-13 18:10:57: Received Zigbee message from '0x9035eafffecc7967', type 'readResponse', cluster 'genBasic', data '{"manufacturerName":"_TZE200_1agwnems","modelId":"TS0601"}' from endpoint 1 with groupID null
debug 2022-09-13 18:10:57: Skipping message, definition is undefined and still interviewing
debug 2022-09-13 18:10:57: Received Zigbee message from '0x9035eafffecc7967', type 'readResponse', cluster 'genBasic', data '{"powerSource":1}' from endpoint 1 with groupID null
debug 2022-09-13 18:10:57: Skipping message, definition is undefined and still interviewing
debug 2022-09-13 18:10:57: Received Zigbee message from '0x9035eafffecc7967', type 'readResponse', cluster 'genBasic', data '{"zclVersion":3}' from endpoint 1 with groupID null
debug 2022-09-13 18:10:57: Skipping message, definition is undefined and still interviewing
debug 2022-09-13 18:10:57: Received Zigbee message from '0x9035eafffecc7967', type 'readResponse', cluster 'genBasic', data '{"appVersion":68}' from endpoint 1 with groupID null
debug 2022-09-13 18:10:57: Skipping message, definition is undefined and still interviewing
debug 2022-09-13 18:10:57: Received Zigbee message from '0x9035eafffecc7967', type 'readResponse', cluster 'genBasic', data '{"stackVersion":0}' from endpoint 1 with groupID null
debug 2022-09-13 18:10:57: Skipping message, definition is undefined and still interviewing
debug 2022-09-13 18:10:57: Received Zigbee message from '0x9035eafffecc7967', type 'readResponse', cluster 'genBasic', data '{"hwVersion":1}' from endpoint 1 with groupID null
debug 2022-09-13 18:10:57: Skipping message, definition is undefined and still interviewing
debug 2022-09-13 18:10:58: Received Zigbee message from '0x9035eafffecc7967', type 'readResponse', cluster 'genBasic', data '{"dateCode":""}' from endpoint 1 with groupID null
debug 2022-09-13 18:10:58: Skipping message, definition is undefined and still interviewing
debug 2022-09-13 18:10:58: Received Zigbee message from '0x9035eafffecc7967', type 'readResponse', cluster 'genBasic', data '{}' from endpoint 1 with groupID null
debug 2022-09-13 18:10:58: Skipping message, definition is undefined and still interviewing
info  2022-09-13 18:10:58: Successfully interviewed '0x9035eafffecc7967', device has successfully been paired
info  2022-09-13 18:10:58: Device '0x9035eafffecc7967' is supported, identified as: TuYa Zigbee smart dimmer (TS0601_dimmer)
info  2022-09-13 18:10:58: MQTT publish: topic 'zigbee2mqtt/bridge/event', payload '{"data":{"definition":{"description":"Zigbee smart dimmer","exposes":[{"features":[{"access":3,"description":"On/off state of this light","name":"state","property":"state","type":"binary","value_off":"OFF","value_on":"ON","value_toggle":"TOGGLE"},{"access":3,"description":"Brightness of this light","name":"brightness","property":"brightness","type":"numeric","value_max":254,"value_min":0},{"access":3,"description":"Minimum light brightness","name":"min_brightness","property":"min_brightness","type":"numeric","value_max":255,"value_min":1},{"access":3,"description":"Maximum light brightness","name":"max_brightness","property":"max_brightness","type":"numeric","value_max":255,"value_min":1}],"type":"light"},{"access":1,"description":"Link quality (signal strength)","name":"linkquality","property":"linkquality","type":"numeric","unit":"lqi","value_max":255,"value_min":0}],"model":"TS0601_dimmer","options":[],"supports_ota":false,"vendor":"TuYa"},"friendly_name":"0x9035eafffecc7967","ieee_address":"0x9035eafffecc7967","status":"successful","supported":true},"type":"device_interview"}'
info  2022-09-13 18:10:58: Configuring '0x9035eafffecc7967'
info  2022-09-13 18:10:58: MQTT publish: topic 'zigbee2mqtt/bridge/log', payload '{"message":"interview_successful","meta":{"description":"Zigbee smart dimmer","friendly_name":"0x9035eafffecc7967","model":"TS0601_dimmer","supported":true,"vendor":"TuYa"},"type":"pairing"}'
info  2022-09-13 18:10:58: MQTT publish: topic 'homeassistant/light/0x9035eafffecc7967/light/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"brightness":true,"brightness_scale":254,"command_topic":"zigbee2mqtt/0x9035eafffecc7967/set","device":{"identifiers":["zigbee2mqtt_0x9035eafffecc7967"],"manufacturer":"TuYa","model":"Zigbee smart dimmer (TS0601_dimmer)","name":"0x9035eafffecc7967"},"json_attributes_topic":"zigbee2mqtt/0x9035eafffecc7967","name":"0x9035eafffecc7967","schema":"json","state_topic":"zigbee2mqtt/0x9035eafffecc7967","unique_id":"0x9035eafffecc7967_light_zigbee2mqtt"}'
info  2022-09-13 18:10:58: MQTT publish: topic 'homeassistant/sensor/0x9035eafffecc7967/linkquality/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x9035eafffecc7967"],"manufacturer":"TuYa","model":"Zigbee smart dimmer (TS0601_dimmer)","name":"0x9035eafffecc7967"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/0x9035eafffecc7967","name":"0x9035eafffecc7967 linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/0x9035eafffecc7967","unique_id":"0x9035eafffecc7967_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
debug 2022-09-13 18:10:58: Received MQTT message on 'homeassistant/light/0x9035eafffecc7967/light/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"brightness":true,"brightness_scale":254,"command_topic":"zigbee2mqtt/0x9035eafffecc7967/set","device":{"identifiers":["zigbee2mqtt_0x9035eafffecc7967"],"manufacturer":"TuYa","model":"Zigbee smart dimmer (TS0601_dimmer)","name":"0x9035eafffecc7967"},"json_attributes_topic":"zigbee2mqtt/0x9035eafffecc7967","name":"0x9035eafffecc7967","schema":"json","state_topic":"zigbee2mqtt/0x9035eafffecc7967","unique_id":"0x9035eafffecc7967_light_zigbee2mqtt"}'
debug 2022-09-13 18:10:58: Received MQTT message on 'homeassistant/sensor/0x9035eafffecc7967/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x9035eafffecc7967"],"manufacturer":"TuYa","model":"Zigbee smart dimmer (TS0601_dimmer)","name":"0x9035eafffecc7967"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/0x9035eafffecc7967","name":"0x9035eafffecc7967 linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/0x9035eafffecc7967","unique_id":"0x9035eafffecc7967_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
info  2022-09-13 18:10:58: Successfully configured '0x9035eafffecc7967'
debug 2022-09-13 18:10:59: Received Zigbee message from 'Study Motion Sensor', type 'commandStatusChangeNotification', cluster 'ssIasZone', data '{"extendedstatus":0,"zonestatus":32}' from endpoint 1 with groupID null
info  2022-09-13 18:10:59: MQTT publish: topic 'zigbee2mqtt/Study Motion Sensor', payload '{"battery":100,"battery_low":false,"linkquality":100,"occupancy":false,"tamper":false,"temperature":22.29,"voltage":2900}'
debug 2022-09-13 18:11:00: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":4864}' from endpoint 1 with groupID null
info  2022-09-13 18:11:00: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:00: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,23],"type":"Buffer"},"datatype":2,"dp":2}],"seq":5120}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:00: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,3,23]}}': type='commandDataResponse', datatype='value', value='791', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-13 18:11:00: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":200,"level":791,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:00: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":5376}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:00: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #3 with invalid value 1 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-13 18:11:00: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-2,"level":1,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:00: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":5632}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:00: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
warn  2022-09-13 18:11:00: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #4 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-13 18:11:00: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":5888}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:00: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #5 from 0x9035eafffecc7967 with raw data '{"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,24]}}': type='commandDataResponse', datatype='value', value='24', known DP# usage: ["fanMode","dimmerMaxLevel","motorDirection","config","moesSboostHeatingCountdown","neoAOVolume","silvercrestSetColor","lidlTimer","haozeeBoostHeatingCountdown","evanellLocalTemp","AM02Direction"]
info  2022-09-13 18:11:00: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"level":24,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:00: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":6144}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:00: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
warn  2022-09-13 18:11:00: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #6 with invalid value 0 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-13 18:11:00: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:00: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":6400}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:00: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
warn  2022-09-13 18:11:00: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-13 18:11:02: Received Zigbee message from 'Back Lounge Blinds 4', type 'raw', cluster '64528', data '{"data":[13,99,18,36,128,81,0,0,0,0,2,0,0,0,157,54,65,0,0,176,65,0,255,173,1,127,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-13 18:11:02: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,36,128,81,0,0,0,0,2,0,0,0,157,54,65,0,0,176,65,0,255,173,1,127,0],"type":"Buffer"}'
debug 2022-09-13 18:11:02: Received Zigbee message from '0x9035eafffecc7967', type 'read', cluster 'genTime', data '["localTime"]' from endpoint 1 with groupID null
debug 2022-09-13 18:11:02: Received Zigbee message from 'Study Motion Sensor', type 'commandStatusChangeNotification', cluster 'ssIasZone', data '{"extendedstatus":0,"zonestatus":33}' from endpoint 1 with groupID null
info  2022-09-13 18:11:02: MQTT publish: topic 'zigbee2mqtt/Study Motion Sensor', payload '{"battery":100,"battery_low":false,"linkquality":224,"occupancy":true,"tamper":false,"temperature":22.29,"voltage":2900}'
debug 2022-09-13 18:11:06: Received Zigbee message from '0x9035eafffecc7967', type 'commandMcuSyncTime', cluster 'manuSpecificTuya', data '{"payloadSize":2048}' from endpoint 1 with groupID null
debug 2022-09-13 18:11:06: No converter available for 'TS0601_dimmer' with cluster 'manuSpecificTuya' and type 'commandMcuSyncTime' and data '{"payloadSize":2048}'
debug 2022-09-13 18:11:08: Received Zigbee message from '0x9035eafffecc7967', type 'attributeReport', cluster 'genBasic', data '{"65506":31,"65508":0,"appVersion":68}' from endpoint 1 with groupID null
debug 2022-09-13 18:11:09: Received Zigbee message from '0x9035eafffecc7967', type 'attributeReport', cluster 'genBasic', data '{"65503":"v��*\u0013\u0004��*\u0012\u0005��*\u0012\u0000\u0000\u0000\u0000\u0007\u0000\u0000\u0000\u0000\u0012\u0000\u0000\u0000\u0000\u0012"}' from endpoint 1 with groupID null
debug 2022-09-13 18:11:09: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":2048}' from endpoint 1 with groupID null
info  2022-09-13 18:11:09: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:09: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,23],"type":"Buffer"},"datatype":2,"dp":2}],"seq":2304}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:09: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,3,23]}}': type='commandDataResponse', datatype='value', value='791', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-13 18:11:09: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":200,"level":791,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:09: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":2560}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:09: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #3 with invalid value 1 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-13 18:11:09: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-2,"level":1,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:09: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":2816}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:09: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
warn  2022-09-13 18:11:09: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #4 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-13 18:11:09: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":3072}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:09: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #5 from 0x9035eafffecc7967 with raw data '{"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,24]}}': type='commandDataResponse', datatype='value', value='24', known DP# usage: ["fanMode","dimmerMaxLevel","motorDirection","config","moesSboostHeatingCountdown","neoAOVolume","silvercrestSetColor","lidlTimer","haozeeBoostHeatingCountdown","evanellLocalTemp","AM02Direction"]
info  2022-09-13 18:11:09: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"level":24,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:09: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":3328}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:09: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
warn  2022-09-13 18:11:09: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #6 with invalid value 0 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-13 18:11:09: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:09: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":3584}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:09: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
warn  2022-09-13 18:11:09: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-13 18:11:11: Received Zigbee message from 'Back Lounge Blinds 2', type 'raw', cluster '64528', data '{"data":[13,99,18,27,128,79,202,226,128,254,2,0,0,0,232,135,64,0,0,173,65,0,255,174,1,127,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-13 18:11:11: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,27,128,79,202,226,128,254,2,0,0,0,232,135,64,0,0,173,65,0,255,174,1,127,0],"type":"Buffer"}'
debug 2022-09-13 18:11:16: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"brightness":129}'
debug 2022-09-13 18:11:16: Publishing 'set' 'brightness' to '0x9035eafffecc7967'
debug 2022-09-13 18:11:16: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,1,252],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:16: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,1,252]}}': type='commandDataResponse', datatype='value', value='508', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-13 18:11:16: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":128,"level":508,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:16: Received Zigbee message from 'Front Lounge Blinds 2', type 'raw', cluster '64528', data '{"data":[13,99,18,32,128,190,0,0,0,0,2,0,0,0,240,75,64,0,0,172,65,0,255,202,1,126,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-13 18:11:16: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,32,128,190,0,0,0,0,2,0,0,0,240,75,64,0,0,172,65,0,255,202,1,126,0],"type":"Buffer"}'
debug 2022-09-13 18:11:18: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-13 18:11:18: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":128,"level":508,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:18: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,1,244],"type":"Buffer"},"datatype":2,"dp":2}],"seq":257}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:18: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,1,244]}}': type='commandDataResponse', datatype='value', value='500', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-13 18:11:18: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":126,"level":500,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:18: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":513}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:18: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #3 with invalid value 1 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-13 18:11:18: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-2,"level":1,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:18: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":769}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:18: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
warn  2022-09-13 18:11:18: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #4 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-13 18:11:18: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":1025}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:18: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #5 from 0x9035eafffecc7967 with raw data '{"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,24]}}': type='commandDataResponse', datatype='value', value='24', known DP# usage: ["fanMode","dimmerMaxLevel","motorDirection","config","moesSboostHeatingCountdown","neoAOVolume","silvercrestSetColor","lidlTimer","haozeeBoostHeatingCountdown","evanellLocalTemp","AM02Direction"]
info  2022-09-13 18:11:18: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"level":24,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:18: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":1281}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:18: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
warn  2022-09-13 18:11:18: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #6 with invalid value 0 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-13 18:11:18: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:18: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":1537}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:18: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
warn  2022-09-13 18:11:18: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-13 18:11:19: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"brightness":63}'
debug 2022-09-13 18:11:19: Publishing 'set' 'brightness' to '0x9035eafffecc7967'
debug 2022-09-13 18:11:19: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,248],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:19: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,248]}}': type='commandDataResponse', datatype='value', value='248', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-13 18:11:19: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":61,"level":248,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:20: Received Zigbee message from 'Front Lounge Blinds 2', type 'raw', cluster '64528', data '{"data":[13,99,18,32,128,190,0,0,0,0,2,0,0,0,240,75,64,0,0,172,65,0,255,202,1,126,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-13 18:11:20: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,32,128,190,0,0,0,0,2,0,0,0,240,75,64,0,0,172,65,0,255,202,1,126,0],"type":"Buffer"}'
debug 2022-09-13 18:11:22: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-13 18:11:22: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":61,"level":248,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:22: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,208],"type":"Buffer"},"datatype":2,"dp":2}],"seq":257}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:22: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,208]}}': type='commandDataResponse', datatype='value', value='208', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-13 18:11:22: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":51,"level":208,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:22: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":513}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:22: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #3 with invalid value 1 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-13 18:11:22: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-2,"level":1,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:22: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":769}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:22: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
warn  2022-09-13 18:11:22: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #4 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-13 18:11:22: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":1025}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:22: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #5 from 0x9035eafffecc7967 with raw data '{"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,24]}}': type='commandDataResponse', datatype='value', value='24', known DP# usage: ["fanMode","dimmerMaxLevel","motorDirection","config","moesSboostHeatingCountdown","neoAOVolume","silvercrestSetColor","lidlTimer","haozeeBoostHeatingCountdown","evanellLocalTemp","AM02Direction"]
info  2022-09-13 18:11:22: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"level":24,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:22: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":1281}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:22: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
warn  2022-09-13 18:11:22: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #6 with invalid value 0 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-13 18:11:22: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:22: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":1537}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:22: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
warn  2022-09-13 18:11:22: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-13 18:11:22: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"brightness":161}'
debug 2022-09-13 18:11:22: Publishing 'set' 'brightness' to '0x9035eafffecc7967'
debug 2022-09-13 18:11:23: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,122],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:23: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,2,122]}}': type='commandDataResponse', datatype='value', value='634', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-13 18:11:23: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":160,"level":634,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:25: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-13 18:11:25: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":160,"level":634,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:25: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,113],"type":"Buffer"},"datatype":2,"dp":2}],"seq":257}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:25: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,2,113]}}': type='commandDataResponse', datatype='value', value='625', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-13 18:11:25: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":158,"level":625,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:25: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":513}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:25: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #3 with invalid value 1 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-13 18:11:25: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-2,"level":1,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:25: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":769}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:25: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
warn  2022-09-13 18:11:25: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #4 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-13 18:11:25: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":1025}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:25: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #5 from 0x9035eafffecc7967 with raw data '{"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,24]}}': type='commandDataResponse', datatype='value', value='24', known DP# usage: ["fanMode","dimmerMaxLevel","motorDirection","config","moesSboostHeatingCountdown","neoAOVolume","silvercrestSetColor","lidlTimer","haozeeBoostHeatingCountdown","evanellLocalTemp","AM02Direction"]
info  2022-09-13 18:11:25: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"level":24,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:25: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":1281}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:25: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
warn  2022-09-13 18:11:25: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #6 with invalid value 0 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-13 18:11:25: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:25: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":1537}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:25: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
warn  2022-09-13 18:11:25: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-13 18:11:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1537}' from endpoint 1 with groupID null
info  2022-09-13 18:11:34: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:34: Received Zigbee message from 'Back Lounge Blinds 1', type 'raw', cluster '64528', data '{"data":[13,99,18,64,128,82,0,0,0,0,2,0,0,0,0,24,63,0,0,175,65,0,255,197,1,126,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-13 18:11:34: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,64,128,82,0,0,0,0,2,0,0,0,0,24,63,0,0,175,65,0,255,197,1,126,0],"type":"Buffer"}'
debug 2022-09-13 18:11:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,113],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1793}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:34: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #2 from 0x9035eafffecc7967 with raw data '{"dp":2,"datatype":2,"data":{"type":"Buffer","data":[0,0,2,113]}}': type='commandDataResponse', datatype='value', value='625', known DP# usage: ["heatingSetpoint","coverPosition","eardaDimmerLevel","moesHold","moesSheatingSetpoint","silvercrestChangeMode","tuyaSabCO2","tuyaSahkMP25","tuyaSabCO","moes105DimmerLevel1","trsSensitivity","trsfSensitivity","tvMode","haozeeHeatingSetpoint","nousHumidity","tthHumidity","tIlluminanceLux","evanellMode","AM02PercentControl","x5hMode","connecteMode","tshpscSensitivity","alectoSmokeValue"]
info  2022-09-13 18:11:34: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":158,"level":625,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":2049}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:34: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #3 with invalid value 1 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-13 18:11:34: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-2,"level":1,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":2305}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:34: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
warn  2022-09-13 18:11:34: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #4 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-13 18:11:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":2561}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:34: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #5 from 0x9035eafffecc7967 with raw data '{"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,24]}}': type='commandDataResponse', datatype='value', value='24', known DP# usage: ["fanMode","dimmerMaxLevel","motorDirection","config","moesSboostHeatingCountdown","neoAOVolume","silvercrestSetColor","lidlTimer","haozeeBoostHeatingCountdown","evanellLocalTemp","AM02Direction"]
info  2022-09-13 18:11:34: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"level":24,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":2817}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:34: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
warn  2022-09-13 18:11:34: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #6 with invalid value 0 for brightness from 0x9035eafffecc7967 which is outside the expected range from 10 to 1000
info  2022-09-13 18:11:34: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":-3,"level":0,"linkquality":255,"state":"ON"}'
debug 2022-09-13 18:11:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":3073}' from endpoint 1 with groupID null
warn  2022-09-13 18:11:34: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
warn  2022-09-13 18:11:34: zigbee-herdsman-converters:tuya_dimmer: Received Tuya DataPoint #14 with unexpected datatype from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum' (instead of 'undefined'), value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]

@Koenkk
Copy link
Owner

Koenkk commented Sep 13, 2022

So it seems this device uses a different data point, to find out you need a TuYa bridge and follow: https://www.zigbee2mqtt.io/advanced/support-new-devices/03_find_tuya_data_points.html#requirements-and-caveats

@benflux
Copy link

benflux commented Sep 13, 2022

I'm happy to go buy a bridge if nobody else has one...

@shanelord01
Copy link

I just bought one. Will be here in 2 days.

@shanelord01
Copy link

So it seems this device uses a different data point, to find out you need a TuYa bridge and follow: https://www.zigbee2mqtt.io/advanced/support-new-devices/03_find_tuya_data_points.html#requirements-and-caveats

Here you go!

========================================
# Switch1
#

{startRowId: "", pageNo: 1, pageSize: 10, code: "1", startTime: 1663043163748, endTime: 1663215963749,…}
code
: 
"1"
deviceId
: 
"bf086bbf425e7ff5cdppvp"
endTime
: 
1663215963749
pageNo
: 
1
pageSize
: 
10
pageStartRow
: 
""
projectCode
: 
"p1624331325472a3e7qk"
region
: 
"EU"
sourceId
: 
"eu1598151012762yUZE1"
sourceType
: 
"4"
startRowId
: 
""
startTime
: 
1663043163748

========================================
#Brightness1
#

{startRowId: "", pageNo: 1, pageSize: 10, code: "2", startTime: 1663043224334, endTime: 1663216024334,…}
code
: 
"2"
deviceId
: 
"bf086bbf425e7ff5cdppvp"
endTime
: 
1663216024334
pageNo
: 
1
pageSize
: 
10
pageStartRow
: 
""
projectCode
: 
"p1624331325472a3e7qk"
region
: 
"EU"
sourceId
: 
"eu1598151012762yUZE1"
sourceType
: 
"4"
startRowId
: 
""
startTime
: 
1663043224334

========================================
# Minimum brightness1
#

{startRowId: "", pageNo: 1, pageSize: 10, code: "3", startTime: 1663043299929, endTime: 1663216099929,…}
code
: 
"3"
deviceId
: 
"bf086bbf425e7ff5cdppvp"
endTime
: 
1663216099929
pageNo
: 
1
pageSize
: 
10
pageStartRow
: 
""
projectCode
: 
"p1624331325472a3e7qk"
region
: 
"EU"
sourceId
: 
"eu1598151012762yUZE1"
sourceType
: 
"4"
startRowId
: 
""
startTime
: 
1663043299929

========================================
# Type of light source1
#

{startRowId: "", pageNo: 1, pageSize: 10, code: "4", startTime: 1663043325401, endTime: 1663216125402,…}
code
: 
"4"
deviceId
: 
"bf086bbf425e7ff5cdppvp"
endTime
: 
1663216125402
pageNo
: 
1
pageSize
: 
10
pageStartRow
: 
""
projectCode
: 
"p1624331325472a3e7qk"
region
: 
"EU"
sourceId
: 
"eu1598151012762yUZE1"
sourceType
: 
"4"
startRowId
: 
""
startTime
: 
1663043325401

========================================
# Maximum brightness1
#

{startRowId: "", pageNo: 1, pageSize: 10, code: "5", startTime: 1663043346205, endTime: 1663216146206,…}
code
: 
"5"
deviceId
: 
"bf086bbf425e7ff5cdppvp"
endTime
: 
1663216146206
pageNo
: 
1
pageSize
: 
10
pageStartRow
: 
""
projectCode
: 
"p1624331325472a3e7qk"
region
: 
"EU"
sourceId
: 
"eu1598151012762yUZE1"
sourceType
: 
"4"
startRowId
: 
""
startTime
: 
1663043346205

========================================
# Countdown1
#

{startRowId: "", pageNo: 1, pageSize: 10, code: "6", startTime: 1663043364581, endTime: 1663216164581,…}
code
: 
"6"
deviceId
: 
"bf086bbf425e7ff5cdppvp"
endTime
: 
1663216164581
pageNo
: 
1
pageSize
: 
10
pageStartRow
: 
""
projectCode
: 
"p1624331325472a3e7qk"
region
: 
"EU"
sourceId
: 
"eu1598151012762yUZE1"
sourceType
: 
"4"
startRowId
: 
""
startTime
: 
1663043364581

========================================
# Power-on Status Setting
#

{startRowId: "", pageNo: 1, pageSize: 10, code: "14", startTime: 1663043388195, endTime: 1663216188196,…}
code
: 
"14"
deviceId
: 
"bf086bbf425e7ff5cdppvp"
endTime
: 
1663216188196
pageNo
: 
1
pageSize
: 
10
pageStartRow
: 
""
projectCode
: 
"p1624331325472a3e7qk"
region
: 
"EU"
sourceId
: 
"eu1598151012762yUZE1"
sourceType
: 
"4"
startRowId
: 
""
startTime
: 
1663043388195

========================================

@shanelord01
Copy link

Here is some extra info that may or may not help:

Screenshot 2022-09-15 144805
Screenshot 2022-09-15 144828

@Koenkk
Copy link
Owner

Koenkk commented Sep 15, 2022

Thanks, can you try with this external converter?

const fz = require('zigbee-herdsman-converters/converters/fromZigbee');
const tz = require('zigbee-herdsman-converters/converters/toZigbee');
const exposes = require('zigbee-herdsman-converters/lib/exposes');
const reporting = require('zigbee-herdsman-converters/lib/reporting');
const extend = require('zigbee-herdsman-converters/lib/extend');
const utils = require('zigbee-herdsman-converters/lib/utils');
const ota = require('zigbee-herdsman-converters/lib/ota');
const tuya = require('zigbee-herdsman-converters/lib/tuya');
const e = exposes.presets;
const ea = exposes.access;

const tzLocal = {
    tuya_dimmer_level: {
        key: ['brightness_min', 'min_brightness', 'max_brightness', 'brightness', 'brightness_percent', 'level'],
        convertSet: async (entity, key, value, meta) => {
            // upscale to 1000
            let newValue;
            let dp = tuya.dataPoints.dimmerLevel;
            if (['_TZE200_3p5ydos3', '_TZE200_9i9dt8is', '_TZE200_dfxkcots', '_TZE200_w4cryh2i', '_TZE200_1agwnems'].includes(meta.device.manufacturerName)) {
                dp = tuya.dataPoints.eardaDimmerLevel;
            }
            if (key === 'brightness_min') {
                if (value >= 0 && value <= 100) {
                    newValue = utils.mapNumberRange(value, 0, 100, 0, 1000);
                    dp = tuya.dataPoints.dimmerLevel;
                } else {
                    throw new Error('Dimmer brightness_min is out of range 0..100');
                }
            } else if (key === 'min_brightness') {
                if (value >= 1 && value <= 255) {
                    newValue = utils.mapNumberRange(value, 1, 255, 0, 1000);
                    dp = tuya.dataPoints.dimmerMinLevel;
                } else {
                    throw new Error('Dimmer min_brightness is out of range 1..255');
                }
            } else if (key === 'max_brightness') {
                if (value >= 1 && value <= 255) {
                    newValue = utils.mapNumberRange(value, 1, 255, 0, 1000);
                    dp = tuya.dataPoints.dimmerMaxLevel;
                } else {
                    throw new Error('Dimmer min_brightness is out of range 1..255');
                }
            } else if (key === 'level') {
                if (value >= 0 && value <= 1000) {
                    newValue = Math.round(Number(value));
                } else {
                    throw new Error('Dimmer level is out of range 0..1000');
                }
            } else if (key === 'brightness_percent') {
                if (value >= 0 && value <= 100) {
                    newValue = utils.mapNumberRange(value, 0, 100, 0, 1000);
                } else {
                    throw new Error('Dimmer brightness_percent is out of range 0..100');
                }
            } else { // brightness
                if (value >= 0 && value <= 254) {
                    newValue = utils.mapNumberRange(value, 0, 254, 0, 1000);
                } else {
                    throw new Error('Dimmer brightness is out of range 0..254');
                }
            }
            // Always use same transid as tuya_dimmer_state (https://github.com/Koenkk/zigbee2mqtt/issues/6366)
            await tuya.sendDataPointValue(entity, dp, newValue, 'dataRequest', 1);
        },
    }
}

const fzLocal = {
    tuya_dimmer: {
        cluster: 'manuSpecificTuya',
        type: ['commandDataResponse', 'commandDataReport'],
        convert: (model, msg, publish, options, meta) => {
            const dpValue = tuya.firstDpValue(msg, meta, 'tuya_dimmer');
            const value = tuya.getDataValue(dpValue);
            if (dpValue.dp === tuya.dataPoints.state) {
                return {state: value ? 'ON': 'OFF'};
            } else if (meta.device.manufacturerName === '_TZE200_swaamsoy') {
                // https://github.com/Koenkk/zigbee-herdsman-converters/pull/3004
                if (dpValue.dp === 2) {
                    if (value < 10) {
                        tuya.logUnexpectedDataValue('tuya_dimmer', msg, dpValue, meta, 'brightness', 10, 1000);
                    }
                    return {brightness: utils.mapNumberRange(value, 10, 1000, 0, 254)};
                }
            } else if (['_TZE200_3p5ydos3', '_TZE200_9i9dt8is', '_TZE200_dfxkcots', '_TZE200_w4cryh2i', '_TZE200_1agwnems']
                .includes(meta.device.manufacturerName)) {
                if (dpValue.dp === tuya.dataPoints.eardaDimmerLevel) {
                    return {brightness: utils.mapNumberRange(value, 0, 1000, 0, 254)};
                } else if (dpValue.dp === tuya.dataPoints.dimmerMinLevel) {
                    return {min_brightness: utils.mapNumberRange(value, 0, 1000, 1, 255)};
                } else if (dpValue.dp === tuya.dataPoints.dimmerMaxLevel) {
                    return {max_brightness: utils.mapNumberRange(value, 0, 1000, 1, 255)};
                } else {
                    tuya.logUnexpectedDataPoint('tuya_dimmer', msg, dpValue, meta);
                }
            } else {
                if (dpValue.dp !== tuya.dataPoints.dimmerLevel) {
                    tuya.logUnexpectedDataPoint('tuya_dimmer', msg, dpValue, meta);
                }
                if (dpValue.datatype !== tuya.dataTypes.value) {
                    tuya.logUnexpectedDataType('tuya_dimmer', msg, dpValue, meta);
                } else {
                    if (value < 10) {
                        tuya.logUnexpectedDataValue('tuya_dimmer', msg, dpValue, meta, 'brightness', 10, 1000);
                    }
                    return {brightness: utils.mapNumberRange(value, 10, 1000, 0, 254), level: value};
                }
            }
        },
    }
}

const definition = {
    fingerprint: [
        {modelID: 'TS0601', manufacturerName: '_TZE200_1agwnems'},
    ],
    model: 'TS0601_dimmer',
    vendor: 'TuYa',
    description: 'Zigbee smart dimmer',
    fromZigbee: [fzLocal.tuya_dimmer, fz.ignore_basic_report],
    toZigbee: [tz.tuya_dimmer_state, tzLocal.tuya_dimmer_level],
    configure: async (device, coordinatorEndpoint, logger) => {
        const endpoint = device.getEndpoint(1);
        await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff', 'genLevelCtrl']);
    },
    exposes: [e.light_brightness().withMinBrightness().withMaxBrightness().setAccess(
        'state', ea.STATE_SET).setAccess('brightness', ea.STATE_SET).setAccess(
        'min_brightness', ea.STATE_SET).setAccess('max_brightness', ea.STATE_SET)],
    whiteLabel: [
        {vendor: 'Larkkey', model: 'ZSTY-SM-1DMZG-EU'},
        {vendor: 'Earda', model: 'EDM-1ZAA-EU'},
        {vendor: 'Earda', model: 'EDM-1ZAB-EU'},
        {vendor: 'Earda', model: 'EDM-1ZBA-EU'},
        {vendor: 'Mercator Ikuü', model: 'SSWD01'},
        {vendor: 'Moes', model: 'ZS-USD'},
    ],
};

module.exports = definition;

@shanelord01
Copy link

Seems like more green popups than red, but still errors and no dimming.

info  2022-09-15 19:17:09: Zigbee: allowing new devices to join.
info  2022-09-15 19:17:09: MQTT publish: topic 'zigbee2mqtt/bridge/response/permit_join', payload '{"data":{"time":254,"value":true},"status":"ok","transaction":"m6rbn-1"}'
debug 2022-09-15 19:17:10: Received Zigbee message from 'Study Motion Sensor', type 'commandStatusChangeNotification', cluster 'ssIasZone', data '{"extendedstatus":0,"zonestatus":33}' from endpoint 1 with groupID null
info  2022-09-15 19:17:10: MQTT publish: topic 'zigbee2mqtt/Study Motion Sensor', payload '{"battery":80,"battery_low":false,"linkquality":184,"occupancy":true,"tamper":false,"temperature":23.37,"voltage":2900}'
debug 2022-09-15 19:17:12: Received Zigbee message from 'Front Lounge Blinds 1', type 'raw', cluster '64528', data '{"data":[13,99,18,9,128,187,0,0,0,0,2,0,1,0,0,0,61,0,0,180,65,0,255,82,1,61,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-15 19:17:12: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,9,128,187,0,0,0,0,2,0,1,0,0,0,61,0,0,180,65,0,255,82,1,61,0],"type":"Buffer"}'
debug 2022-09-15 19:17:16: Received Zigbee message from 'Back Lounge Blinds 4', type 'raw', cluster '64528', data '{"data":[13,99,18,90,128,80,0,0,0,0,2,0,0,0,157,55,65,0,0,182,65,0,255,103,1,61,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-15 19:17:16: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,90,128,80,0,0,0,0,2,0,0,0,157,55,65,0,0,182,65,0,255,103,1,61,0],"type":"Buffer"}'
debug 2022-09-15 19:17:17: Received Zigbee message from 'Sunroom Downlight', type 'commandQueryNextImageRequest', cluster 'genOta', data '{"fieldControl":0,"fileVersion":1,"imageType":269,"manufacturerCode":4478}' from endpoint 1 with groupID null
debug 2022-09-15 19:17:17: Device 'Sunroom Downlight' requested OTA
debug 2022-09-15 19:17:24: Received Zigbee message from 'Back Lounge Blinds 2', type 'raw', cluster '64528', data '{"data":[13,99,18,80,128,78,202,226,128,254,2,0,0,0,226,160,64,0,0,183,65,0,255,135,1,62,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-15 19:17:24: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,80,128,78,202,226,128,254,2,0,0,0,226,160,64,0,0,183,65,0,255,135,1,62,0],"type":"Buffer"}'
debug 2022-09-15 19:17:30: Received Zigbee message from 'Back Lounge Blinds 1', type 'raw', cluster '64528', data '{"data":[13,99,18,115,128,81,0,0,0,0,2,0,0,0,244,29,64,0,0,182,65,0,255,169,1,61,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-15 19:17:30: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,115,128,81,0,0,0,0,2,0,0,0,244,29,64,0,0,182,65,0,255,169,1,61,0],"type":"Buffer"}'
info  2022-09-15 19:17:30: Device '0x9035eafffecc7967' joined
info  2022-09-15 19:17:31: MQTT publish: topic 'zigbee2mqtt/bridge/event', payload '{"data":{"friendly_name":"0x9035eafffecc7967","ieee_address":"0x9035eafffecc7967"},"type":"device_joined"}'
info  2022-09-15 19:17:31: MQTT publish: topic 'zigbee2mqtt/bridge/log', payload '{"message":{"friendly_name":"0x9035eafffecc7967"},"type":"device_connected"}'
info  2022-09-15 19:17:31: Starting interview of '0x9035eafffecc7967'
info  2022-09-15 19:17:31: MQTT publish: topic 'zigbee2mqtt/bridge/event', payload '{"data":{"friendly_name":"0x9035eafffecc7967","ieee_address":"0x9035eafffecc7967","status":"started"},"type":"device_interview"}'
info  2022-09-15 19:17:31: MQTT publish: topic 'zigbee2mqtt/bridge/log', payload '{"message":"interview_started","meta":{"friendly_name":"0x9035eafffecc7967"},"type":"pairing"}'
debug 2022-09-15 19:17:31: Received Zigbee message from '0x9035eafffecc7967', type 'readResponse', cluster 'genBasic', data '{"manufacturerName":"_TZE200_1agwnems","modelId":"TS0601"}' from endpoint 1 with groupID null
debug 2022-09-15 19:17:31: Skipping message, definition is undefined and still interviewing
debug 2022-09-15 19:17:31: Received Zigbee message from '0x9035eafffecc7967', type 'readResponse', cluster 'genBasic', data '{"powerSource":1}' from endpoint 1 with groupID null
debug 2022-09-15 19:17:31: Skipping message, definition is undefined and still interviewing
debug 2022-09-15 19:17:32: Received Zigbee message from '0x9035eafffecc7967', type 'readResponse', cluster 'genBasic', data '{"zclVersion":3}' from endpoint 1 with groupID null
debug 2022-09-15 19:17:32: Skipping message, definition is undefined and still interviewing
debug 2022-09-15 19:17:32: Received Zigbee message from '0x9035eafffecc7967', type 'readResponse', cluster 'genBasic', data '{"appVersion":68}' from endpoint 1 with groupID null
debug 2022-09-15 19:17:32: Skipping message, definition is undefined and still interviewing
debug 2022-09-15 19:17:32: Received Zigbee message from '0x9035eafffecc7967', type 'readResponse', cluster 'genBasic', data '{"stackVersion":0}' from endpoint 1 with groupID null
debug 2022-09-15 19:17:32: Skipping message, definition is undefined and still interviewing
debug 2022-09-15 19:17:32: Received Zigbee message from '0x9035eafffecc7967', type 'readResponse', cluster 'genBasic', data '{"hwVersion":1}' from endpoint 1 with groupID null
debug 2022-09-15 19:17:32: Skipping message, definition is undefined and still interviewing
debug 2022-09-15 19:17:32: Received Zigbee message from '0x9035eafffecc7967', type 'readResponse', cluster 'genBasic', data '{"dateCode":""}' from endpoint 1 with groupID null
debug 2022-09-15 19:17:32: Skipping message, definition is undefined and still interviewing
debug 2022-09-15 19:17:32: Received Zigbee message from '0x9035eafffecc7967', type 'readResponse', cluster 'genBasic', data '{}' from endpoint 1 with groupID null
debug 2022-09-15 19:17:32: Skipping message, definition is undefined and still interviewing
info  2022-09-15 19:17:32: Successfully interviewed '0x9035eafffecc7967', device has successfully been paired
info  2022-09-15 19:17:32: Device '0x9035eafffecc7967' is supported, identified as: TuYa Zigbee smart dimmer (TS0601_dimmer)
info  2022-09-15 19:17:32: MQTT publish: topic 'zigbee2mqtt/bridge/event', payload '{"data":{"definition":{"description":"Zigbee smart dimmer","exposes":[{"features":[{"access":3,"description":"On/off state of this light","name":"state","property":"state","type":"binary","value_off":"OFF","value_on":"ON","value_toggle":"TOGGLE"},{"access":3,"description":"Brightness of this light","name":"brightness","property":"brightness","type":"numeric","value_max":254,"value_min":0},{"access":3,"description":"Minimum light brightness","name":"min_brightness","property":"min_brightness","type":"numeric","value_max":255,"value_min":1},{"access":3,"description":"Maximum light brightness","name":"max_brightness","property":"max_brightness","type":"numeric","value_max":255,"value_min":1}],"type":"light"},{"access":1,"description":"Link quality (signal strength)","name":"linkquality","property":"linkquality","type":"numeric","unit":"lqi","value_max":255,"value_min":0}],"model":"TS0601_dimmer","options":[],"supports_ota":false,"vendor":"TuYa"},"friendly_name":"0x9035eafffecc7967","ieee_address":"0x9035eafffecc7967","status":"successful","supported":true},"type":"device_interview"}'
info  2022-09-15 19:17:32: Configuring '0x9035eafffecc7967'
info  2022-09-15 19:17:32: MQTT publish: topic 'zigbee2mqtt/bridge/log', payload '{"message":"interview_successful","meta":{"description":"Zigbee smart dimmer","friendly_name":"0x9035eafffecc7967","model":"TS0601_dimmer","supported":true,"vendor":"TuYa"},"type":"pairing"}'
info  2022-09-15 19:17:32: MQTT publish: topic 'homeassistant/light/0x9035eafffecc7967/light/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"brightness":true,"brightness_scale":254,"command_topic":"zigbee2mqtt/0x9035eafffecc7967/set","device":{"identifiers":["zigbee2mqtt_0x9035eafffecc7967"],"manufacturer":"TuYa","model":"Zigbee smart dimmer (TS0601_dimmer)","name":"0x9035eafffecc7967"},"json_attributes_topic":"zigbee2mqtt/0x9035eafffecc7967","name":"0x9035eafffecc7967","schema":"json","state_topic":"zigbee2mqtt/0x9035eafffecc7967","unique_id":"0x9035eafffecc7967_light_zigbee2mqtt"}'
info  2022-09-15 19:17:32: MQTT publish: topic 'homeassistant/sensor/0x9035eafffecc7967/linkquality/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x9035eafffecc7967"],"manufacturer":"TuYa","model":"Zigbee smart dimmer (TS0601_dimmer)","name":"0x9035eafffecc7967"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/0x9035eafffecc7967","name":"0x9035eafffecc7967 linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/0x9035eafffecc7967","unique_id":"0x9035eafffecc7967_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
debug 2022-09-15 19:17:32: Received MQTT message on 'homeassistant/light/0x9035eafffecc7967/light/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"brightness":true,"brightness_scale":254,"command_topic":"zigbee2mqtt/0x9035eafffecc7967/set","device":{"identifiers":["zigbee2mqtt_0x9035eafffecc7967"],"manufacturer":"TuYa","model":"Zigbee smart dimmer (TS0601_dimmer)","name":"0x9035eafffecc7967"},"json_attributes_topic":"zigbee2mqtt/0x9035eafffecc7967","name":"0x9035eafffecc7967","schema":"json","state_topic":"zigbee2mqtt/0x9035eafffecc7967","unique_id":"0x9035eafffecc7967_light_zigbee2mqtt"}'
debug 2022-09-15 19:17:32: Received MQTT message on 'homeassistant/sensor/0x9035eafffecc7967/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x9035eafffecc7967"],"manufacturer":"TuYa","model":"Zigbee smart dimmer (TS0601_dimmer)","name":"0x9035eafffecc7967"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/0x9035eafffecc7967","name":"0x9035eafffecc7967 linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/0x9035eafffecc7967","unique_id":"0x9035eafffecc7967_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
info  2022-09-15 19:17:33: Successfully configured '0x9035eafffecc7967'
debug 2022-09-15 19:17:33: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":46848}' from endpoint 1 with groupID null
info  2022-09-15 19:17:33: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"linkquality":255,"state":"ON"}'
debug 2022-09-15 19:17:33: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":47104}' from endpoint 1 with groupID null
error 2022-09-15 19:17:33: Exception while calling fromZigbee converter: mapNumberRange is not defined}
debug 2022-09-15 19:17:34: ReferenceError: mapNumberRange is not defined
    at Object.convert (/app/dist/util/externally-loaded.js:88:41)
    at Receive.onDeviceMessage (/app/lib/extension/receive.ts:143:51)
    at EventEmitter.emit (node:events:539:35)
    at EventBus.emitDeviceMessage (/app/lib/eventBus.ts:102:22)
    at Controller.<anonymous> (/app/lib/zigbee.ts:106:27)
    at Controller.emit (node:events:527:28)
    at Controller.selfAndDeviceEmit (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:503:14)
    at Controller.onZclOrRawData (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:714:18)
    at DeconzAdapter.<anonymous> (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:144:70)
    at DeconzAdapter.emit (node:events:527:28)
debug 2022-09-15 19:17:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":47104}' from endpoint 1 with groupID null
error 2022-09-15 19:17:34: Exception while calling fromZigbee converter: mapNumberRange is not defined}
debug 2022-09-15 19:17:34: ReferenceError: mapNumberRange is not defined
    at Object.convert (/app/dist/util/externally-loaded.js:88:41)
    at Receive.onDeviceMessage (/app/lib/extension/receive.ts:143:51)
    at EventEmitter.emit (node:events:539:35)
    at EventBus.emitDeviceMessage (/app/lib/eventBus.ts:102:22)
    at Controller.<anonymous> (/app/lib/zigbee.ts:106:27)
    at Controller.emit (node:events:527:28)
    at Controller.selfAndDeviceEmit (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:503:14)
    at Controller.onZclOrRawData (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:714:18)
    at DeconzAdapter.<anonymous> (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:144:70)
    at DeconzAdapter.emit (node:events:527:28)
debug 2022-09-15 19:17:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":47360}' from endpoint 1 with groupID null
error 2022-09-15 19:17:34: Exception while calling fromZigbee converter: mapNumberRange is not defined}
debug 2022-09-15 19:17:34: ReferenceError: mapNumberRange is not defined
    at Object.convert (/app/dist/util/externally-loaded.js:90:45)
    at Receive.onDeviceMessage (/app/lib/extension/receive.ts:143:51)
    at EventEmitter.emit (node:events:539:35)
    at EventBus.emitDeviceMessage (/app/lib/eventBus.ts:102:22)
    at Controller.<anonymous> (/app/lib/zigbee.ts:106:27)
    at Controller.emit (node:events:527:28)
    at Controller.selfAndDeviceEmit (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:503:14)
    at Controller.onZclOrRawData (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:714:18)
    at DeconzAdapter.<anonymous> (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:144:70)
    at DeconzAdapter.emit (node:events:527:28)
debug 2022-09-15 19:17:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":47616}' from endpoint 1 with groupID null
warn  2022-09-15 19:17:34: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-15 19:17:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":47872}' from endpoint 1 with groupID null
error 2022-09-15 19:17:34: Exception while calling fromZigbee converter: mapNumberRange is not defined}
debug 2022-09-15 19:17:34: ReferenceError: mapNumberRange is not defined
    at Object.convert (/app/dist/util/externally-loaded.js:92:45)
    at Receive.onDeviceMessage (/app/lib/extension/receive.ts:143:51)
    at EventEmitter.emit (node:events:539:35)
    at EventBus.emitDeviceMessage (/app/lib/eventBus.ts:102:22)
    at Controller.<anonymous> (/app/lib/zigbee.ts:106:27)
    at Controller.emit (node:events:527:28)
    at Controller.selfAndDeviceEmit (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:503:14)
    at Controller.onZclOrRawData (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:714:18)
    at DeconzAdapter.<anonymous> (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:144:70)
    at DeconzAdapter.emit (node:events:527:28)
debug 2022-09-15 19:17:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":48128}' from endpoint 1 with groupID null
warn  2022-09-15 19:17:34: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-15 19:17:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":48128}' from endpoint 1 with groupID null
warn  2022-09-15 19:17:34: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-15 19:17:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":48384}' from endpoint 1 with groupID null
warn  2022-09-15 19:17:34: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-15 19:17:35: Received Zigbee message from 'Study Motion Sensor', type 'commandStatusChangeNotification', cluster 'ssIasZone', data '{"extendedstatus":0,"zonestatus":33}' from endpoint 1 with groupID null
info  2022-09-15 19:17:35: MQTT publish: topic 'zigbee2mqtt/Study Motion Sensor', payload '{"battery":80,"battery_low":false,"linkquality":152,"occupancy":true,"tamper":false,"temperature":23.37,"voltage":2900}'
debug 2022-09-15 19:17:36: Received Zigbee message from 'Study Motion Sensor', type 'commandStatusChangeNotification', cluster 'ssIasZone', data '{"extendedstatus":0,"zonestatus":32}' from endpoint 1 with groupID null
info  2022-09-15 19:17:36: MQTT publish: topic 'zigbee2mqtt/Study Motion Sensor', payload '{"battery":80,"battery_low":false,"linkquality":160,"occupancy":false,"tamper":false,"temperature":23.37,"voltage":2900}'
debug 2022-09-15 19:17:36: Received Zigbee message from '0x9035eafffecc7967', type 'read', cluster 'genTime', data '["localTime"]' from endpoint 1 with groupID null
debug 2022-09-15 19:17:41: Received Zigbee message from '0x9035eafffecc7967', type 'commandMcuSyncTime', cluster 'manuSpecificTuya', data '{"payloadSize":47104}' from endpoint 1 with groupID null
debug 2022-09-15 19:17:41: No converter available for 'TS0601_dimmer' with cluster 'manuSpecificTuya' and type 'commandMcuSyncTime' and data '{"payloadSize":47104}'
debug 2022-09-15 19:17:42: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":47104}' from endpoint 1 with groupID null
info  2022-09-15 19:17:42: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"linkquality":255,"state":"ON"}'
debug 2022-09-15 19:17:42: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":47360}' from endpoint 1 with groupID null
error 2022-09-15 19:17:42: Exception while calling fromZigbee converter: mapNumberRange is not defined}
debug 2022-09-15 19:17:42: ReferenceError: mapNumberRange is not defined
    at Object.convert (/app/dist/util/externally-loaded.js:88:41)
    at Receive.onDeviceMessage (/app/lib/extension/receive.ts:143:51)
    at EventEmitter.emit (node:events:539:35)
    at EventBus.emitDeviceMessage (/app/lib/eventBus.ts:102:22)
    at Controller.<anonymous> (/app/lib/zigbee.ts:106:27)
    at Controller.emit (node:events:527:28)
    at Controller.selfAndDeviceEmit (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:503:14)
    at Controller.onZclOrRawData (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:714:18)
    at DeconzAdapter.<anonymous> (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:144:70)
    at DeconzAdapter.emit (node:events:527:28)
debug 2022-09-15 19:17:42: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":47616}' from endpoint 1 with groupID null
error 2022-09-15 19:17:42: Exception while calling fromZigbee converter: mapNumberRange is not defined}
debug 2022-09-15 19:17:42: ReferenceError: mapNumberRange is not defined
    at Object.convert (/app/dist/util/externally-loaded.js:90:45)
    at Receive.onDeviceMessage (/app/lib/extension/receive.ts:143:51)
    at EventEmitter.emit (node:events:539:35)
    at EventBus.emitDeviceMessage (/app/lib/eventBus.ts:102:22)
    at Controller.<anonymous> (/app/lib/zigbee.ts:106:27)
    at Controller.emit (node:events:527:28)
    at Controller.selfAndDeviceEmit (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:503:14)
    at Controller.onZclOrRawData (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:714:18)
    at DeconzAdapter.<anonymous> (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:144:70)
    at DeconzAdapter.emit (node:events:527:28)
debug 2022-09-15 19:17:43: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":47872}' from endpoint 1 with groupID null
warn  2022-09-15 19:17:43: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-15 19:17:43: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":48128}' from endpoint 1 with groupID null
error 2022-09-15 19:17:43: Exception while calling fromZigbee converter: mapNumberRange is not defined}
debug 2022-09-15 19:17:43: ReferenceError: mapNumberRange is not defined
    at Object.convert (/app/dist/util/externally-loaded.js:92:45)
    at Receive.onDeviceMessage (/app/lib/extension/receive.ts:143:51)
    at EventEmitter.emit (node:events:539:35)
    at EventBus.emitDeviceMessage (/app/lib/eventBus.ts:102:22)
    at Controller.<anonymous> (/app/lib/zigbee.ts:106:27)
    at Controller.emit (node:events:527:28)
    at Controller.selfAndDeviceEmit (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:503:14)
    at Controller.onZclOrRawData (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:714:18)
    at DeconzAdapter.<anonymous> (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:144:70)
    at DeconzAdapter.emit (node:events:527:28)
debug 2022-09-15 19:17:43: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":48384}' from endpoint 1 with groupID null
warn  2022-09-15 19:17:43: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-15 19:17:43: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":48640}' from endpoint 1 with groupID null
warn  2022-09-15 19:17:43: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-15 19:17:45: Received Zigbee message from '0x9035eafffecc7967', type 'attributeReport', cluster 'genBasic', data '{"65506":31,"65508":0,"appVersion":68}' from endpoint 1 with groupID null
debug 2022-09-15 19:17:45: Received Zigbee message from '0x9035eafffecc7967', type 'attributeReport', cluster 'genBasic', data '{"65503":"�5�*\u0017�5�*\u0013�6�*\u0012�6�*\u0012"}' from endpoint 1 with groupID null
debug 2022-09-15 19:17:51: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":48640}' from endpoint 1 with groupID null
info  2022-09-15 19:17:51: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"linkquality":255,"state":"ON"}'
debug 2022-09-15 19:17:51: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":48896}' from endpoint 1 with groupID null
error 2022-09-15 19:17:51: Exception while calling fromZigbee converter: mapNumberRange is not defined}
debug 2022-09-15 19:17:51: ReferenceError: mapNumberRange is not defined
    at Object.convert (/app/dist/util/externally-loaded.js:88:41)
    at Receive.onDeviceMessage (/app/lib/extension/receive.ts:143:51)
    at EventEmitter.emit (node:events:539:35)
    at EventBus.emitDeviceMessage (/app/lib/eventBus.ts:102:22)
    at Controller.<anonymous> (/app/lib/zigbee.ts:106:27)
    at Controller.emit (node:events:527:28)
    at Controller.selfAndDeviceEmit (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:503:14)
    at Controller.onZclOrRawData (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:714:18)
    at DeconzAdapter.<anonymous> (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:144:70)
    at DeconzAdapter.emit (node:events:527:28)
debug 2022-09-15 19:17:51: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":49152}' from endpoint 1 with groupID null
error 2022-09-15 19:17:51: Exception while calling fromZigbee converter: mapNumberRange is not defined}
debug 2022-09-15 19:17:51: ReferenceError: mapNumberRange is not defined
    at Object.convert (/app/dist/util/externally-loaded.js:90:45)
    at Receive.onDeviceMessage (/app/lib/extension/receive.ts:143:51)
    at EventEmitter.emit (node:events:539:35)
    at EventBus.emitDeviceMessage (/app/lib/eventBus.ts:102:22)
    at Controller.<anonymous> (/app/lib/zigbee.ts:106:27)
    at Controller.emit (node:events:527:28)
    at Controller.selfAndDeviceEmit (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:503:14)
    at Controller.onZclOrRawData (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:714:18)
    at DeconzAdapter.<anonymous> (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:144:70)
    at DeconzAdapter.emit (node:events:527:28)
debug 2022-09-15 19:17:51: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":49408}' from endpoint 1 with groupID null
warn  2022-09-15 19:17:51: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-15 19:17:52: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":49664}' from endpoint 1 with groupID null
error 2022-09-15 19:17:52: Exception while calling fromZigbee converter: mapNumberRange is not defined}
debug 2022-09-15 19:17:52: ReferenceError: mapNumberRange is not defined
    at Object.convert (/app/dist/util/externally-loaded.js:92:45)
    at Receive.onDeviceMessage (/app/lib/extension/receive.ts:143:51)
    at EventEmitter.emit (node:events:539:35)
    at EventBus.emitDeviceMessage (/app/lib/eventBus.ts:102:22)
    at Controller.<anonymous> (/app/lib/zigbee.ts:106:27)
    at Controller.emit (node:events:527:28)
    at Controller.selfAndDeviceEmit (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:503:14)
    at Controller.onZclOrRawData (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:714:18)
    at DeconzAdapter.<anonymous> (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:144:70)
    at DeconzAdapter.emit (node:events:527:28)
debug 2022-09-15 19:17:52: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":49920}' from endpoint 1 with groupID null
warn  2022-09-15 19:17:52: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-15 19:17:52: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":50176}' from endpoint 1 with groupID null
warn  2022-09-15 19:17:52: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-15 19:17:56: Received Zigbee message from 'Study Motion Sensor', type 'commandStatusChangeNotification', cluster 'ssIasZone', data '{"extendedstatus":0,"zonestatus":32}' from endpoint 1 with groupID null
info  2022-09-15 19:17:56: MQTT publish: topic 'zigbee2mqtt/Study Motion Sensor', payload '{"battery":80,"battery_low":false,"linkquality":156,"occupancy":false,"tamper":false,"temperature":23.37,"voltage":2900}'
debug 2022-09-15 19:18:00: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":50176}' from endpoint 1 with groupID null
info  2022-09-15 19:18:00: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"linkquality":255,"state":"ON"}'
debug 2022-09-15 19:18:00: Received Zigbee message from 'Back Lounge Blinds 3', type 'raw', cluster '64528', data '{"data":[13,99,18,61,128,78,0,0,0,0,2,0,0,0,200,187,64,0,0,180,65,0,255,102,1,61,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-15 19:18:00: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,61,128,78,0,0,0,0,2,0,0,0,200,187,64,0,0,180,65,0,255,102,1,61,0],"type":"Buffer"}'
debug 2022-09-15 19:18:00: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":50432}' from endpoint 1 with groupID null
error 2022-09-15 19:18:00: Exception while calling fromZigbee converter: mapNumberRange is not defined}
debug 2022-09-15 19:18:00: ReferenceError: mapNumberRange is not defined
    at Object.convert (/app/dist/util/externally-loaded.js:88:41)
    at Receive.onDeviceMessage (/app/lib/extension/receive.ts:143:51)
    at EventEmitter.emit (node:events:539:35)
    at EventBus.emitDeviceMessage (/app/lib/eventBus.ts:102:22)
    at Controller.<anonymous> (/app/lib/zigbee.ts:106:27)
    at Controller.emit (node:events:527:28)
    at Controller.selfAndDeviceEmit (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:503:14)
    at Controller.onZclOrRawData (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:714:18)
    at DeconzAdapter.<anonymous> (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:144:70)
    at DeconzAdapter.emit (node:events:527:28)
debug 2022-09-15 19:18:00: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":50688}' from endpoint 1 with groupID null
error 2022-09-15 19:18:00: Exception while calling fromZigbee converter: mapNumberRange is not defined}
debug 2022-09-15 19:18:00: ReferenceError: mapNumberRange is not defined
    at Object.convert (/app/dist/util/externally-loaded.js:90:45)
    at Receive.onDeviceMessage (/app/lib/extension/receive.ts:143:51)
    at EventEmitter.emit (node:events:539:35)
    at EventBus.emitDeviceMessage (/app/lib/eventBus.ts:102:22)
    at Controller.<anonymous> (/app/lib/zigbee.ts:106:27)
    at Controller.emit (node:events:527:28)
    at Controller.selfAndDeviceEmit (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:503:14)
    at Controller.onZclOrRawData (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:714:18)
    at DeconzAdapter.<anonymous> (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:144:70)
    at DeconzAdapter.emit (node:events:527:28)
debug 2022-09-15 19:18:00: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":50944}' from endpoint 1 with groupID null
warn  2022-09-15 19:18:00: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-15 19:18:01: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":51200}' from endpoint 1 with groupID null
error 2022-09-15 19:18:01: Exception while calling fromZigbee converter: mapNumberRange is not defined}
debug 2022-09-15 19:18:01: ReferenceError: mapNumberRange is not defined
    at Object.convert (/app/dist/util/externally-loaded.js:92:45)
    at Receive.onDeviceMessage (/app/lib/extension/receive.ts:143:51)
    at EventEmitter.emit (node:events:539:35)
    at EventBus.emitDeviceMessage (/app/lib/eventBus.ts:102:22)
    at Controller.<anonymous> (/app/lib/zigbee.ts:106:27)
    at Controller.emit (node:events:527:28)
    at Controller.selfAndDeviceEmit (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:503:14)
    at Controller.onZclOrRawData (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:714:18)
    at DeconzAdapter.<anonymous> (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:144:70)
    at DeconzAdapter.emit (node:events:527:28)
debug 2022-09-15 19:18:01: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":51456}' from endpoint 1 with groupID null
warn  2022-09-15 19:18:01: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-15 19:18:01: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":51712}' from endpoint 1 with groupID null
warn  2022-09-15 19:18:01: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-15 19:18:07: Received Zigbee message from 'Front Lounge Blinds 2', type 'raw', cluster '64528', data '{"data":[13,99,18,83,128,188,0,0,0,0,2,0,0,0,240,73,64,0,0,177,65,0,255,121,1,61,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-15 19:18:07: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,83,128,188,0,0,0,0,2,0,0,0,240,73,64,0,0,177,65,0,255,121,1,61,0],"type":"Buffer"}'
debug 2022-09-15 19:18:09: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":51712}' from endpoint 1 with groupID null
info  2022-09-15 19:18:09: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"linkquality":255,"state":"ON"}'
debug 2022-09-15 19:18:09: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":51968}' from endpoint 1 with groupID null
error 2022-09-15 19:18:09: Exception while calling fromZigbee converter: mapNumberRange is not defined}
debug 2022-09-15 19:18:09: ReferenceError: mapNumberRange is not defined
    at Object.convert (/app/dist/util/externally-loaded.js:88:41)
    at Receive.onDeviceMessage (/app/lib/extension/receive.ts:143:51)
    at EventEmitter.emit (node:events:539:35)
    at EventBus.emitDeviceMessage (/app/lib/eventBus.ts:102:22)
    at Controller.<anonymous> (/app/lib/zigbee.ts:106:27)
    at Controller.emit (node:events:527:28)
    at Controller.selfAndDeviceEmit (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:503:14)
    at Controller.onZclOrRawData (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:714:18)
    at DeconzAdapter.<anonymous> (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:144:70)
    at DeconzAdapter.emit (node:events:527:28)

@Koenkk
Copy link
Owner

Koenkk commented Sep 16, 2022

Updated #13800 (comment)

@shanelord01
Copy link

shanelord01 commented Sep 16, 2022

Lot's less red this time...

debug 2022-09-16 20:13:51: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,166],"type":"Buffer"},"datatype":2,"dp":2}],"seq":20173}' from endpoint 1 with groupID null
info  2022-09-16 20:13:51: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"state":"OFF"}'
debug 2022-09-16 20:13:51: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,166],"type":"Buffer"},"datatype":2,"dp":2}],"seq":20173}' from endpoint 1 with groupID null
info  2022-09-16 20:13:51: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"state":"OFF"}'
debug 2022-09-16 20:13:51: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,166],"type":"Buffer"},"datatype":2,"dp":2}],"seq":20173}' from endpoint 1 with groupID null
info  2022-09-16 20:13:51: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"state":"OFF"}'
debug 2022-09-16 20:13:51: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":20429}' from endpoint 1 with groupID null
info  2022-09-16 20:13:51: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:13:51: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":20429}' from endpoint 1 with groupID null
info  2022-09-16 20:13:51: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:13:51: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":20685}' from endpoint 1 with groupID null
warn  2022-09-16 20:13:51: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-16 20:13:51: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":20941}' from endpoint 1 with groupID null
info  2022-09-16 20:13:51: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:13:51: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":20941}' from endpoint 1 with groupID null
info  2022-09-16 20:13:51: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:13:51: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":21197}' from endpoint 1 with groupID null
warn  2022-09-16 20:13:51: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-16 20:13:51: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":21197}' from endpoint 1 with groupID null
warn  2022-09-16 20:13:51: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-16 20:13:51: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":21453}' from endpoint 1 with groupID null
warn  2022-09-16 20:13:51: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-16 20:13:56: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":21453}' from endpoint 1 with groupID null
info  2022-09-16 20:13:56: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:13:56: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,166],"type":"Buffer"},"datatype":2,"dp":2}],"seq":21709}' from endpoint 1 with groupID null
info  2022-09-16 20:13:56: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:13:56: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":21965}' from endpoint 1 with groupID null
info  2022-09-16 20:13:56: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:13:56: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":22221}' from endpoint 1 with groupID null
warn  2022-09-16 20:13:56: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-16 20:13:56: Received Zigbee message from 'Back Lounge Blinds 1', type 'raw', cluster '64528', data '{"data":[13,99,18,35,128,81,0,0,0,0,2,0,0,0,0,144,62,0,0,177,65,0,255,58,1,5,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-16 20:13:56: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,35,128,81,0,0,0,0,2,0,0,0,0,144,62,0,0,177,65,0,255,58,1,5,0],"type":"Buffer"}'
debug 2022-09-16 20:13:57: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":22477}' from endpoint 1 with groupID null
info  2022-09-16 20:13:57: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:13:57: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":22733}' from endpoint 1 with groupID null
warn  2022-09-16 20:13:57: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-16 20:13:57: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":22989}' from endpoint 1 with groupID null
warn  2022-09-16 20:13:57: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-16 20:13:58: Received Zigbee message from 'Back Lounge Blinds 2', type 'raw', cluster '64528', data '{"data":[13,99,18,2,128,78,202,226,128,254,2,0,0,0,0,176,62,0,0,181,65,0,255,52,1,5,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-16 20:13:58: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,2,128,78,202,226,128,254,2,0,0,0,0,176,62,0,0,181,65,0,255,52,1,5,0],"type":"Buffer"}'
debug 2022-09-16 20:14:00: Received Zigbee message from 'Front Porch Downlight', type 'commandQueryNextImageRequest', cluster 'genOta', data '{"fieldControl":0,"fileVersion":1,"imageType":269,"manufacturerCode":4478}' from endpoint 1 with groupID null
debug 2022-09-16 20:14:00: Device 'Front Porch Downlight' requested OTA
debug 2022-09-16 20:14:01: Received MQTT message on 'zigbee2mqtt/bridge/request/device/configure' with data '{"id":"0x9035eafffecc7967","transaction":"7oyu2-1"}'
info  2022-09-16 20:14:01: Configuring '0x9035eafffecc7967'
info  2022-09-16 20:14:01: Successfully configured '0x9035eafffecc7967'
info  2022-09-16 20:14:01: MQTT publish: topic 'zigbee2mqtt/bridge/response/device/configure', payload '{"data":{"id":"0x9035eafffecc7967"},"status":"ok","transaction":"7oyu2-1"}'
debug 2022-09-16 20:14:02: Received Zigbee message from '0x9035eafffecc7967', type 'attributeReport', cluster 'genBasic', data '{"65506":31,"65508":0,"appVersion":68}' from endpoint 1 with groupID null
debug 2022-09-16 20:14:05: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":22989}' from endpoint 1 with groupID null
info  2022-09-16 20:14:05: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:14:05: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,166],"type":"Buffer"},"datatype":2,"dp":2}],"seq":23245}' from endpoint 1 with groupID null
info  2022-09-16 20:14:05: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:14:05: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":23501}' from endpoint 1 with groupID null
info  2022-09-16 20:14:05: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:14:06: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":23757}' from endpoint 1 with groupID null
warn  2022-09-16 20:14:06: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-16 20:14:06: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":24013}' from endpoint 1 with groupID null
info  2022-09-16 20:14:06: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:14:06: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":24269}' from endpoint 1 with groupID null
warn  2022-09-16 20:14:06: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-16 20:14:06: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":24525}' from endpoint 1 with groupID null
warn  2022-09-16 20:14:06: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-16 20:14:14: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":24525}' from endpoint 1 with groupID null
info  2022-09-16 20:14:14: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:14:14: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,166],"type":"Buffer"},"datatype":2,"dp":2}],"seq":24781}' from endpoint 1 with groupID null
info  2022-09-16 20:14:14: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:14:14: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":25037}' from endpoint 1 with groupID null
info  2022-09-16 20:14:14: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:14:14: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":25293}' from endpoint 1 with groupID null
warn  2022-09-16 20:14:14: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-16 20:14:14: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":25549}' from endpoint 1 with groupID null
info  2022-09-16 20:14:14: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:14:14: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":25805}' from endpoint 1 with groupID null
warn  2022-09-16 20:14:14: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-16 20:14:14: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":26061}' from endpoint 1 with groupID null
warn  2022-09-16 20:14:14: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-16 20:14:18: Received Zigbee message from 'Front Lounge Blinds 1', type 'raw', cluster '64528', data '{"data":[13,99,18,63,128,186,0,0,0,0,2,0,1,0,0,0,61,0,0,179,65,0,255,52,1,5,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-16 20:14:18: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,63,128,186,0,0,0,0,2,0,1,0,0,0,61,0,0,179,65,0,255,52,1,5,0],"type":"Buffer"}'
debug 2022-09-16 20:14:23: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":26061}' from endpoint 1 with groupID null
info  2022-09-16 20:14:23: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:14:23: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,166],"type":"Buffer"},"datatype":2,"dp":2}],"seq":26317}' from endpoint 1 with groupID null
info  2022-09-16 20:14:23: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:14:23: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":26573}' from endpoint 1 with groupID null
info  2022-09-16 20:14:23: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:14:23: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":26829}' from endpoint 1 with groupID null
warn  2022-09-16 20:14:23: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-16 20:14:23: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":27085}' from endpoint 1 with groupID null
info  2022-09-16 20:14:23: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":244,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:14:23: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":27341}' from endpoint 1 with groupID null
warn  2022-09-16 20:14:23: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-16 20:14:23: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":27597}' from endpoint 1 with groupID null
warn  2022-09-16 20:14:23: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-16 20:14:24: Received Zigbee message from 'Front Lounge Blinds 2', type 'raw', cluster '64528', data '{"data":[13,99,18,3,128,188,0,0,0,0,2,0,0,0,240,79,64,0,0,178,65,0,255,70,1,5,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-16 20:14:24: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,3,128,188,0,0,0,0,2,0,0,0,240,79,64,0,0,178,65,0,255,70,1,5,0],"type":"Buffer"}'
debug 2022-09-16 20:14:30: Received Zigbee message from 'Back Lounge Blinds 3', type 'raw', cluster '64528', data '{"data":[13,99,18,110,128,78,0,0,0,0,2,0,0,0,0,64,62,0,0,179,65,0,255,52,1,5,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-16 20:14:30: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,110,128,78,0,0,0,0,2,0,0,0,0,64,62,0,0,179,65,0,255,52,1,5,0],"type":"Buffer"}'
debug 2022-09-16 20:14:32: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":27597}' from endpoint 1 with groupID null
info  2022-09-16 20:14:32: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:14:32: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,166],"type":"Buffer"},"datatype":2,"dp":2}],"seq":27853}' from endpoint 1 with groupID null
info  2022-09-16 20:14:32: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:14:32: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":28109}' from endpoint 1 with groupID null
info  2022-09-16 20:14:32: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:14:32: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":28365}' from endpoint 1 with groupID null
warn  2022-09-16 20:14:32: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-16 20:14:32: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":28621}' from endpoint 1 with groupID null
info  2022-09-16 20:14:32: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":42,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:14:32: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":28877}' from endpoint 1 with groupID null
warn  2022-09-16 20:14:32: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-16 20:14:32: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":29133}' from endpoint 1 with groupID null
warn  2022-09-16 20:14:32: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]

and

debug 2022-09-16 20:17:07: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"max_brightness":255}'
debug 2022-09-16 20:17:07: Publishing 'set' 'max_brightness' to '0x9035eafffecc7967'
debug 2022-09-16 20:17:07: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":5}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-16 20:17:07: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":255,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:17:07: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":5}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-16 20:17:07: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":255,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:17:10: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"min_brightness":2}'
debug 2022-09-16 20:17:10: Publishing 'set' 'min_brightness' to '0x9035eafffecc7967'
debug 2022-09-16 20:17:10: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-16 20:17:10: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":255,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:17:10: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,1,160],"type":"Buffer"},"datatype":2,"dp":2}],"seq":257}' from endpoint 1 with groupID null
info  2022-09-16 20:17:10: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":255,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:17:11: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":513}' from endpoint 1 with groupID null
info  2022-09-16 20:17:11: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":255,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:17:11: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":769}' from endpoint 1 with groupID null
warn  2022-09-16 20:17:11: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-16 20:17:11: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":1025}' from endpoint 1 with groupID null
info  2022-09-16 20:17:11: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-16 20:17:11: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":1281}' from endpoint 1 with groupID null
warn  2022-09-16 20:17:11: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-16 20:17:11: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":1537}' from endpoint 1 with groupID null
warn  2022-09-16 20:17:11: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]

@shanelord01
Copy link

Removed from Z2M and re-joined it. Then tried to change brightness and max min brightness settings:

info  2022-09-17 12:46:59: Zigbee: allowing new devices to join.
info  2022-09-17 12:46:59: MQTT publish: topic 'zigbee2mqtt/bridge/response/permit_join', payload '{"data":{"time":254,"value":true},"status":"ok","transaction":"ky7az-1"}'
debug 2022-09-17 12:47:00: Received Zigbee message from 'Study Motion Sensor', type 'commandStatusChangeNotification', cluster 'ssIasZone', data '{"extendedstatus":0,"zonestatus":33}' from endpoint 1 with groupID null
info  2022-09-17 12:47:00: MQTT publish: topic 'zigbee2mqtt/Study Motion Sensor', payload '{"battery":100,"battery_low":false,"linkquality":255,"occupancy":true,"tamper":false,"temperature":23.46,"voltage":2900}'
debug 2022-09-17 12:47:11: Received Zigbee message from 'Front Lounge Blinds 2', type 'raw', cluster '64528', data '{"data":[13,99,18,73,128,187,0,0,0,0,2,0,0,32,72,173,66,0,0,185,65,1,255,96,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-17 12:47:11: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,73,128,187,0,0,0,0,2,0,0,32,72,173,66,0,0,185,65,1,255,96,0,0,0],"type":"Buffer"}'
debug 2022-09-17 12:47:13: Received Zigbee message from 'Back Lounge Blinds 1', type 'raw', cluster '64528', data '{"data":[13,99,18,105,128,79,0,0,0,0,2,0,0,128,12,175,65,0,0,176,65,1,255,150,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-17 12:47:13: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,105,128,79,0,0,0,0,2,0,0,128,12,175,65,0,0,176,65,1,255,150,0,0,0],"type":"Buffer"}'
debug 2022-09-17 12:47:14: Received Zigbee message from 'Pool Filter Smart Plug', type 'attributeReport', cluster 'seMetering', data '{"currentSummDelivered":[0,24572]}' from endpoint 1 with groupID null
info  2022-09-17 12:47:14: MQTT publish: topic 'zigbee2mqtt/Pool Filter Smart Plug', payload '{"energy":245.72,"linkquality":255,"power":825,"state":"ON"}'
debug 2022-09-17 12:47:17: Received Zigbee message from 'Front Lounge Blinds 1', type 'raw', cluster '64528', data '{"data":[13,99,18,5,128,186,0,0,0,0,2,0,1,8,55,191,67,0,0,185,65,1,255,70,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-17 12:47:17: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,5,128,186,0,0,0,0,2,0,1,8,55,191,67,0,0,185,65,1,255,70,0,0,0],"type":"Buffer"}'
debug 2022-09-17 12:47:19: Received Zigbee message from 'Back Lounge Blinds 2', type 'raw', cluster '64528', data '{"data":[13,99,18,69,128,76,202,226,128,254,2,0,0,240,118,17,67,0,0,179,65,1,255,112,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-17 12:47:19: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,69,128,76,202,226,128,254,2,0,0,240,118,17,67,0,0,179,65,1,255,112,0,0,0],"type":"Buffer"}'
debug 2022-09-17 12:47:21: Received Zigbee message from 'Study Motion Sensor', type 'commandStatusChangeNotification', cluster 'ssIasZone', data '{"extendedstatus":0,"zonestatus":32}' from endpoint 1 with groupID null
info  2022-09-17 12:47:21: MQTT publish: topic 'zigbee2mqtt/Study Motion Sensor', payload '{"battery":100,"battery_low":false,"linkquality":255,"occupancy":false,"tamper":false,"temperature":23.46,"voltage":2900}'
info  2022-09-17 12:47:21: Device '0x9035eafffecc7967' joined
info  2022-09-17 12:47:22: MQTT publish: topic 'zigbee2mqtt/bridge/event', payload '{"data":{"friendly_name":"0x9035eafffecc7967","ieee_address":"0x9035eafffecc7967"},"type":"device_joined"}'
info  2022-09-17 12:47:22: MQTT publish: topic 'zigbee2mqtt/bridge/log', payload '{"message":{"friendly_name":"0x9035eafffecc7967"},"type":"device_connected"}'
info  2022-09-17 12:47:22: Starting interview of '0x9035eafffecc7967'
info  2022-09-17 12:47:22: MQTT publish: topic 'zigbee2mqtt/bridge/event', payload '{"data":{"friendly_name":"0x9035eafffecc7967","ieee_address":"0x9035eafffecc7967","status":"started"},"type":"device_interview"}'
info  2022-09-17 12:47:22: MQTT publish: topic 'zigbee2mqtt/bridge/log', payload '{"message":"interview_started","meta":{"friendly_name":"0x9035eafffecc7967"},"type":"pairing"}'
debug 2022-09-17 12:47:22: Received Zigbee message from '0x9035eafffecc7967', type 'readResponse', cluster 'genBasic', data '{"manufacturerName":"_TZE200_1agwnems","modelId":"TS0601"}' from endpoint 1 with groupID null
debug 2022-09-17 12:47:22: Skipping message, definition is undefined and still interviewing
debug 2022-09-17 12:47:23: Received Zigbee message from '0x9035eafffecc7967', type 'readResponse', cluster 'genBasic', data '{"powerSource":1}' from endpoint 1 with groupID null
debug 2022-09-17 12:47:23: Skipping message, definition is undefined and still interviewing
debug 2022-09-17 12:47:23: Received Zigbee message from '0x9035eafffecc7967', type 'readResponse', cluster 'genBasic', data '{"zclVersion":3}' from endpoint 1 with groupID null
debug 2022-09-17 12:47:23: Skipping message, definition is undefined and still interviewing
debug 2022-09-17 12:47:23: Received Zigbee message from '0x9035eafffecc7967', type 'readResponse', cluster 'genBasic', data '{"appVersion":68}' from endpoint 1 with groupID null
debug 2022-09-17 12:47:23: Skipping message, definition is undefined and still interviewing
debug 2022-09-17 12:47:23: Received Zigbee message from '0x9035eafffecc7967', type 'readResponse', cluster 'genBasic', data '{"stackVersion":0}' from endpoint 1 with groupID null
debug 2022-09-17 12:47:23: Skipping message, definition is undefined and still interviewing
debug 2022-09-17 12:47:23: Received Zigbee message from '0x9035eafffecc7967', type 'readResponse', cluster 'genBasic', data '{"hwVersion":1}' from endpoint 1 with groupID null
debug 2022-09-17 12:47:23: Skipping message, definition is undefined and still interviewing
debug 2022-09-17 12:47:23: Received Zigbee message from '0x9035eafffecc7967', type 'readResponse', cluster 'genBasic', data '{"dateCode":""}' from endpoint 1 with groupID null
debug 2022-09-17 12:47:23: Skipping message, definition is undefined and still interviewing
debug 2022-09-17 12:47:23: Received Zigbee message from '0x9035eafffecc7967', type 'readResponse', cluster 'genBasic', data '{}' from endpoint 1 with groupID null
debug 2022-09-17 12:47:23: Skipping message, definition is undefined and still interviewing
info  2022-09-17 12:47:23: Successfully interviewed '0x9035eafffecc7967', device has successfully been paired
info  2022-09-17 12:47:23: Device '0x9035eafffecc7967' is supported, identified as: TuYa Zigbee smart dimmer (TS0601_dimmer)
info  2022-09-17 12:47:24: MQTT publish: topic 'zigbee2mqtt/bridge/event', payload '{"data":{"definition":{"description":"Zigbee smart dimmer","exposes":[{"features":[{"access":3,"description":"On/off state of this light","name":"state","property":"state","type":"binary","value_off":"OFF","value_on":"ON","value_toggle":"TOGGLE"},{"access":3,"description":"Brightness of this light","name":"brightness","property":"brightness","type":"numeric","value_max":254,"value_min":0},{"access":3,"description":"Minimum light brightness","name":"min_brightness","property":"min_brightness","type":"numeric","value_max":255,"value_min":1},{"access":3,"description":"Maximum light brightness","name":"max_brightness","property":"max_brightness","type":"numeric","value_max":255,"value_min":1}],"type":"light"},{"access":1,"description":"Link quality (signal strength)","name":"linkquality","property":"linkquality","type":"numeric","unit":"lqi","value_max":255,"value_min":0}],"model":"TS0601_dimmer","options":[],"supports_ota":false,"vendor":"TuYa"},"friendly_name":"0x9035eafffecc7967","ieee_address":"0x9035eafffecc7967","status":"successful","supported":true},"type":"device_interview"}'
info  2022-09-17 12:47:24: Configuring '0x9035eafffecc7967'
info  2022-09-17 12:47:24: MQTT publish: topic 'zigbee2mqtt/bridge/log', payload '{"message":"interview_successful","meta":{"description":"Zigbee smart dimmer","friendly_name":"0x9035eafffecc7967","model":"TS0601_dimmer","supported":true,"vendor":"TuYa"},"type":"pairing"}'
info  2022-09-17 12:47:24: MQTT publish: topic 'homeassistant/light/0x9035eafffecc7967/light/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"brightness":true,"brightness_scale":254,"command_topic":"zigbee2mqtt/0x9035eafffecc7967/set","device":{"identifiers":["zigbee2mqtt_0x9035eafffecc7967"],"manufacturer":"TuYa","model":"Zigbee smart dimmer (TS0601_dimmer)","name":"0x9035eafffecc7967"},"json_attributes_topic":"zigbee2mqtt/0x9035eafffecc7967","name":"0x9035eafffecc7967","schema":"json","state_topic":"zigbee2mqtt/0x9035eafffecc7967","unique_id":"0x9035eafffecc7967_light_zigbee2mqtt"}'
info  2022-09-17 12:47:24: MQTT publish: topic 'homeassistant/sensor/0x9035eafffecc7967/linkquality/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x9035eafffecc7967"],"manufacturer":"TuYa","model":"Zigbee smart dimmer (TS0601_dimmer)","name":"0x9035eafffecc7967"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/0x9035eafffecc7967","name":"0x9035eafffecc7967 linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/0x9035eafffecc7967","unique_id":"0x9035eafffecc7967_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
debug 2022-09-17 12:47:24: Received MQTT message on 'homeassistant/light/0x9035eafffecc7967/light/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"brightness":true,"brightness_scale":254,"command_topic":"zigbee2mqtt/0x9035eafffecc7967/set","device":{"identifiers":["zigbee2mqtt_0x9035eafffecc7967"],"manufacturer":"TuYa","model":"Zigbee smart dimmer (TS0601_dimmer)","name":"0x9035eafffecc7967"},"json_attributes_topic":"zigbee2mqtt/0x9035eafffecc7967","name":"0x9035eafffecc7967","schema":"json","state_topic":"zigbee2mqtt/0x9035eafffecc7967","unique_id":"0x9035eafffecc7967_light_zigbee2mqtt"}'
debug 2022-09-17 12:47:24: Received MQTT message on 'homeassistant/sensor/0x9035eafffecc7967/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x9035eafffecc7967"],"manufacturer":"TuYa","model":"Zigbee smart dimmer (TS0601_dimmer)","name":"0x9035eafffecc7967"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/0x9035eafffecc7967","name":"0x9035eafffecc7967 linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/0x9035eafffecc7967","unique_id":"0x9035eafffecc7967_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
info  2022-09-17 12:47:24: Successfully configured '0x9035eafffecc7967'
debug 2022-09-17 12:47:25: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":12288}' from endpoint 1 with groupID null
info  2022-09-17 12:47:25: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"linkquality":255,"state":"ON"}'
debug 2022-09-17 12:47:25: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,1,160],"type":"Buffer"},"datatype":2,"dp":2}],"seq":12544}' from endpoint 1 with groupID null
info  2022-09-17 12:47:25: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"state":"ON"}'
debug 2022-09-17 12:47:25: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":12800}' from endpoint 1 with groupID null
info  2022-09-17 12:47:25: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:47:25: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":13056}' from endpoint 1 with groupID null
warn  2022-09-17 12:47:25: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-17 12:47:25: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":13312}' from endpoint 1 with groupID null
info  2022-09-17 12:47:25: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:47:25: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":13568}' from endpoint 1 with groupID null
warn  2022-09-17 12:47:25: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-17 12:47:25: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":13824}' from endpoint 1 with groupID null
warn  2022-09-17 12:47:25: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-17 12:47:26: Received Zigbee message from 'Study Motion Sensor', type 'commandStatusChangeNotification', cluster 'ssIasZone', data '{"extendedstatus":0,"zonestatus":33}' from endpoint 1 with groupID null
info  2022-09-17 12:47:26: MQTT publish: topic 'zigbee2mqtt/Study Motion Sensor', payload '{"battery":100,"battery_low":false,"linkquality":255,"occupancy":true,"tamper":false,"temperature":23.46,"voltage":2900}'
debug 2022-09-17 12:47:27: Received Zigbee message from 'Back Lounge Blinds 4', type 'raw', cluster '64528', data '{"data":[13,99,18,87,128,78,0,0,0,0,2,0,0,16,151,111,67,0,0,181,65,1,255,85,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-17 12:47:27: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,87,128,78,0,0,0,0,2,0,0,16,151,111,67,0,0,181,65,1,255,85,0,0,0],"type":"Buffer"}'
debug 2022-09-17 12:47:27: Received Zigbee message from 'Back Lounge Blinds 3', type 'raw', cluster '64528', data '{"data":[13,99,18,51,128,76,0,0,0,0,2,0,0,208,252,157,67,0,0,181,65,1,255,82,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-17 12:47:27: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,51,128,76,0,0,0,0,2,0,0,208,252,157,67,0,0,181,65,1,255,82,0,0,0],"type":"Buffer"}'
debug 2022-09-17 12:47:27: Received Zigbee message from '0x9035eafffecc7967', type 'read', cluster 'genTime', data '["localTime"]' from endpoint 1 with groupID null
debug 2022-09-17 12:47:31: Received Zigbee message from '0x9035eafffecc7967', type 'commandMcuSyncTime', cluster 'manuSpecificTuya', data '{"payloadSize":12544}' from endpoint 1 with groupID null
debug 2022-09-17 12:47:31: No converter available for 'TS0601_dimmer' with cluster 'manuSpecificTuya' and type 'commandMcuSyncTime' and data '{"payloadSize":12544}'
debug 2022-09-17 12:47:34: Received Zigbee message from '0x9035eafffecc7967', type 'attributeReport', cluster 'genBasic', data '{"65506":31,"65508":0,"appVersion":68}' from endpoint 1 with groupID null
debug 2022-09-17 12:47:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":12544}' from endpoint 1 with groupID null
info  2022-09-17 12:47:34: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:47:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,1,160],"type":"Buffer"},"datatype":2,"dp":2}],"seq":12800}' from endpoint 1 with groupID null
info  2022-09-17 12:47:34: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:47:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":13056}' from endpoint 1 with groupID null
info  2022-09-17 12:47:34: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:47:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":13312}' from endpoint 1 with groupID null
warn  2022-09-17 12:47:34: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-17 12:47:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":13568}' from endpoint 1 with groupID null
info  2022-09-17 12:47:34: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:47:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":13824}' from endpoint 1 with groupID null
warn  2022-09-17 12:47:34: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-17 12:47:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":14080}' from endpoint 1 with groupID null
warn  2022-09-17 12:47:34: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-17 12:47:34: Received Zigbee message from '0x9035eafffecc7967', type 'attributeReport', cluster 'genBasic', data '{"65503":"�}�*\u0013[~�*\u0012\\~�*\u0012"}' from endpoint 1 with groupID null
debug 2022-09-17 12:47:40: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"state":"OFF"}'
debug 2022-09-17 12:47:40: Publishing 'set' 'state' to '0x9035eafffecc7967'
debug 2022-09-17 12:47:44: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"state":"ON"}'
debug 2022-09-17 12:47:44: Publishing 'set' 'state' to '0x9035eafffecc7967'
debug 2022-09-17 12:47:45: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"state":"OFF"}'
debug 2022-09-17 12:47:45: Publishing 'set' 'state' to '0x9035eafffecc7967'
debug 2022-09-17 12:47:49: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"brightness":109}'
debug 2022-09-17 12:47:49: Publishing 'set' 'brightness' to '0x9035eafffecc7967'
debug 2022-09-17 12:47:49: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"brightness":112}'
debug 2022-09-17 12:47:49: Publishing 'set' 'brightness' to '0x9035eafffecc7967'
debug 2022-09-17 12:47:50: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"state":"OFF"}'
debug 2022-09-17 12:47:50: Publishing 'set' 'state' to '0x9035eafffecc7967'
debug 2022-09-17 12:47:55: Received MQTT message on 'zigbee2mqtt/bridge/request/device/configure' with data '{"id":"0x9035eafffecc7967","transaction":"ky7az-2"}'
info  2022-09-17 12:47:55: Configuring '0x9035eafffecc7967'
debug 2022-09-17 12:48:04: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":14080}' from endpoint 1 with groupID null
info  2022-09-17 12:48:04: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:04: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":14080}' from endpoint 1 with groupID null
info  2022-09-17 12:48:04: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:04: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":17152}' from endpoint 1 with groupID null
info  2022-09-17 12:48:04: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:04: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,1,160],"type":"Buffer"},"datatype":2,"dp":2}],"seq":17408}' from endpoint 1 with groupID null
info  2022-09-17 12:48:04: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:04: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":17664}' from endpoint 1 with groupID null
info  2022-09-17 12:48:04: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:04: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":17920}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:04: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-17 12:48:04: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":18176}' from endpoint 1 with groupID null
info  2022-09-17 12:48:04: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:04: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":18432}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:04: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-17 12:48:05: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":18688}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:05: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-17 12:48:07: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"state":"OFF"}'
debug 2022-09-17 12:48:07: Publishing 'set' 'state' to '0x9035eafffecc7967'
debug 2022-09-17 12:48:07: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:07: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-17 12:48:09: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:09: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-17 12:48:09: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,1,160],"type":"Buffer"},"datatype":2,"dp":2}],"seq":257}' from endpoint 1 with groupID null
info  2022-09-17 12:48:09: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-17 12:48:09: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":513}' from endpoint 1 with groupID null
info  2022-09-17 12:48:09: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-17 12:48:09: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":769}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:09: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-17 12:48:09: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":1025}' from endpoint 1 with groupID null
info  2022-09-17 12:48:09: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-17 12:48:09: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":1281}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:09: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-17 12:48:09: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":1537}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:09: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-17 12:48:10: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"state":"ON"}'
debug 2022-09-17 12:48:10: Publishing 'set' 'state' to '0x9035eafffecc7967'
debug 2022-09-17 12:48:11: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:11: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:13: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:13: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:13: Received Zigbee message from 'Study Motion Sensor', type 'commandStatusChangeNotification', cluster 'ssIasZone', data '{"extendedstatus":0,"zonestatus":32}' from endpoint 1 with groupID null
info  2022-09-17 12:48:13: MQTT publish: topic 'zigbee2mqtt/Study Motion Sensor', payload '{"battery":100,"battery_low":false,"linkquality":255,"occupancy":false,"tamper":false,"temperature":23.46,"voltage":2900}'
debug 2022-09-17 12:48:13: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,1,160],"type":"Buffer"},"datatype":2,"dp":2}],"seq":257}' from endpoint 1 with groupID null
info  2022-09-17 12:48:13: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:13: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":513}' from endpoint 1 with groupID null
info  2022-09-17 12:48:13: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:13: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":769}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:13: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-17 12:48:13: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":1025}' from endpoint 1 with groupID null
info  2022-09-17 12:48:13: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":106,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:13: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":1281}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:13: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-17 12:48:13: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":1537}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:13: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-17 12:48:14: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"brightness":12}'
debug 2022-09-17 12:48:14: Publishing 'set' 'brightness' to '0x9035eafffecc7967'
debug 2022-09-17 12:48:14: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,47],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:14: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":12,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:16: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:16: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":12,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:16: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,41],"type":"Buffer"},"datatype":2,"dp":2}],"seq":257}' from endpoint 1 with groupID null
info  2022-09-17 12:48:16: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":10,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:16: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":513}' from endpoint 1 with groupID null
info  2022-09-17 12:48:16: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":10,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:16: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":769}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:16: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-17 12:48:16: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":1025}' from endpoint 1 with groupID null
info  2022-09-17 12:48:16: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":10,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:16: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":1281}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:16: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-17 12:48:16: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":1537}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:16: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-17 12:48:16: Received Zigbee message from 'Front Lounge Blinds 2', type 'raw', cluster '64528', data '{"data":[13,99,18,74,128,187,0,0,0,0,2,0,0,64,209,174,66,0,0,184,65,1,255,95,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-17 12:48:16: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,74,128,187,0,0,0,0,2,0,0,64,209,174,66,0,0,184,65,1,255,95,0,0,0],"type":"Buffer"}'
debug 2022-09-17 12:48:18: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"brightness":198}'
debug 2022-09-17 12:48:18: Publishing 'set' 'brightness' to '0x9035eafffecc7967'
debug 2022-09-17 12:48:19: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,12],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:19: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":198,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:19: Received Zigbee message from 'Back Lounge Blinds 1', type 'raw', cluster '64528', data '{"data":[13,99,18,106,128,79,0,0,0,0,2,0,0,160,224,135,66,0,0,176,65,1,255,148,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-17 12:48:19: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,106,128,79,0,0,0,0,2,0,0,160,224,135,66,0,0,176,65,1,255,148,0,0,0],"type":"Buffer"}'
debug 2022-09-17 12:48:21: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:21: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":198,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:21: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,238],"type":"Buffer"},"datatype":2,"dp":2}],"seq":257}' from endpoint 1 with groupID null
info  2022-09-17 12:48:21: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":191,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:21: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":513}' from endpoint 1 with groupID null
info  2022-09-17 12:48:21: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":191,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:21: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":769}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:21: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-17 12:48:21: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":1025}' from endpoint 1 with groupID null
info  2022-09-17 12:48:21: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":191,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:21: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":1281}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:21: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-17 12:48:21: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":1537}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:21: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-17 12:48:22: Received Zigbee message from 'Front Lounge Blinds 1', type 'raw', cluster '64528', data '{"data":[13,99,18,6,128,186,0,0,0,0,2,0,1,72,20,202,67,0,0,185,65,1,255,69,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-17 12:48:22: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,6,128,186,0,0,0,0,2,0,1,72,20,202,67,0,0,185,65,1,255,69,0,0,0],"type":"Buffer"}'
debug 2022-09-17 12:48:22: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"brightness":254}'
debug 2022-09-17 12:48:22: Publishing 'set' 'brightness' to '0x9035eafffecc7967'
debug 2022-09-17 12:48:23: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:23: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:24: Received Zigbee message from 'Back Lounge Blinds 2', type 'raw', cluster '64528', data '{"data":[13,99,18,70,128,76,202,226,128,254,2,0,0,144,31,38,67,0,0,178,65,1,255,111,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-17 12:48:24: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,70,128,76,202,226,128,254,2,0,0,144,31,38,67,0,0,178,65,1,255,111,0,0,0],"type":"Buffer"}'
debug 2022-09-17 12:48:24: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:24: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:25: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":257}' from endpoint 1 with groupID null
info  2022-09-17 12:48:25: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:25: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":513}' from endpoint 1 with groupID null
info  2022-09-17 12:48:25: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:25: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":769}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:25: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-17 12:48:25: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":1025}' from endpoint 1 with groupID null
info  2022-09-17 12:48:25: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:25: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":1281}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:25: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-17 12:48:25: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":1537}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:25: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-17 12:48:26: Received Zigbee message from 'Front Lounge Blinds 1', type 'raw', cluster '64528', data '{"data":[13,99,18,6,128,186,0,0,0,0,2,0,1,72,20,202,67,0,0,185,65,1,255,69,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-17 12:48:26: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,6,128,186,0,0,0,0,2,0,1,72,20,202,67,0,0,185,65,1,255,69,0,0,0],"type":"Buffer"}'
debug 2022-09-17 12:48:26: Received Zigbee message from 'Back Lounge Blinds 2', type 'raw', cluster '64528', data '{"data":[13,99,18,70,128,76,202,226,128,254,2,0,0,144,31,38,67,0,0,178,65,1,255,111,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-17 12:48:26: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,70,128,76,202,226,128,254,2,0,0,144,31,38,67,0,0,178,65,1,255,111,0,0,0],"type":"Buffer"}'
debug 2022-09-17 12:48:26: Received MQTT message on 'homeassistant/linktap/A7523E24004B1200/state' with data '{"dev_id":"A7523E24004B1200","plan_mode":5,"plan_sn":598037866,"is_rf_linked":"ON","is_flm_plugin":"ON","is_fall":"OFF","is_broken":"OFF","is_cutoff":"OFF","is_leak":"OFF","is_clog":"OFF","signal":74,"battery":89,"child_lock":0,"is_manual_mode":"OFF","is_watering":"OFF","is_final":"ON","total_duration":60,"remain_duration":0,"speed":0.00,"volume":5.03,"failsafe_duration":0}'
debug 2022-09-17 12:48:26: Received MQTT message on 'homeassistant/linktap/A7523E24004B1200_water_switch/state' with data 'OFF'
debug 2022-09-17 12:48:26: Received MQTT message on 'homeassistant/linktap/A7523E24004B1200_fall_alarm/state' with data 'arming'
debug 2022-09-17 12:48:26: Received MQTT message on 'homeassistant/linktap/A7523E24004B1200_broken_alarm/state' with data 'arming'
debug 2022-09-17 12:48:26: Received MQTT message on 'homeassistant/linktap/A7523E24004B1200_cutoff_alarm/state' with data 'arming'
debug 2022-09-17 12:48:27: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"brightness":4}'
debug 2022-09-17 12:48:27: Publishing 'set' 'brightness' to '0x9035eafffecc7967'
debug 2022-09-17 12:48:27: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,16],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:27: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:32: Received Zigbee message from 'Back Lounge Blinds 4', type 'raw', cluster '64528', data '{"data":[13,99,18,88,128,78,0,0,0,0,2,0,0,184,163,134,67,0,0,181,65,1,255,84,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-17 12:48:32: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,88,128,78,0,0,0,0,2,0,0,184,163,134,67,0,0,181,65,1,255,84,0,0,0],"type":"Buffer"}'
debug 2022-09-17 12:48:32: Received Zigbee message from 'Back Lounge Blinds 3', type 'raw', cluster '64528', data '{"data":[13,99,18,52,128,76,0,0,0,0,2,0,0,160,181,163,67,0,0,181,65,1,255,81,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-17 12:48:32: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,52,128,76,0,0,0,0,2,0,0,160,181,163,67,0,0,181,65,1,255,81,0,0,0],"type":"Buffer"}'
debug 2022-09-17 12:48:33: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:33: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":4,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":257}' from endpoint 1 with groupID null
info  2022-09-17 12:48:34: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":513}' from endpoint 1 with groupID null
info  2022-09-17 12:48:34: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":769}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:34: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-17 12:48:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":1025}' from endpoint 1 with groupID null
info  2022-09-17 12:48:34: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":1281}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:34: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-17 12:48:34: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":1537}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:34: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-17 12:48:36: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"max_brightness":255}'
debug 2022-09-17 12:48:36: Publishing 'set' 'max_brightness' to '0x9035eafffecc7967'
debug 2022-09-17 12:48:36: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":5}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:36: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":255,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:38: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"min_brightness":3}'
debug 2022-09-17 12:48:38: Publishing 'set' 'min_brightness' to '0x9035eafffecc7967'
debug 2022-09-17 12:48:38: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,8],"type":"Buffer"},"datatype":2,"dp":3}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:38: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":255,"min_brightness":3,"state":"ON"}'
debug 2022-09-17 12:48:41: Received Zigbee message from 'Pool Filter Smart Plug', type 'attributeReport', cluster 'seMetering', data '{"currentSummDelivered":[0,24574]}' from endpoint 1 with groupID null
info  2022-09-17 12:48:41: MQTT publish: topic 'zigbee2mqtt/Pool Filter Smart Plug', payload '{"energy":245.74,"linkquality":255,"power":825,"state":"ON"}'
debug 2022-09-17 12:48:42: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:42: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":255,"min_brightness":3,"state":"ON"}'
debug 2022-09-17 12:48:42: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":257}' from endpoint 1 with groupID null
info  2022-09-17 12:48:43: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":255,"min_brightness":3,"state":"ON"}'
debug 2022-09-17 12:48:43: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":513}' from endpoint 1 with groupID null
info  2022-09-17 12:48:43: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":255,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:43: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":769}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:43: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-17 12:48:43: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":1025}' from endpoint 1 with groupID null
info  2022-09-17 12:48:43: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:43: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":1281}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:43: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-17 12:48:43: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":1537}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:43: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-17 12:48:43: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"brightness":10}'
debug 2022-09-17 12:48:43: Publishing 'set' 'brightness' to '0x9035eafffecc7967'
debug 2022-09-17 12:48:44: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,39],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:44: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":10,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:49: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"brightness":254}'
debug 2022-09-17 12:48:49: Publishing 'set' 'brightness' to '0x9035eafffecc7967'
debug 2022-09-17 12:48:49: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:49: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:49: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:49: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:49: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:49: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:49: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:49: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:50: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:50: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:50: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:50: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:50: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:50: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:50: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:50: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:50: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:50: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:51: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:51: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:51: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:51: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:51: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:51: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:51: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:51: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:51: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:51: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:52: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:52: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:52: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:52: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:52: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:52: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:52: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:52: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:52: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:52: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:53: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:53: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:53: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:53: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:53: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:53: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:53: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:53: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:53: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:53: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:54: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:54: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:54: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":257}' from endpoint 1 with groupID null
info  2022-09-17 12:48:54: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:54: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":513}' from endpoint 1 with groupID null
info  2022-09-17 12:48:54: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":192,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:54: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":769}' from endpoint 1 with groupID null
info  2022-09-17 12:48:54: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:54: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":1025}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:54: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-17 12:48:54: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":1281}' from endpoint 1 with groupID null
info  2022-09-17 12:48:54: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:55: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":1537}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:55: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-17 12:48:55: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":1793}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:55: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
error 2022-09-17 12:48:55: Failed to configure '0x9035eafffecc7967', attempt 1 (Error: Bind 0x9035eafffecc7967/1 genOnOff from '0x00212effff085ece/1' failed (waiting for response TIMEOUT)
    at DeconzAdapter.bind (/app/node_modules/zigbee-herdsman/src/adapter/deconz/adapter/deconzAdapter.ts:768:19)
    at Endpoint.bind (/app/node_modules/zigbee-herdsman/src/controller/model/endpoint.ts:567:13)
    at Object.bind (/app/node_modules/zigbee-herdsman-converters/lib/reporting.js:40:9)
    at Object.configure (/app/dist/util/externally-loaded.js:124:9)
    at Configure.configure (/app/lib/extension/configure.ts:115:13)
    at Configure.onMQTTMessage (/app/lib/extension/configure.ts:55:21))
info  2022-09-17 12:48:55: MQTT publish: topic 'zigbee2mqtt/bridge/response/device/configure', payload '{"data":{"id":"0x9035eafffecc7967"},"error":"Failed to configure (Bind 0x9035eafffecc7967/1 genOnOff from '0x00212effff085ece/1' failed (waiting for response TIMEOUT))","status":"error","transaction":"ky7az-2"}'
debug 2022-09-17 12:48:55: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":1793}' from endpoint 1 with groupID null
warn  2022-09-17 12:48:55: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-17 12:48:56: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"max_brightness":255}'
debug 2022-09-17 12:48:56: Publishing 'set' 'max_brightness' to '0x9035eafffecc7967'
debug 2022-09-17 12:48:56: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":5}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:56: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":255,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:48:59: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"brightness":204}'
debug 2022-09-17 12:48:59: Publishing 'set' 'brightness' to '0x9035eafffecc7967'
debug 2022-09-17 12:48:59: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,35],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:48:59: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":204,"linkquality":255,"max_brightness":255,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:49:00: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"brightness":254}'
debug 2022-09-17 12:49:00: Publishing 'set' 'brightness' to '0x9035eafffecc7967'
debug 2022-09-17 12:49:01: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:49:01: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":255,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:49:02: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:49:02: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":255,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:49:02: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":257}' from endpoint 1 with groupID null
info  2022-09-17 12:49:02: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":255,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:49:03: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":513}' from endpoint 1 with groupID null
info  2022-09-17 12:49:03: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":255,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:49:03: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":769}' from endpoint 1 with groupID null
warn  2022-09-17 12:49:03: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-17 12:49:03: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":1025}' from endpoint 1 with groupID null
info  2022-09-17 12:49:03: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"ON"}'
debug 2022-09-17 12:49:03: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":1281}' from endpoint 1 with groupID null
warn  2022-09-17 12:49:03: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-17 12:49:03: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":1537}' from endpoint 1 with groupID null
warn  2022-09-17 12:49:03: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-17 12:49:04: Received MQTT message on 'zigbee2mqtt/0x9035eafffecc7967/set' with data '{"state":"OFF"}'
debug 2022-09-17 12:49:04: Publishing 'set' 'state' to '0x9035eafffecc7967'
debug 2022-09-17 12:49:04: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:49:04: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-17 12:49:05: Received Zigbee message from 'Study Motion Sensor', type 'commandStatusChangeNotification', cluster 'ssIasZone', data '{"extendedstatus":0,"zonestatus":33}' from endpoint 1 with groupID null
info  2022-09-17 12:49:06: MQTT publish: topic 'zigbee2mqtt/Study Motion Sensor', payload '{"battery":100,"battery_low":false,"linkquality":255,"occupancy":true,"tamper":false,"temperature":23.46,"voltage":2900}'
debug 2022-09-17 12:49:06: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1}' from endpoint 1 with groupID null
info  2022-09-17 12:49:06: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-17 12:49:06: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":257}' from endpoint 1 with groupID null
info  2022-09-17 12:49:06: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-17 12:49:07: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":513}' from endpoint 1 with groupID null
info  2022-09-17 12:49:07: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-17 12:49:07: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":769}' from endpoint 1 with groupID null
warn  2022-09-17 12:49:07: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #4 from 0x9035eafffecc7967 with raw data '{"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["mode","moesSboostHeating","silvercrestSetColorTemp","haozeeBoostHeating","nousBattery","tthBattery","wlsBatteryPercentage","evanellHeatingSetpoint","AM02Mode","tshpsMaximumRange","lmsBattery"]
debug 2022-09-17 12:49:07: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":1025}' from endpoint 1 with groupID null
info  2022-09-17 12:49:07: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":216,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-17 12:49:07: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":1281}' from endpoint 1 with groupID null
warn  2022-09-17 12:49:07: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #6 from 0x9035eafffecc7967 with raw data '{"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}': type='commandDataResponse', datatype='value', value='0', known DP# usage: ["silvercrestSetEffect","haozeeRunningState","evanellBattery","tshpsSelfTest"]
debug 2022-09-17 12:49:07: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":1537}' from endpoint 1 with groupID null
warn  2022-09-17 12:49:07: zigbee-herdsman-converters:tuya_dimmer: Received unexpected Tuya DataPoint #14 from 0x9035eafffecc7967 with raw data '{"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}': type='commandDataResponse', datatype='enum', value='0', known DP# usage: ["runningState","moesSbattery","wooxBattery","haozeeFaultAlarm","nousTempAlarm","moesSwitchPowerOnBehavior","alectoBatteryState"]
debug 2022-09-17 12:49:15: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":1537}' from endpoint 1 with groupID null
info  2022-09-17 12:49:15: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-17 12:49:15: Received Zigbee message from '0x9035eafffecc7967', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":1793}' from endpoint 1 with groupID null
info  2022-09-17 12:49:15: MQTT publish: topic 'zigbee2mqtt/0x9035eafffecc7967', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'

@Koenkk
Copy link
Owner

Koenkk commented Sep 19, 2022

Does the dimming work now?

@shanelord01
Copy link

shanelord01 commented Sep 20, 2022

Does the dimming work now?

Update: Yes it does.

Within Z2M: Brightness works fine. Setting min-brightness and max-brightness don't work. Red error overlay popups "unexpected Tuya Datapoint" for 4, 6 and 14.

Within HA entity created by Z2M: Jumps to full brightness then moves to brightness requested every time you make a brightness adjustment.

@Koenkk
Copy link
Owner

Koenkk commented Sep 22, 2022

@shanelord01 can you check if with this converter the brightness and state works correctly?

@shanelord01
Copy link

shanelord01 commented Sep 23, 2022

@shanelord01 can you check if with this converter the brightness and state works correctly?

No errors on loading now, but I get this error when I try and change state in Z2M (off to on, brightness etc):

debug 2022-09-23 10:36:25: Received MQTT message on 'zigbee2mqtt/bridge/request/device/configure' with data '{"id":"Back Lounge Dimmer Light","transaction":"tgzsy-1"}'
info  2022-09-23 10:36:25: Configuring 'Back Lounge Dimmer Light'
info  2022-09-23 10:36:25: Successfully configured 'Back Lounge Dimmer Light'
info  2022-09-23 10:36:25: MQTT publish: topic 'zigbee2mqtt/bridge/response/device/configure', payload '{"data":{"id":"Back Lounge Dimmer Light"},"status":"ok","transaction":"tgzsy-1"}'
debug 2022-09-23 10:36:25: Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":4462}' from endpoint 1 with groupID null
debug 2022-09-23 10:36:25: No converter available for 'TS0601_dimmer' with cluster 'manuSpecificTuya' and type 'commandDataResponse' and data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":4462}'
debug 2022-09-23 10:36:25: Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":4462}' from endpoint 1 with groupID null
debug 2022-09-23 10:36:25: No converter available for 'TS0601_dimmer' with cluster 'manuSpecificTuya' and type 'commandDataResponse' and data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":4462}'
debug 2022-09-23 10:36:26: Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":4462}' from endpoint 1 with groupID null
debug 2022-09-23 10:36:26: No converter available for 'TS0601_dimmer' with cluster 'manuSpecificTuya' and type 'commandDataResponse' and data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":4462}'
debug 2022-09-23 10:36:26: Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":4718}' from endpoint 1 with groupID null
debug 2022-09-23 10:36:26: No converter available for 'TS0601_dimmer' with cluster 'manuSpecificTuya' and type 'commandDataResponse' and data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":4718}'
debug 2022-09-23 10:36:26: Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":4974}' from endpoint 1 with groupID null
debug 2022-09-23 10:36:26: No converter available for 'TS0601_dimmer' with cluster 'manuSpecificTuya' and type 'commandDataResponse' and data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":4974}'
debug 2022-09-23 10:36:26: Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":5230}' from endpoint 1 with groupID null
debug 2022-09-23 10:36:26: No converter available for 'TS0601_dimmer' with cluster 'manuSpecificTuya' and type 'commandDataResponse' and data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":5230}'
debug 2022-09-23 10:36:26: Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":5486}' from endpoint 1 with groupID null
debug 2022-09-23 10:36:26: No converter available for 'TS0601_dimmer' with cluster 'manuSpecificTuya' and type 'commandDataResponse' and data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":5486}'
debug 2022-09-23 10:36:26: Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":5486}' from endpoint 1 with groupID null
debug 2022-09-23 10:36:26: No converter available for 'TS0601_dimmer' with cluster 'manuSpecificTuya' and type 'commandDataResponse' and data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":5486}'
debug 2022-09-23 10:36:26: Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":5742}' from endpoint 1 with groupID null
debug 2022-09-23 10:36:26: No converter available for 'TS0601_dimmer' with cluster 'manuSpecificTuya' and type 'commandDataResponse' and data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":5742}'
debug 2022-09-23 10:36:26: Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":5998}' from endpoint 1 with groupID null
debug 2022-09-23 10:36:26: No converter available for 'TS0601_dimmer' with cluster 'manuSpecificTuya' and type 'commandDataResponse' and data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":5998}'
debug 2022-09-23 10:36:28: Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":41624}' from endpoint 1 with groupID null
debug 2022-09-23 10:36:28: No converter available for 'TS0601_dimmer' with cluster 'manuSpecificTuya' and type 'commandDataResponse' and data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":41624}'
debug 2022-09-23 10:36:28: Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":41880}' from endpoint 1 with groupID null
debug 2022-09-23 10:36:28: No converter available for 'TS0601_dimmer' with cluster 'manuSpecificTuya' and type 'commandDataResponse' and data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":41880}'
debug 2022-09-23 10:36:28: Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":42136}' from endpoint 1 with groupID null
debug 2022-09-23 10:36:28: No converter available for 'TS0601_dimmer' with cluster 'manuSpecificTuya' and type 'commandDataResponse' and data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":42136}'
debug 2022-09-23 10:36:28: Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":42392}' from endpoint 1 with groupID null
debug 2022-09-23 10:36:28: No converter available for 'TS0601_dimmer' with cluster 'manuSpecificTuya' and type 'commandDataResponse' and data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":42392}'
debug 2022-09-23 10:36:28: Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":42648}' from endpoint 1 with groupID null
debug 2022-09-23 10:36:28: No converter available for 'TS0601_dimmer' with cluster 'manuSpecificTuya' and type 'commandDataResponse' and data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":42648}'
debug 2022-09-23 10:36:28: Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":42904}' from endpoint 1 with groupID null
debug 2022-09-23 10:36:28: No converter available for 'TS0601_dimmer' with cluster 'manuSpecificTuya' and type 'commandDataResponse' and data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":42904}'
debug 2022-09-23 10:36:28: Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":43160}' from endpoint 1 with groupID null
debug 2022-09-23 10:36:28: No converter available for 'TS0601_dimmer' with cluster 'manuSpecificTuya' and type 'commandDataResponse' and data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":43160}'
debug 2022-09-23 10:36:29: Received MQTT message on 'zigbee2mqtt/Back Lounge Dimmer Light/set' with data '{"state":"ON"}'
error 2022-09-23 10:36:29: Error: Cannot read properties of undefined (reading 'includes')
debug 2022-09-23 10:36:29: TypeError: Cannot read properties of undefined (reading 'includes')
    at /app/lib/extension/publish.ts:209:60
    at Array.find (<anonymous>)
    at Publish.onMQTTMessage (/app/lib/extension/publish.ts:209:42)
    at EventEmitter.emit (node:events:539:35)
    at EventBus.emitMQTTMessage (/app/lib/eventBus.ts:109:22)
    at MQTT.onMessage (/app/lib/mqtt.ts:140:27)
    at WebSocket.<anonymous> (/app/lib/extension/frontend.ts:94:27)
    at WebSocket.emit (node:events:527:28)
    at Receiver.receiverOnMessage (/app/node_modules/ws/lib/websocket.js:1178:20)
    at Receiver.emit (node:events:527:28)

@Koenkk
Copy link
Owner

Koenkk commented Sep 23, 2022

Made a mistake, updated https://gist.github.com/Koenkk/9c36da807c3768a85aaed9a352c74e96 please try agian.

@shanelord01
Copy link

Made a mistake, updated https://gist.github.com/Koenkk/9c36da807c3768a85aaed9a352c74e96 please try agian.

Now getting these errors:

debug 2022-09-24 11:18:10: Received Zigbee message from 'Back Lounge Dimmer Light', type 'attributeReport', cluster 'genBasic', data '{"65506":31,"65508":0,"appVersion":68}' from endpoint 1 with groupID null
debug 2022-09-24 11:18:12: Received MQTT message on 'zigbee2mqtt/bridge/request/device/configure' with data '{"id":"Dining Room Dimmer Light","transaction":"7a2dn-1"}'
info  2022-09-24 11:18:12: Configuring 'Dining Room Dimmer Light'
info  2022-09-24 11:18:12: Successfully configured 'Dining Room Dimmer Light'
info  2022-09-24 11:18:13: MQTT publish: topic 'zigbee2mqtt/bridge/response/device/configure', payload '{"data":{"id":"Dining Room Dimmer Light"},"status":"ok","transaction":"7a2dn-1"}'
debug 2022-09-24 11:18:15: Received Zigbee message from 'Front Lounge Blinds 2', type 'raw', cluster '64528', data '{"data":[13,99,18,68,128,183,0,0,0,0,2,0,0,128,41,224,65,0,0,196,65,1,255,177,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-24 11:18:15: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,68,128,183,0,0,0,0,2,0,0,128,41,224,65,0,0,196,65,1,255,177,0,0,0],"type":"Buffer"}'
debug 2022-09-24 11:18:17: Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":29696}' from endpoint 1 with groupID null
info  2022-09-24 11:18:17: MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-24 11:18:17: Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":29952}' from endpoint 1 with groupID null
info  2022-09-24 11:18:17: MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-24 11:18:17: Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":30208}' from endpoint 1 with groupID null
info  2022-09-24 11:18:17: MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-24 11:18:17: Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":30464}' from endpoint 1 with groupID null
warn  2022-09-24 11:18:17: zigbee-herdsman-converters:fzDataPoints: dp 4 not defined for '_TZE200_1agwnems' with data {"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}
debug 2022-09-24 11:18:17: Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":30720}' from endpoint 1 with groupID null
info  2022-09-24 11:18:17: MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light', payload '{"brightness":254,"linkquality":160,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-24 11:18:17: Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":30976}' from endpoint 1 with groupID null
warn  2022-09-24 11:18:17: zigbee-herdsman-converters:fzDataPoints: dp 6 not defined for '_TZE200_1agwnems' with data {"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}
debug 2022-09-24 11:18:17: Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":31232}' from endpoint 1 with groupID null
warn  2022-09-24 11:18:17: zigbee-herdsman-converters:fzDataPoints: dp 14 not defined for '_TZE200_1agwnems' with data {"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}
debug 2022-09-24 11:18:18: Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":29696}' from endpoint 1 with groupID null
info  2022-09-24 11:18:18: MQTT publish: topic 'zigbee2mqtt/Dining Room Dimmer Light', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-24 11:18:18: Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":29952}' from endpoint 1 with groupID null
info  2022-09-24 11:18:18: MQTT publish: topic 'zigbee2mqtt/Dining Room Dimmer Light', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-24 11:18:18: Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":30208}' from endpoint 1 with groupID null
info  2022-09-24 11:18:18: MQTT publish: topic 'zigbee2mqtt/Dining Room Dimmer Light', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-24 11:18:18: Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":30464}' from endpoint 1 with groupID null
warn  2022-09-24 11:18:18: zigbee-herdsman-converters:fzDataPoints: dp 4 not defined for '_TZE200_1agwnems' with data {"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}
debug 2022-09-24 11:18:19: Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":30720}' from endpoint 1 with groupID null
info  2022-09-24 11:18:19: MQTT publish: topic 'zigbee2mqtt/Dining Room Dimmer Light', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-24 11:18:19: Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":30976}' from endpoint 1 with groupID null
warn  2022-09-24 11:18:19: zigbee-herdsman-converters:fzDataPoints: dp 6 not defined for '_TZE200_1agwnems' with data {"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}
debug 2022-09-24 11:18:19: Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":31232}' from endpoint 1 with groupID null
warn  2022-09-24 11:18:19: zigbee-herdsman-converters:fzDataPoints: dp 14 not defined for '_TZE200_1agwnems' with data {"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}
debug 2022-09-24 11:18:21: Received Zigbee message from 'Pool Filter Smart Plug', type 'read', cluster 'genTime', data '["time"]' from endpoint 1 with groupID null
debug 2022-09-24 11:18:21: Received Zigbee message from 'Pool Filter Smart Plug', type 'attributeReport', cluster 'seMetering', data '{"currentSummDelivered":[0,27888]}' from endpoint 1 with groupID null
info  2022-09-24 11:18:21: MQTT publish: topic 'zigbee2mqtt/Pool Filter Smart Plug', payload '{"energy":278.88,"linkquality":255,"power":810,"state":"ON"}'
debug 2022-09-24 11:18:26: Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":31232}' from endpoint 1 with groupID null
info  2022-09-24 11:18:26: MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light', payload '{"brightness":254,"linkquality":176,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-24 11:18:26: Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":31488}' from endpoint 1 with groupID null
info  2022-09-24 11:18:26: MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-24 11:18:26: Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":31744}' from endpoint 1 with groupID null
info  2022-09-24 11:18:26: MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-24 11:18:26: Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":32000}' from endpoint 1 with groupID null
warn  2022-09-24 11:18:26: zigbee-herdsman-converters:fzDataPoints: dp 4 not defined for '_TZE200_1agwnems' with data {"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}
debug 2022-09-24 11:18:26: Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":32256}' from endpoint 1 with groupID null
info  2022-09-24 11:18:26: MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-24 11:18:26: Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":32512}' from endpoint 1 with groupID null
warn  2022-09-24 11:18:26: zigbee-herdsman-converters:fzDataPoints: dp 6 not defined for '_TZE200_1agwnems' with data {"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}
debug 2022-09-24 11:18:26: Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":32768}' from endpoint 1 with groupID null
warn  2022-09-24 11:18:26: zigbee-herdsman-converters:fzDataPoints: dp 14 not defined for '_TZE200_1agwnems' with data {"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}
debug 2022-09-24 11:18:27: Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":31232}' from endpoint 1 with groupID null
info  2022-09-24 11:18:27: MQTT publish: topic 'zigbee2mqtt/Dining Room Dimmer Light', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-24 11:18:27: Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":31232}' from endpoint 1 with groupID null
info  2022-09-24 11:18:27: MQTT publish: topic 'zigbee2mqtt/Dining Room Dimmer Light', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-24 11:18:27: Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,232],"type":"Buffer"},"datatype":2,"dp":2}],"seq":31488}' from endpoint 1 with groupID null
info  2022-09-24 11:18:27: MQTT publish: topic 'zigbee2mqtt/Dining Room Dimmer Light', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-24 11:18:28: Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":31744}' from endpoint 1 with groupID null
info  2022-09-24 11:18:28: MQTT publish: topic 'zigbee2mqtt/Dining Room Dimmer Light', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-24 11:18:28: Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":32000}' from endpoint 1 with groupID null
warn  2022-09-24 11:18:28: zigbee-herdsman-converters:fzDataPoints: dp 4 not defined for '_TZE200_1agwnems' with data {"dp":4,"datatype":4,"data":{"type":"Buffer","data":[0]}}
debug 2022-09-24 11:18:28: Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":32256}' from endpoint 1 with groupID null
info  2022-09-24 11:18:28: MQTT publish: topic 'zigbee2mqtt/Dining Room Dimmer Light', payload '{"brightness":254,"linkquality":255,"max_brightness":7,"min_brightness":1,"state":"OFF"}'
debug 2022-09-24 11:18:28: Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":32512}' from endpoint 1 with groupID null
warn  2022-09-24 11:18:28: zigbee-herdsman-converters:fzDataPoints: dp 6 not defined for '_TZE200_1agwnems' with data {"dp":6,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}
debug 2022-09-24 11:18:28: Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":32768}' from endpoint 1 with groupID null
warn  2022-09-24 11:18:28: zigbee-herdsman-converters:fzDataPoints: dp 14 not defined for '_TZE200_1agwnems' with data {"dp":14,"datatype":4,"data":{"type":"Buffer","data":[0]}}
debug 2022-09-24 11:18:28: Received Zigbee message from 'Back Lounge Blinds 3', type 'raw', cluster '64528', data '{"data":[13,99,18,48,128,73,0,0,0,0,2,0,0,0,151,214,66,0,0,182,65,1,255,165,0,0,0],"type":"Buffer"}' from endpoint 1 with groupID null
debug 2022-09-24 11:18:28: No converter available for 'CP180335E-01' with cluster '64528' and type 'raw' and data '{"data":[13,99,18,48,128,73,0,0,0,0,2,0,0,0,151,214,66,0,0,182,65,1,255,165,0,0,0],"type":"Buffer"}'

@Koenkk
Copy link
Owner

Koenkk commented Sep 25, 2022

@shanelord01
Copy link

shanelord01 commented Sep 30, 2022

Top from Mosquitto logs, bottom from Z2M logs (which I can't see anything in when I publish the payload).

2022-09-30 22:55:26: Sending PUBLISH to 06gRVjwYvulrbWmUa6Umwo (d0, q0, r0, m0, 'zigbee2mqtt/Dining Room Dimmer Light', ... (147 bytes))
2022-09-30 22:55:26: Sending PUBLISH to mqttjs_3516dda1 (d0, q0, r0, m0, 'zigbee2mqtt/Dining Room Dimmer Light', ... (147 bytes))
2022-09-30 22:55:26: Received PUBLISH from mqttjs_3516dda1 (d0, q0, r0, m0, 'zigbee2mqtt/bridge/logging', ... (123 bytes))
2022-09-30 22:55:26: Sending PUBLISH to mqttjs_3516dda1 (d0, q0, r0, m0, 'zigbee2mqtt/bridge/logging', ... (123 bytes))
2022-09-30 22:55:26: Received PUBLISH from mqttjs_3516dda1 (d0, q0, r0, m0, 'zigbee2mqtt/Dining Room Dimmer Light/type', ... (15 bytes))
2022-09-30 22:55:26: Sending PUBLISH to mqttjs_3516dda1 (d0, q0, r0, m0, 'zigbee2mqtt/Dining Room Dimmer Light/type', ... (15 bytes))
2022-09-30 22:55:26: Received PUBLISH from 06gRVjwYvulrbWmUa6Umwo (d0, q0, r0, m0, 'zigbee2mqtt/Back Lounge Dimmer Light', ... (16 bytes))
2022-09-30 22:55:26: Sending PUBLISH to 06gRVjwYvulrbWmUa6Umwo (d0, q0, r0, m0, 'zigbee2mqtt/Back Lounge Dimmer Light', ... (16 bytes))
2022-09-30 22:55:26: Sending PUBLISH to mqttjs_3516dda1 (d0, q0, r0, m0, 'zigbee2mqtt/Back Lounge Dimmer Light', ... (16 bytes))

2022-09-30 22:58:31Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":11780}' from endpoint 1 with groupID null
Info 2022-09-30 22:58:31MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light', payload '{"brightness":201,"countdown":0,"light_type":"led","linkquality":255,"max_brightness":7,"min_brightness":1,"power_on_behavior":"off","state":"ON"}'
Info 2022-09-30 22:58:31MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light/type', payload '{"light":"led"}'
Debug 2022-09-30 22:58:31Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":12036}' from endpoint 1 with groupID null
Info 2022-09-30 22:58:31MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light', payload '{"brightness":201,"countdown":0,"light_type":"led","linkquality":255,"max_brightness":7,"min_brightness":1,"power_on_behavior":"off","state":"ON"}'
Info 2022-09-30 22:58:31MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light/type', payload '{"light":"led"}'
Debug 2022-09-30 22:58:31Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":12292}' from endpoint 1 with groupID null
Info 2022-09-30 22:58:31MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light', payload '{"brightness":201,"countdown":0,"light_type":"led","linkquality":255,"max_brightness":7,"min_brightness":1,"power_on_behavior":"off","state":"ON"}'
Info 2022-09-30 22:58:31MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light/type', payload '{"light":"led"}'
Debug 2022-09-30 22:58:31Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":12548}' from endpoint 1 with groupID null
Info 2022-09-30 22:58:31MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light', payload '{"brightness":201,"countdown":0,"light_type":"led","linkquality":255,"max_brightness":7,"min_brightness":1,"power_on_behavior":"off","state":"ON"}'
Info 2022-09-30 22:58:31MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light/type', payload '{"light":"led"}'
Debug 2022-09-30 22:58:40Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[1],"type":"Buffer"},"datatype":1,"dp":1}],"seq":12548}' from endpoint 1 with groupID null
Info 2022-09-30 22:58:40MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light', payload '{"brightness":201,"countdown":0,"light_type":"led","linkquality":255,"max_brightness":7,"min_brightness":1,"power_on_behavior":"off","state":"ON"}'
Info 2022-09-30 22:58:40MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light/type', payload '{"light":"led"}'
Debug 2022-09-30 22:58:40Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,3,23],"type":"Buffer"},"datatype":2,"dp":2}],"seq":12804}' from endpoint 1 with groupID null
Info 2022-09-30 22:58:40MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light', payload '{"brightness":201,"countdown":0,"light_type":"led","linkquality":255,"max_brightness":7,"min_brightness":1,"power_on_behavior":"off","state":"ON"}'
Info 2022-09-30 22:58:40MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light/type', payload '{"light":"led"}'
Debug 2022-09-30 22:58:40Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":13060}' from endpoint 1 with groupID null
Info 2022-09-30 22:58:40MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light', payload '{"brightness":201,"countdown":0,"light_type":"led","linkquality":255,"max_brightness":7,"min_brightness":1,"power_on_behavior":"off","state":"ON"}'
Info 2022-09-30 22:58:40MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light/type', payload '{"light":"led"}'
Debug 2022-09-30 22:58:40Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":13316}' from endpoint 1 with groupID null
Info 2022-09-30 22:58:40MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light', payload '{"brightness":201,"countdown":0,"light_type":"led","linkquality":255,"max_brightness":7,"min_brightness":1,"power_on_behavior":"off","state":"ON"}'
Info 2022-09-30 22:58:40MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light/type', payload '{"light":"led"}'
Debug 2022-09-30 22:58:40Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":13572}' from endpoint 1 with groupID null
Info 2022-09-30 22:58:40MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light', payload '{"brightness":201,"countdown":0,"light_type":"led","linkquality":255,"max_brightness":7,"min_brightness":1,"power_on_behavior":"off","state":"ON"}'
Info 2022-09-30 22:58:40MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light/type', payload '{"light":"led"}'
Debug 2022-09-30 22:58:40Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":13828}' from endpoint 1 with groupID null
Info 2022-09-30 22:58:40MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light', payload '{"brightness":201,"countdown":0,"light_type":"led","linkquality":255,"max_brightness":7,"min_brightness":1,"power_on_behavior":"off","state":"ON"}'
Info 2022-09-30 22:58:40MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light/type', payload '{"light":"led"}'
Debug 2022-09-30 22:58:40Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":14084}' from endpoint 1 with groupID null
Info 2022-09-30 22:58:40MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light', payload '{"brightness":201,"countdown":0,"light_type":"led","linkquality":255,"max_brightness":7,"min_brightness":1,"power_on_behavior":"off","state":"ON"}'
Info 2022-09-30 22:58:40MQTT publish: topic 'zigbee2mqtt/Back Lounge Dimmer Light/type', payload '{"light":"led"}'

@Koenkk
Copy link
Owner

Koenkk commented Sep 30, 2022

Whoops, instead of zigbee2mqtt/Back Lounge Dimmer Light you should use zigbee2mqtt/Back Lounge Dimmer Light/set, so please try the payloads from #13800 (comment) again.

@shanelord01
Copy link

shanelord01 commented Sep 30, 2022

zigbee2mqtt/Back Lounge Dimmer Light/set

Hah... OK that works...

Now. Changed the brightness to 30 to be more noticeable.

  1. {"brightness": 30}
    If OFF, does not turn ON. If ON, the brightness adjusts with no jump beforehand (nice).

  2. {"state": "ON", "brightness": 30}
    If OFF, turns ON at 100%, then dims to the level set in brightness. If ON, jumps to 100% then dims to level set in brightness.

  3. {"brightness": 30, "state": "ON"}
    If OFF, turns ON at 100%, then dims to the level set in brightness. If ON, jumps to 100% then dims to level set in brightness.

So option 1 is preferable, but the light would not turn on from only setting the brightness level - only from on/off (which I'm OK with but not sure if this is normal). Any way to only send the {"state": "ON"} along with brightness if the light is OFF?

Hope this helps.

@Koenkk
Copy link
Owner

Koenkk commented Sep 30, 2022

  • What happens if the bulb is OFF, you publish {"brightness": 30} and shortly after that {"state": ON}, does the jump occur?
  • What happens if the bulb is ON, you publish {"brightness": 30}, publish {"state": "OFF"}, publish {"state": "ON"}, does the bulb turn on at 100% or the 30 brightness?

@shanelord01
Copy link

shanelord01 commented Sep 30, 2022

  • What happens if the bulb is OFF, you publish {"brightness": 30} and shortly after that {"state": ON}, does the jump occur?

Yes - goes to 100% then drops to 30%

  • What happens if the bulb is ON, you publish {"brightness": 30}, publish {"state": "OFF"}, publish {"state": "ON"}, does the bulb turn on at 100% or the 30 brightness?

Goes to 30%. Turns off. [publish on] then goes to 100% then drops to 30%

@shanelord01
Copy link

shanelord01 commented Sep 30, 2022

Seems like {"state": "ON"} for this switch is ON/100%, then adjust to brightness setting, rather than start at previous brightness level.

If this can't be fixed due to a switch limitation, any chance a "Setting (specific)" can be provided for this to not send "{"state": "ON"}" with brightness change? Or is that not possible?

@Koenkk
Copy link
Owner

Koenkk commented Sep 30, 2022

  • So the OFF -> ON brightness jumps seems to be inevitable, just to be sure can you check if it shows the same behavior with the TuYa gateway
  • The best thing we can do is not publish the ON when the switch is already ON and the brightness is changed. This prevents the brightness jumps when the device is already ON. I've updated https://gist.github.com/Koenkk/9c36da807c3768a85aaed9a352c74e96 so when the switch is already ON and you publish {"state":"ON", "brightness": 30} no jumping should occur.

@shanelord01
Copy link

  • So the OFF -> ON brightness jumps seems to be inevitable, just to be sure can you check if it shows the same behavior with the TuYa gateway
  • The best thing we can do is not publish the ON when the switch is already ON and the brightness is changed. This prevents the brightness jumps when the device is already ON. I've updated https://gist.github.com/Koenkk/9c36da807c3768a85aaed9a352c74e96 so when the switch is already ON and you publish {"state":"ON", "brightness": 30} no jumping should occur.

Brilliant! This is all working perfectly. Thankyou!

Koenkk added a commit to Koenkk/zigbee-herdsman-converters that referenced this issue Oct 1, 2022
@Koenkk
Copy link
Owner

Koenkk commented Oct 1, 2022

Great, I've integrated the changes which will be included in the next z2m release (1 hour from now)

Please do a final check if everything works without using an external converter then.

@iJuiceman
Copy link

I have been following this thread, as I have the same problems as @shanelord01
I have updated my .js to the latest code, and while I am not seeing the errors anymore, I am being spammed in the debug/info log for this dimmer. I am about ready to rip the thing off the wall.
Any suggestions ?

debug 2022-10-02 15:52:27Received Zigbee message from 'Toyroom Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,1,202],"type":"Buffer"},"datatype":2,"dp":2}],"seq":4609}' from endpoint 1 with groupID 0
Info 2022-10-02 15:52:27MQTT publish: topic 'zigbee2mqtt/Toyroom Light', payload '{"brightness":116,"countdown":0,"light_type":"led","linkquality":68,"max_brightness":6,"min_brightness":0,"power_on_behavior":"off","state":"ON"}'
Info 2022-10-02 15:52:27MQTT publish: topic 'zigbee2mqtt/Toyroom Light/type', payload '{"light":"led"}'
Debug 2022-10-02 15:52:27Received Zigbee message from 'Toyroom Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":4865}' from endpoint 1 with groupID 0
Info 2022-10-02 15:52:27MQTT publish: topic 'zigbee2mqtt/Toyroom Light', payload '{"brightness":116,"countdown":0,"light_type":"led","linkquality":68,"max_brightness":6,"min_brightness":0,"power_on_behavior":"off","state":"ON"}'
Info 2022-10-02 15:52:27MQTT publish: topic 'zigbee2mqtt/Toyroom Light/type', payload '{"light":"led"}'
Debug 2022-10-02 15:52:28Received Zigbee message from 'Toyroom Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":5121}' from endpoint 1 with groupID 0
Info 2022-10-02 15:52:28MQTT publish: topic 'zigbee2mqtt/Toyroom Light', payload '{"brightness":116,"countdown":0,"light_type":"led","linkquality":72,"max_brightness":6,"min_brightness":0,"power_on_behavior":"off","state":"ON"}'
Info 2022-10-02 15:52:28MQTT publish: topic 'zigbee2mqtt/Toyroom Light/type', payload '{"light":"led"}'
Debug 2022-10-02 15:52:28Received Zigbee message from 'Toyroom Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":5377}' from endpoint 1 with groupID 0
Info 2022-10-02 15:52:28MQTT publish: topic 'zigbee2mqtt/Toyroom Light', payload '{"brightness":116,"countdown":0,"light_type":"led","linkquality":68,"max_brightness":6,"min_brightness":0,"power_on_behavior":"off","state":"ON"}'

@Koenkk
Copy link
Owner

Koenkk commented Oct 3, 2022

I also saw this in the log from @shanelord01 , seems the device is constantly sending the light type for some reason. Not sure why but this looks to be an issue on the device side.

@benflux
Copy link

benflux commented Oct 11, 2022 via email

@shanelord01
Copy link

shanelord01 commented Oct 16, 2022

Just updated to latest Z2M dev release.

Now getting this error:
Exception while calling fromZigbee converter: dpEntry[2].from is not a function}

Can't tell if it's related to these switches or something new.

@Koenkk
Copy link
Owner

Koenkk commented Oct 18, 2022

@shanelord01 did you remove your external converter? It is supported out-of-the box in the latest z2m dev.

@shanelord01
Copy link

shanelord01 commented Nov 2, 2022

@shanelord01 did you remove your external converter? It is supported out-of-the box in the latest z2m dev.

I had removed it and still getting the error. I've just moved to the latest release version 1.28.1 and getting the same error. No external converter in use:

"Exception while calling fromZigbee converter: dpEntry[2].from is not a function}"

@Koenkk
Copy link
Owner

Koenkk commented Nov 2, 2022

@shanelord01 can you provide the debug log of this?

See https://www.zigbee2mqtt.io/guide/usage/debug.html on how to enable debug logging.

@shanelord01
Copy link

shanelord01 commented Nov 6, 2022

@shanelord01 can you provide the debug log of this?

See https://www.zigbee2mqtt.io/guide/usage/debug.html on how to enable debug logging.

Here you go. Sorry for the delay.


2022-11-07 10:33:47Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,113],"type":"Buffer"},"datatype":2,"dp":2}],"seq":45677}' from endpoint 1 with groupID null
2022-11-07 10:33:47Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,113],"type":"Buffer"},"datatype":2,"dp":2}],"seq":45677}' from endpoint 1 with groupID null
2022-11-07 10:33:47Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,113],"type":"Buffer"},"datatype":2,"dp":2}],"seq":45677}' from endpoint 1 with groupID null
2022-11-07 10:33:47Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,113],"type":"Buffer"},"datatype":2,"dp":2}],"seq":45677}' from endpoint 1 with groupID null
2022-11-07 10:33:48Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,113],"type":"Buffer"},"datatype":2,"dp":2}],"seq":45677}' from endpoint 1 with groupID null
2022-11-07 10:33:48Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,113],"type":"Buffer"},"datatype":2,"dp":2}],"seq":45677}' from endpoint 1 with groupID null
2022-11-07 10:33:48Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,113],"type":"Buffer"},"datatype":2,"dp":2}],"seq":45677}' from endpoint 1 with groupID null
2022-11-07 10:33:48Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,113],"type":"Buffer"},"datatype":2,"dp":2}],"seq":45677}' from endpoint 1 with groupID null
2022-11-07 10:33:48Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,113],"type":"Buffer"},"datatype":2,"dp":2}],"seq":45677}' from endpoint 1 with groupID null
2022-11-07 10:33:49Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,113],"type":"Buffer"},"datatype":2,"dp":2}],"seq":45677}' from endpoint 1 with groupID null
2022-11-07 10:33:49Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,113],"type":"Buffer"},"datatype":2,"dp":2}],"seq":45677}' from endpoint 1 with groupID null
2022-11-07 10:33:49Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,113],"type":"Buffer"},"datatype":2,"dp":2}],"seq":45677}' from endpoint 1 with groupID null
2022-11-07 10:33:49Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,113],"type":"Buffer"},"datatype":2,"dp":2}],"seq":45677}' from endpoint 1 with groupID null
2022-11-07 10:33:49Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,113],"type":"Buffer"},"datatype":2,"dp":2}],"seq":45677}' from endpoint 1 with groupID null
2022-11-07 10:33:50Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,113],"type":"Buffer"},"datatype":2,"dp":2}],"seq":45677}' from endpoint 1 with groupID null
2022-11-07 10:33:50Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,113],"type":"Buffer"},"datatype":2,"dp":2}],"seq":45677}' from endpoint 1 with groupID null
2022-11-07 10:33:50Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,113],"type":"Buffer"},"datatype":2,"dp":2}],"seq":45677}' from endpoint 1 with groupID null
2022-11-07 10:33:50Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,113],"type":"Buffer"},"datatype":2,"dp":2}],"seq":45677}' from endpoint 1 with groupID null
2022-11-07 10:33:50Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,113],"type":"Buffer"},"datatype":2,"dp":2}],"seq":45677}' from endpoint 1 with groupID null
2022-11-07 10:33:51Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,113],"type":"Buffer"},"datatype":2,"dp":2}],"seq":45677}' from endpoint 1 with groupID null
2022-11-07 10:33:51Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,113],"type":"Buffer"},"datatype":2,"dp":2}],"seq":45677}' from endpoint 1 with groupID null
2022-11-07 10:33:51Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":45933}' from endpoint 1 with groupID null
2022-11-07 10:33:51Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":46189}' from endpoint 1 with groupID null
2022-11-07 10:33:51Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":46445}' from endpoint 1 with groupID null
2022-11-07 10:33:51Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":46701}' from endpoint 1 with groupID null
2022-11-07 10:33:51TypeError: dpEntry[2].from is not a function at Object.convert (/app/node_modules/zigbee-herdsman-converters/lib/tuya.js:1430:53) at Receive.onDeviceMessage (/app/lib/extension/receive.ts:143:51) at EventEmitter.emit (node:events:525:35) at EventBus.emitDeviceMessage (/app/lib/eventBus.ts:102:22) at Controller.<anonymous> (/app/lib/zigbee.ts:106:27) at Controller.emit (node:events:513:28) at Controller.selfAndDeviceEmit (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:515:14) at Controller.onZclOrRawData (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:726:18) at DeconzAdapter.<anonymous> (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:144:70) at DeconzAdapter.emit (node:events:513:28)
2022-11-07 10:33:51Received Zigbee message from 'Dining Room Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":46957}' from endpoint 1 with groupID null
2022-11-07 10:33:53Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":1,"dp":1}],"seq":38765}' from endpoint 1 with groupID null
2022-11-07 10:33:53Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,2,196],"type":"Buffer"},"datatype":2,"dp":2}],"seq":39021}' from endpoint 1 with groupID null
2022-11-07 10:33:53Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,1],"type":"Buffer"},"datatype":2,"dp":3}],"seq":39277}' from endpoint 1 with groupID null
2022-11-07 10:33:54Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":4}],"seq":39533}' from endpoint 1 with groupID null
2022-11-07 10:33:54Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,24],"type":"Buffer"},"datatype":2,"dp":5}],"seq":39789}' from endpoint 1 with groupID null
2022-11-07 10:33:54Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":6}],"seq":40045}' from endpoint 1 with groupID null
2022-11-07 10:33:54TypeError: dpEntry[2].from is not a function at Object.convert (/app/node_modules/zigbee-herdsman-converters/lib/tuya.js:1430:53) at Receive.onDeviceMessage (/app/lib/extension/receive.ts:143:51) at EventEmitter.emit (node:events:525:35) at EventBus.emitDeviceMessage (/app/lib/eventBus.ts:102:22) at Controller.<anonymous> (/app/lib/zigbee.ts:106:27) at Controller.emit (node:events:513:28) at Controller.selfAndDeviceEmit (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:515:14) at Controller.onZclOrRawData (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:726:18) at DeconzAdapter.<anonymous> (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:144:70) at DeconzAdapter.emit (node:events:513:28)
2022-11-07 10:33:54Received Zigbee message from 'Back Lounge Dimmer Light', type 'commandDataResponse', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0],"type":"Buffer"},"datatype":4,"dp":14}],"seq":40301}' from endpoint 1 with groupID null

Koenkk added a commit to Koenkk/zigbee-herdsman-converters that referenced this issue Nov 7, 2022
@Koenkk
Copy link
Owner

Koenkk commented Nov 7, 2022

Fixed!

Changes will be available in the dev branch in a few hours from now. (https://www.zigbee2mqtt.io/advanced/more/switch-to-dev-branch.html)

@shanelord01
Copy link

Fixed!

Changes will be available in the dev branch in a few hours from now. (https://www.zigbee2mqtt.io/advanced/more/switch-to-dev-branch.html)

Thankyou! No more errors and all seems to be working with preliminary tests.

@Koenkk
Copy link
Owner

Koenkk commented Nov 8, 2022

Great, I assume this issue can be closed now.

@Koenkk Koenkk closed this as completed Nov 8, 2022
@benflux
Copy link

benflux commented Nov 12, 2022

Any chance this can be released?

@Koenkk
Copy link
Owner

Koenkk commented Nov 13, 2022

@benflux it will be included in the next release on 1 December.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
new device support New device support request
Projects
None yet
Development

No branches or pull requests

5 participants