Search found 20 matches

by ESP_Sunshine
Tue May 10, 2022 12:59 pm
Forum: ESP Mesh 中文讨论版
Topic: ESP MDF 拓扑结构
Replies: 3
Views: 9722

Re: ESP MDF 拓扑结构

这个就是组网状态不同,一个是chain 式的,一个是tree组网方式。
by ESP_Sunshine
Tue May 10, 2022 7:23 am
Forum: ESP Mesh 中文讨论版
Topic: ESP32-WROOM-32模组能否在非组网状态下实现动态信道切换?
Replies: 3
Views: 4357

Re: ESP32-WROOM-32模组能否在非组网状态下实现动态信道切换?

您好,

并没有这样直接 API 的,但是你完全是可以在 sta disconnect 事件中,重新去调用 esp_wifi_connect,就可以链接上对应 切换过 ap信道的设备了。

你可以使用 IDF 库里面的例程 protocols :https://github.com/espressif/esp-idf/tr ... tcp_client

将会看到即使 AP 切唤信道,他会有 beacon timeout上报然后 disconnect 事件发生,从而再去链接就可以了。
by ESP_Sunshine
Mon Apr 18, 2022 4:06 am
Forum: ESP Mesh 中文讨论版
Topic: OTA 問題
Replies: 4
Views: 8877

Re: OTA 問題

您好,

如果你只选择了root节点来进行的升级的话,那是正常的。你可以在app端的群组里面找到组在一个mesh网络的所有节点,然后右击选择升级。具体看如下附件。
by ESP_Sunshine
Mon Apr 18, 2022 3:55 am
Forum: ESP Mesh 中文讨论版
Topic: WI-FI MESH 開發問題
Replies: 4
Views: 15385

Re: WI-FI MESH 開發問題

Hi @XiotSamuel Json and HTTP protocols are available, as well as OTA functionality, which is fine. For what you said about the attached sensor, the current main test of the lamp control (PWM), for adding sensors, there should be no big problem. Tests are mostly done together. It is mainly to ensure ...
by ESP_Sunshine
Fri Mar 18, 2022 10:23 am
Forum: ESP Mesh 中文讨论版
Topic: WI-FI MESH 開發問題
Replies: 4
Views: 15385

Re: WI-FI MESH 開發問題

Hi It's ok. We have tested 500+ devices, which are lamp devices. You may need to design the specific hardware design by yourself. The wifi mesh can only be connected with ESP32 chip devices. For memory leaks, the MDF library has a memory printing function. Relevant link: https://github.com/espressif...
by ESP_Sunshine
Fri Mar 18, 2022 10:11 am
Forum: ESP Mesh 中文讨论版
Topic: ESP-MDF环境安装问题
Replies: 6
Views: 22988

Re: ESP-MDF环境安装问题

您好, 你可以参看这个使用文档的步骤操作。链接:https://blog.csdn.net/Marchtwentytwo/article/details/118517756 目前最新的 mdf master 仓库,已经将其 idf 库不再作为 submodule 形式来下载了,可以单独去下载 要求的 IDF 库 就可以了。 ESP- MDF库:https://gitee.com/EspressifSystems/esp-mdf 对于 idf 库的下载还是要使用 esp-gitee-tools 的方式下载指令idf版本。 esp-gitee-tools 说明链接:https://gitee.co...
by ESP_Sunshine
Fri Mar 18, 2022 8:58 am
Forum: ESP Mesh 中文讨论版
Topic: esp-mdf 禁用logout报错!
Replies: 4
Views: 18639

Re: esp-mdf 禁用logout报错!

您好,

这个出错的是当你关闭 output log输出的时候, 此 CONFIG_CONSOLE_UART_BAUDRATE 没有定义了。你可以直接给他传一个定值就可以了。
by ESP_Sunshine
Fri Mar 18, 2022 6:26 am
Forum: ESP Mesh 中文讨论版
Topic: esp-mesh内存占用问题
Replies: 1
Views: 13315

Re: esp-mesh内存占用问题

您好,

如果剩余内存过低,因为 wifi 需要动态申请部分内存的。所以当你没有足够的内存的时候,会导致 wifi 连接 crash 情况发生。

内存是可以优化的,关于ram空间的优化,你可以查看文档链接:https://docs.espressif.com/projects/esp ... usage.html