Tian Sen Wen
Tian Sen Wen
- `esp_mesh_lite_set_allowed_level(3)` 是指设备将只能在 3 层级运行,其只能寻找一个 level 2 的一个设备作为父节点,如果没有合适的 level 2 的设备,其将作为游离节点。所以您的做法有一个弊端,在 Mesh-Lite 拓扑稳定之后,给所有设备设置了固定的层级,比如一旦一个 level 5 设备的父节点掉电了,此时拓扑中又没有任何别的存在 level 4 的设备,那么这个 level 5 的设备将一直处于一个游离节点的状态。 - 通过 esp_wifi_set_mode 可以做到。APSTA 将会打开 AP,STA mode 将会关闭...
Yes, Mesh Lite sets the OTA partition to **valid** during initialization. ```c W (2597) ESP_Mesh_Lite_OTA: SHA-256 for current firmware: ... ``` This is merely a print of the SHA-256 for...
OK, thank you for your suggestion, we will optimize it later.
This issue was updated in this commit: https://github.com/espressif/esp-mesh-lite/commit/56d5ad2778d9dec1217434247fe0122fe7f960e6
You just need to change the version of the iot_bridge dependency in the idf_components.yml file of the mesh_lite component to the latest version f824744.
Since iot-bridge has not been updated to the latest version, the following dependency method is currently required. ```c iot_bridge: path: components/iot_bridge git: https://github.com/espressif/esp-iot-bridge.git version: f824744 ```
How many devices have you deployed in total? Is the surrounding wireless environment subject to significant interference?
> > How many devices have you deployed in total? Is the surrounding wireless environment subject to significant interference? > > Close to 90 devices, using the WIFI scanning tool...
> @tswen There are some questions about the configuration,hope you can answer, thank you > > `CONFIG_MESH_LITE_MAX_ROUTER_NUMBER` Does it represent the number of children allowed? `CONFIG_MESH_LITE_MAXIMUM_LEVEL_ALLOWED`Does it represent the number...
The configuration `CONFIG_BRIDGE_SOFTAP_MAX_CONNECT_NUMBER` specifies the maximum number of stations that can directly connect to this SoftAP. The configuration `CONFIG_MESH_LITE_MAXIMUM_LEVEL_ALLOWED` can generally remain at its default value. If `CONFIG_BRIDGE_SOFTAP_MAX_CONNECT_NUMBER` is set...