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
above is the code i run as a task to update the attributes of my various device types mainly light ,dimmers and fan when the respective touch are operated .
The seems to work fine for the dimmer and Light whereus in case of fan slider/percent/mode update sometimes it fails and sometime it works
Please suggest a solution for this or alternate method to update the attributes fo the fan
The text was updated successfully, but these errors were encountered:
github-actionsbot
changed the title
Fan slider attribute update fails
Fan slider attribute update fails (CON-1496)
Jan 4, 2025
Thank you for your response. I was able to identify and resolve the issue. The problem arose because the update was being executed as a FreeRTOS task, which caused it to proceed without waiting for the previous update to complete. Changing the implementation to a function call resolved the issue effectively.
void update_matter_device_task(void *param)
{
matter_device_t device;
}
above is the code i run as a task to update the attributes of my various device types mainly light ,dimmers and fan when the respective touch are operated .
The seems to work fine for the dimmer and Light whereus in case of fan slider/percent/mode update sometimes it fails and sometime it works
Please suggest a solution for this or alternate method to update the attributes fo the fan
The text was updated successfully, but these errors were encountered: