You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have updated my IDF branch (master or release) and ESP Zigbee libs (esp-zboss-lib and esp-zigbee-lib) to the latest version and checked that the issue is present there.
I have searched the issue tracker for a similar issue and not found a similar issue.
IDF version.
v5.1.1-588-gc1c843f5e2
esp-zigbee-lib version.
1.1.0
esp-zboss-lib version.
1.1.0
Espressif SoC revision.
ESP32-H2
What is the expected behavior?
Hello, I am trying to set up the reports for a device using the functions added in the 1.0.3 zigbee sdk version ( #137). After creating the cluster structure, I use the mentioned functions to configure the default values for the reports and the reporting delta. The goal was to configure certain attributes so that they only report when changes occur.
What is the actual behavior?
I am unable to set them to report periodically at long intervals, for example, every 15 hours. According to the documentation of the Zigbee 3.0 standard, the fields for maximum and minimum reporting intervals are of type uint16, indicating that it is possible to set times up to 18 hours (65536 seconds maximum).Currently, if I try to set the reports every 18 hours, they are generated randomly without maintaining the 18-hour interval or modifying their value by a range greater than that established in the delta.
I'm leaving a screenshot corresponding to the configuration of the reports from the Zigbee 3.0 standard documentation.
Steps to reproduce.
Created a custom cluster and added a reportable attribute.
also set the device to low power consumption, using light sleep (since my project utilizes it, it might be related to the clock; additionally, I use an external clock as recommended).
After creating the endpoint, I configured the default reports using the functions added in version 1.0.3 of the SDK.
Check that the reports are not generated randomly, as is the case in my situation.
More Information.
Below is an example of the code I'm using. What I'm trying to achieve is to set the default reports for a custom attribute within a custom cluster so that it is not necessary to call the configure report functions from a third party after binding. In other words, I wish that if the configure report function is not called, it takes the values that I set below.
The problem is that the reports are generated without cause, meaning the reports are generated even if the maximum set interval has not been reached, and I verified that their value does not change, so I discard out the possibility that they are being generated because their value has altered.If I set short times, for example, 30 seconds, it works correctly
The text was updated successfully, but these errors were encountered:
github-actionsbot
changed the title
The periodic reporting system is not working correctly.
The periodic reporting system is not working correctly. (TZ-652)
Feb 21, 2024
Answers checklist.
IDF version.
v5.1.1-588-gc1c843f5e2
esp-zigbee-lib version.
1.1.0
esp-zboss-lib version.
1.1.0
Espressif SoC revision.
ESP32-H2
What is the expected behavior?
Hello, I am trying to set up the reports for a device using the functions added in the 1.0.3 zigbee sdk version ( #137). After creating the cluster structure, I use the mentioned functions to configure the default values for the reports and the reporting delta. The goal was to configure certain attributes so that they only report when changes occur.
What is the actual behavior?
I am unable to set them to report periodically at long intervals, for example, every 15 hours. According to the documentation of the Zigbee 3.0 standard, the fields for maximum and minimum reporting intervals are of type uint16, indicating that it is possible to set times up to 18 hours (65536 seconds maximum).Currently, if I try to set the reports every 18 hours, they are generated randomly without maintaining the 18-hour interval or modifying their value by a range greater than that established in the delta.
I'm leaving a screenshot corresponding to the configuration of the reports from the Zigbee 3.0 standard documentation.
Steps to reproduce.
More Information.
Below is an example of the code I'm using. What I'm trying to achieve is to set the default reports for a custom attribute within a custom cluster so that it is not necessary to call the configure report functions from a third party after binding. In other words, I wish that if the configure report function is not called, it takes the values that I set below.
The problem is that the reports are generated without cause, meaning the reports are generated even if the maximum set interval has not been reached, and I verified that their value does not change, so I discard out the possibility that they are being generated because their value has altered.If I set short times, for example, 30 seconds, it works correctly
The text was updated successfully, but these errors were encountered: