-
Notifications
You must be signed in to change notification settings - Fork 22
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
ZBHCI_CMD_ZCL_ATTR_WRITE_RCV example #40
Comments
Good question, and the simple answer ZBHCI_CMD_ZCL_ATTR_WRITE_RCV message not handling. ZCL_DATA_TYPE_UINT8 ZCL_DATA_TYPE_UINT16 ZCL_DATA_TYPE_UINT32 ZCL_DATA_TYPE_UINT64
But sender side having bug as well, the bytes order is wrong, so sending uint32_t 0x01020304 , you will receive 0x04030201
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From my home automation application I am trying to write to the BINARY OUTPUT cluster (0x0010) or a T-Zigbee device. When I write a bool value to the PresentValue attribute (0x0055), I receive a ZBHCI_CMD_ZCL_ATTR_WRITE_RCV message on the T-Zigbee, but I cannot find an example of how to parse that message. There also is no handler in the zbhciCmdHandler function for that message type.
The text was updated successfully, but these errors were encountered: