-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
I want to add my new device, Tuya curtain motor(TS0601) #3088
Comments
And I try to get more log. I'm not sure what data means(why it changes) zigbee2mqtt:debug 2020-03-09 00:39:37: Received Zigbee message from '0xec1bbdfffec3d049', type 'raw', cluster 'manuSpecificTuyaDimmer', data '{"type":"Buffer","data":[9,4,2,0,3,7,4,0,1,0]}' from endpoint 1 with groupID 0 zigbee2mqtt:debug 2020-03-09 00:40:28: Received Zigbee message from '0xec1bbdfffec3d049', type 'attributeReport', cluster 'genBasic', data '{"65506":21,"appVersion":255}' from endpoint 1 with groupID 0 |
Can you try with: {
zigbeeModel: ['TS0601'],
model: 'YS-MT750',
vendor: 'TuYa',
description: 'Tuya curtain motor',
supports: 'open, close, stop, position',
fromZigbee: [],
toZigbee: [tz.cover_state],
}, and control the curtain by sending to |
thanks for your comment, |
when I input in developer tools->Mqtt->publish a packet with zigbee2mqtt/0xec1bbdfffec3d049/set in topic and "state": "OPEN" in payload, I'm not sure that what I did is exactly same as what you wanted me to do zigbee2mqtt:debug 2020-03-10 04:52:18: Received MQTT message on 'zigbee2mqtt/0xec1bbdfffec3d049/set' with data '"state": "OPEN"' |
The payload should be |
and then, error msg disappeared but there is still no response from the device. zigbee2mqtt:debug 2020-03-10 06:00:14: Received MQTT message on 'zigbee2mqtt/tuya_curtain_motor/set' with data '{"state": "OPEN"}' |
In that case this device uses non-standard Zigbee commands, the only way to found out what to send is by sniffing the traffic when controlling it via the original gateway. |
Okay I'm discussing it with manufacturer. And what gateway I need. Probably it will take some time to get the gateway. Anyway if any ways to sniff the traffic, please guide me. Thanks for your continuing help^^ |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Any luck with this? I have the same Tuya YS-MT750 and try to get it connected with RaspBee and Deconz to Home Assistant. Is this motor and Zigbee interface is the same as https://www.zigbee2mqtt.io/devices/owvfni3.html or Koenkk/zigbee-herdsman-converters#1159 ? |
is it paired with the products as you linked?
2020년 5월 14일 (목) 오전 3:46, jeholsa <notifications@github.com>님이 작성:
… Any luck with this? I have the same Tuya YS-MT750 and try to get it
connected with RaspBee and Deconz to Home Assistant. Is this motor and
Zigbee interface is the same as
https://www.zigbee2mqtt.io/devices/owvfni3.html or
Koenkk/zigbee-herdsman-converters#1159
<Koenkk/zigbee-herdsman-converters#1159> ?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#3088 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AOAAPIJY7GO27QRRUV4DP2LRRLTIHANCNFSM4LDZ47NQ>
.
|
Support for the TS0601 was added with Koenkk/zigbee-herdsman-converters#1211 so it should work in the latest version. Maybe these two can be merged @Koenkk? |
@DomiStyle aren't these different devices? (pictures on https://www.zigbee2mqtt.io/information/supported_devices.html#tuya are different) |
@Koenkk The picture for the owvfni3 is not the correct one, mine looks more like the TS0601. I assume there are a few dozen of these rebranded TuYa motors though, searching for tuya curtain motors brings up quite a few different ones but they all have the same antenna and port on the bottom. If the TS0601 works as is in the devices.js they seem to speak the same protocol though. Also, neither the TuYa owvfni3 nor the TuYa TS0601 exists, that's just what the devices report via Zigbee. |
@DomiStyle thanks for your response. It indeed makes sense to merge them so done this. Assuming this issue can be closed as the device is supported now. |
Bug Report
What happened
Recently I bought tuya zigbee curtain motor(see below link)
https://ko.aliexpress.com/item/4000463256008.html?spm=a2g12.12010612.8148356.5.35a5312b29uwEn
I'm trying to add this device to z2m, but not easy for me.
Could you help me?
I succeeded in paring, and triggered some actions and then I add the device to devices.js
when I triggered some action, the log is as follows.
Received Zigbee message from '0xec1bbdfffec3d049', type 'attributeReport', cluster 'genBasic', data '{"65506":21,"appVersion":82}' from endpoint 1 with groupID 0
Received Zigbee message from '0xec1bbdfffec3d049', type 'raw', cluster 'manuSpecificTuyaDimmer', data '{"type":"Buffer","data":[9,9,2,0,3,7,4,0,1,1]}' from endpoint 1 with groupID 0
Received Zigbee message from '0xec1bbdfffec3d049', type 'read', cluster 'genTime', data '["localTime"]' from endpoint 1 with groupID 0
and when motor moves, i got the log(#2), and when I make motor spin in a reverse direction, I got different data. I guess that the data shows the function of "open" or "close" but I'm not sure
unfortunately, I don't have remote controller(RF), so I couldn't test "stop" or "position" function.
and the device that I added to devices.js is as below.
{
zigbeeModel: ['TS0601'],
model: 'YS-MT750',
vendor: 'TuYa',
description: 'Tuya curtain motor',
supports: 'open, close, stop, position',
fromZigbee: [fz.tuya_switch, fz.ZNCLDJ11LM_ZNCLDJ12LM_curtain_options_output, fz.ignore_basic_report, fz.ignore_time_read, fz.cover_position_tilt, fz.ZNCLDJ11LM_ZNCLDJ12LM_curtain_analog_output],
toZigbee: [],
},
Actually, I don't have the ability to add new converter to fromZigbee.js, so I just use the existing ones. I searched for the converters which match with cluster and type shown on my log and I added some converters from Xiaomi curtain motor.
Currently, the message of "No converter available" disappeared. but I still can't add this device in my HA.
Your help and feedback would be much appreciated.
What did you expect to happen
How to reproduce it (minimal and precise)
Debug Info
zigbee2mqtt version:
CC253X firmware version:
The text was updated successfully, but these errors were encountered: