Tian Sen Wen
Tian Sen Wen
>  esp-mesh-lite组网的softap 中的password值不能带字符,只能是数字啊?我带字符组网就会失败。 可以带字符,请确保所有设备的的 password 保持一致
设置 ssid 和 password 最好都在 menuconfig 里面设置,因为并不是一个地方使用到了 BRIDGE_SOFTAP_PASSWORD,这同样也是传入 mesh 的一个参数,不一致的话是组不了网的。如果不想设置密码,可以直接在 menuconfig 中将密码设置为空。
根节点只能直接获取到与其直接连接的 Station 子节点的 mac(通过 esp_wifi_ap_get_sta_list) 剩下的子节点只能应用层上报给根节点消息的方式来让根节点获取到。
所有上报过来的的子节点数量,具体逻辑可以参看:https://github.com/espressif/esp-mesh-lite/blob/master/components/mesh_lite/src/esp_mesh_lite.c
正常的,这个提示只是说明有设备尝试连接了根节点,但是此时根节点 SoftAP 已经被连满了
The latest Mesh-Lite supports mesh-lite-lan-ota, but you need to turn on ESP_MESH_LITE_OTA_ENABLE through menuconfig, and then combine some operations of mesh lite lan ota with your own OTA process according...
"Fusion" refers to a mechanism within the mesh network where multiple root nodes are merged into one. Do you have any other aspects that you're not quite clear about? Additionally,...
Regarding HTTPS examples, there are many in esp-idf/examples that you can use as a reference. The main purpose of mesh-lite is to allow devices to access network resources through routers...
Hello, updating mesh_lite requires updating the entire mesh_lite component instead of just updating lib. In addition, later versions added the esp_mesh_lite_start API, which requires esp_mesh_lite_start to be executed after esp_mesh_lite_init...
根节点和第二层节点使用的是同一个 Mesh-Lite 组件吗,另外可以看下日志确认下 Mesh-ID 是否保持一致。如果还是不行,可以将根节点和二层节点的日志发一下。