Search found 19 matches

by firmware@nuos.in
2025年 Mar 25日 15:11
Forum: TuyaOS-Zigbee Device Development
Topic: Tuya Zigbee Thermostat
Replies: 7
Views: 114

Re: Tuya Zigbee Thermostat

Ok, Now i used your suggestion, and its still not working in my case. There is send_data->frame_type = ZG_ZCL_FRAME_TYPE_SPEC_TO_CLUSTER; as per your suggestion. But in my zigbee library, there is no frame_type, i have data.type means zigbee type_id. zb_zcl_custom_cluster_cmd_req_t cmd_req = { .addr...
by firmware@nuos.in
2025年 Mar 25日 14:26
Forum: TuyaOS-Zigbee Device Development
Topic: Tuya Zigbee Thermostat
Replies: 7
Views: 114

Re: Tuya Zigbee Thermostat

Ok sure I have to send 10 bytes frame to set set zigbee thermostat temperature. zb_zcl_custom_cluster_cmd_req_t cmd_req = { .address_mode = ZB_APS_ADDR_MODE_16_ENDP_PRESENT, .cluster_id = 0xEF00, .custom_cmd_id = 1, //Is this correct .data.value = message->data, //10 bytes data .data.size = message-...
by firmware@nuos.in
2025年 Mar 25日 13:40
Forum: TuyaOS-Zigbee Device Development
Topic: Tuya Zigbee Thermostat
Replies: 7
Views: 114

Re: Tuya Zigbee Thermostat

Thanks for the link, but this is tuya serial communciation protocol.
But I am asking for Zigbee standard custom 10 bytes frame send directly to tuya gateway.

by firmware@nuos.in
2025年 Mar 25日 13:09
Forum: TuyaOS-Zigbee Device Development
Topic: Tuya Zigbee Thermostat
Replies: 7
Views: 114

Tuya Zigbee Thermostat

Hi,

Can you please tell me what Tuya is using value of zigbee type_id for 10 bytes of frame of cluster 0xEF00.

by firmware@nuos.in
2025年 Mar 21日 20:12
Forum: TuyaOS-Zigbee Device Development
Topic: Standard Zigbee Thermostat Clusters for Tuya
Replies: 0
Views: 129

Standard Zigbee Thermostat Clusters for Tuya

I there any Tuya UI Studio Interface in smartlife app that opeartes with Standard Zigbee Thermostat Clusters for Tuya and not 0xEF00. I am facing issue with 0xEF00 and standard clusters are not working for thermostat only.

by firmware@nuos.in
2025年 Mar 21日 18:45
Forum: TuyaOS-Zigbee Device Development
Topic: Zigbee Thermostat Cluster
Replies: 8
Views: 254

Re: Zigbee Thermostat Cluster

Now i only successfully able to send the command of type_id(data frame size) <= 8, above 8, my no other enum defined type_id is working. In your code, you passed ZG_ZCL_FRAME_TYPE_SPEC_TO_CLUSTER to type_id. So what is the value of "ZG_ZCL_FRAME_TYPE_SPEC_TO_CLUSTER". Is this the type_id? ...
by firmware@nuos.in
2025年 Mar 21日 14:56
Forum: TuyaOS-Zigbee Device Development
Topic: Zigbee Thermostat Cluster
Replies: 8
Views: 254

Re: Zigbee Thermostat Cluster

Thanks for the code, but i am unable to found usage of EF00 cluster in all files

by firmware@nuos.in
2025年 Mar 21日 14:11
Forum: TuyaOS-Zigbee Device Development
Topic: Zigbee Thermostat Cluster
Replies: 8
Views: 254

Re: Zigbee Thermostat Cluster

My device id is d7c9098f9b75359e07yuav Ok, but in order to set back temperature value or mode or fan speed from my device(server cluster) to smart life app(client clusters), what will be the command_id for setting temperature, mode, fan speed and state onoff. Due to lack of tuya thermostat documenta...
by firmware@nuos.in
2025年 Mar 21日 14:07
Forum: TuyaOS-Zigbee Device Development
Topic: Zigbee Thermostat Cluster
Replies: 8
Views: 254

Re: Zigbee Thermostat Cluster

Ok, but in order to set back temperature value or mode or fan speed from my device(server cluster) to smart life app(client clusters), what will be the command_id for setting temperature, mode, fan speed and state onoff.

by firmware@nuos.in
2025年 Mar 21日 13:41
Forum: TuyaOS-Zigbee Device Development
Topic: Zigbee Thermostat Cluster
Replies: 8
Views: 254

Zigbee Thermostat Cluster

Hi, I am using Zigbee Thermostat showing current temperature and setting tempertaure, mode and on-off. when i change temperature from 16 to 23 from smart life app, then i receive following commands "0x3 0xb1 0x32 0x2 0x0 0x4 0x0 0x0 0x0 0x16" on tuya cluster 0xEF00. But temperature is not ...