Hello,
I am working on a simple Bluetooth Mesh application for light control.
I started from the provided samples:
- github.com/.../light
- github.com/.../light_switch
Goal:
When pressing the switch, I want all the low-power light nodes to turn on simultaneously. To achieve this, I created a group containing all the lights.
What I tried:
- Reduced the low-power node polling timeout to the minimum (1 second) to improve responsiveness.
- Added a 2000 ms transition delay to the message, hoping it would compensate for propagation delays.
Issue:
Despite these adjustments, the lights do not switch on at the same time. The delay works, but the nodes still toggle at slightly different moments, rather than in sync.
Question:
How can I make sure all low-power light nodes switch simultaneously when triggered by the switch? Is there a recommended approach for achieving synchronization in Bluetooth Mesh with low-power nodes?
Thanks,
Marco