Open and7ey opened 2 weeks ago
Here some of the data points found:
[2024-11-02 20:42:56] debug: z2m: Received Zigbee message from '0xa4c138df4695086d', type 'commandActiveStatusReportAlt', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":110}],"seq":29952}' from endpoint 1 with groupID 0
[2024-11-02 20:42:56] debug: zhc:tuya: Datapoint 110 not defined for '_TZ3210_sxtfesc6' with value 0
[2024-11-02 20:43:09] debug: z2m: Received Zigbee message from '0xa4c138df4695086d', type 'commandActiveStatusReportAlt', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,16],"type":"Buffer"},"datatype":2,"dp":107}],"seq":30464}' from endpoint 1 with groupID 0
[2024-11-02 20:43:09] debug: zhc:tuya: Datapoint 107 not defined for '_TZ3210_sxtfesc6' with value 16
[2024-11-02 20:43:09] debug: z2m: Received Zigbee message from '0xa4c138df4695086d', type 'commandActiveStatusReportAlt', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,16],"type":"Buffer"},"datatype":2,"dp":107}],"seq":30720}' from endpoint 1 with groupID 0
[2024-11-02 20:43:09] debug: zhc:tuya: Datapoint 107 not defined for '_TZ3210_sxtfesc6' with value 16
[2024-11-02 20:51:56] debug: z2m: Received Zigbee message from '0xa4c138df4695086d', type 'commandActiveStatusReportAlt', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,52],"type":"Buffer"},"datatype":2,"dp":107}],"seq":33536}' from endpoint 1 with groupID 0
[2024-11-02 20:51:56] debug: zhc:tuya: Datapoint 107 not defined for '_TZ3210_sxtfesc6' with value 52
[2024-11-02 20:43:09] debug: z2m: Received Zigbee message from '0xa4c138df4695086d', type 'commandActiveStatusReportAlt', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,100],"type":"Buffer"},"datatype":2,"dp":13}],"seq":30976}' from endpoint 1 with groupID 0
[2024-11-02 20:43:09] debug: zhc:tuya: Datapoint 13 not defined for '_TZ3210_sxtfesc6' with value 100
[2024-11-02 20:51:56] debug: z2m: Received Zigbee message from '0xa4c138df4695086d', type 'commandActiveStatusReportAlt', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,100],"type":"Buffer"},"datatype":2,"dp":3}],"seq":33280}' from endpoint 1 with groupID 0
[2024-11-02 20:51:56] debug: zhc:tuya: Datapoint 3 not defined for '_TZ3210_sxtfesc6' with value 100
[2024-11-02 20:50:12] debug: z2m: Received Zigbee message from '0xa4c138df4695086d', type 'commandActiveStatusReportAlt', cluster 'manuSpecificTuya', data '{"dpValues":[{"data":{"data":[0,0,0,0],"type":"Buffer"},"datatype":2,"dp":13}],"seq":32000}' from endpoint 1 with groupID 0
[2024-11-02 20:50:12] debug: zhc:tuya: Datapoint 13 not defined for '_TZ3210_sxtfesc6' with value 0
Following this bc i want to buy these devices too, but only with z2m support 😉
@and7ey have you made any progress?
With dinamik1488 support we've developed more or less working version. But I've ordered tuya zigbee gateway to make the integration better.
Here is the current version
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 e = exposes.presets;
const ea = exposes.access;
const tuya = require('zigbee-herdsman-converters/lib/tuya');
const definition = {
fingerprint: tuya.fingerprint('TS030F', ['_TZ3210_sxtfesc6']),
model: 'ADCBZI01',
vendor: 'Moes',
description: 'Curtain Robot',
fromZigbee: [fz.cover_position_tilt, tuya.fz.datapoints],
toZigbee: [tz.cover_position_tilt, tz.cover_state, tuya.tz.datapoints],
exposes: [
e.cover_position(),
e.position(),
e.battery(),
e.illuminance(),
],
meta: {
tuyaDatapoints: [
[3, 'position', tuya.valueConverter.raw],
[13, 'battery', tuya.valueConverter.raw],
[107, 'illuminance', tuya.valueConverter.raw],
],
},
};
module.exports = definition;
I can open/close the curtain and control the position. The battery and illuminance are available. But I can not revert the motor ;(
I've got the following table from MOES:
Would appreciate if somebody help me with motor inversion.
Link
https://aliexpress.ru/item/1005007923066724.html
Database entry
Zigbee2MQTT version
1.41.0
Comments
The device 0xa4c138df4695086d is detected as https://www.zigbee2mqtt.io/devices/TS030F.html, but doesn't work as expected. Sometimes it moves the curtain by 10 cms only. But in many cases just doesn't react and returns timeout.
Here are some logs:
I tried to follow https://www.zigbee2mqtt.io/advanced/support-new-devices/02_support_new_tuya_devices.html, but not sure where to take datapoints.
External definition
What does/doesn't work with the external definition?
doesn't work as expected. Sometimes it moves the curtain by 10 cms only. But in many cases just doesn't react and returns timeout.