Not able to reset Node
See original GitHub issueI’m trying to use this app’s features in flutter app.
I impletmeted scanning, connecting, identifying, provisioning but I cannot run reset function with app.
After i call createConfigMeshMessage() with ConfigNodeReset(), nothing happens.
it’s not removed from provisioned list and device is found on provisioned devices scanning.
I followed NodeConfigurationActivity for reset method calling process.
Before resetting, I set selectedNodeon NrfMeshRepository.
I expect NrfMeshRepository’s onDeviceDisconnected calling but there’s not.
As there’s no document and no flutter library, I have no way to figure it out.
What callBack/method can i check for trouble shooting?
or Is there any missing settings for NrfMeshRepository or missing key fot something?
here’s my repo https://github.com/choi-seung-min/MeshSample.git
Issue Analytics
- State:
- Created 2 years ago
- Comments:7 (1 by maintainers)

Top Related StackOverflow Question
Thanks, I found that i did not set
unicastAddressto network on provisioning process.It’s working perfectly.
@R0m4in-dooz Thanks for helping out!