-
Notifications
You must be signed in to change notification settings - Fork 43
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
add a method that returns the structure of the zigbee network and the quality of each of its links (TZ-923) #360
Comments
It sounds a reasonable requirement, which is similar the Thread Network Diagnostics feature. We will evaluate and add the feature support. |
hello @chshu, We are currently testing the new functions available in version 1.4.1, said function is esp_zb_nwk_get_next_route_record(), we understand that this function would be the one that would try to solve our necessity. Reading the documentation for this I saw that nothing is mentioned about the quality of the signal (lqi), anyway we try to implement this function but it always returns that it has no data, I would like to know if this function would be the one we are requesting or if they will implement another one later, I take this opportunity to ask if you have any update on this issue that you can share with us |
Hi @diazmanuel,
We do have plan to add some high level APIs to get network topology, but this would take some time. Before it is done, we can provide an API to do |
hello @lpy4105 ,I would appreciate it if you could provide us an API to implement the zdo_mgmt_lqi_req method in the next update, anyway please leave this issue open until you add the high level APIs method |
This will be a good feature, what is the status? |
Hello @lpy4105, do you have any update about this issue?. |
Hi @diazmanuel an API for |
hello @lpy4105, |
The esp-zigbee-sdk v1.5.1 already supports the |
hello @xieqinan , |
Is your feature request related to a problem?
I would like to be able to see the status of the network and the quality of each of the links to know if I should add repeaters or not.
Describe the solution you'd like.
I would like you to add a method to be able to read the structure of the zigbee network, that is, a method that is called from the cordinator which returns a list of devices with the following data:
With this data I could construct how the network and the link of each of them is formed.
Suppose we have the following devices
Coordinator, Router A, Router B, Router C, Endpoint A, Endpoint B, Endpoint C, Endpoint D, Endpoint E, Endpoint F, Endpoint G, Endpoint H
With this method I hope to be able to obtain a structure like the following
In this example, Endpoint F would be outside the network
I was looking at the different methods found in the functions of the current SDK and some of the functions of the Zboss library; and I found some that might work
by the espressif SDK the esp_zb_nwk_get_next_neighbor() function.This function provides the necessary information but can only be used locally. A solution would be to make this function available in the format of an external request which takes the destination address as a parameter, thus allowing you to read the neighbor table of any device of the network (similar to the method used to read the bindings table externally esp_zb_zdo_binding_table_req()).
On the other hand, I saw that ZBoss achieves what I'm looking for through the iterative implementation of zb_zdo_mgmt_lqi_req(), making this function available could be another solution, but the best way would be to create a new method which prevents the user from having to iterate and survey each of the devices manually
Describe alternatives you've considered.
No response
Additional context.
No response
The text was updated successfully, but these errors were encountered: