Search found 132 matches

by ESP_@In逍遥子
Tue Jun 04, 2019 4:16 am
Forum: ESP-MDF
Topic: How to resolve the IP Address of a Mesh Light ? <SOLVED>
Replies: 8
Views: 24024

Re: How to resolve the IP Address of a Mesh Light ?

Yes,I think it‘s ok.However, some adaptation is needed
by ESP_@In逍遥子
Wed May 22, 2019 6:41 am
Forum: ESP Mesh 中文讨论版
Topic: 关于ESP-MDF想了解一些内容
Replies: 10
Views: 19702

Re: 关于ESP-MDF想了解一些内容

写进去了的,efuse 中。
by ESP_@In逍遥子
Mon May 20, 2019 3:04 am
Forum: ESP Mesh 中文讨论版
Topic: 关于ESP-MDF想了解一些内容
Replies: 10
Views: 19702

Re: 关于ESP-MDF想了解一些内容

带宽数据:
mesh 网络的结构不同(节点数量、网络层,最大下游连接数),有所不同。
你可以自行测试下,之后官方文档会更新测试数据。

Code: Select all

esp_wifi_get_mac
这个函数可以得到 MAC 地址
by ESP_@In逍遥子
Thu May 16, 2019 6:45 am
Forum: ESP Mesh 中文讨论版
Topic: 关于ESP-MDF想了解一些内容
Replies: 10
Views: 19702

Re: 关于ESP-MDF想了解一些内容

Routing-Tables

路由表有 底层自动更新。
by ESP_@In逍遥子
Wed May 15, 2019 3:29 am
Forum: ESP Mesh 中文讨论版
Topic: 关于ESP-MDF想了解一些内容
Replies: 10
Views: 19702

Re: 关于ESP-MDF想了解一些内容

mwifi_init_config_t cfg = MWIFI_INIT_CONFIG_DEFAULT(); mwifi_config_t config = { .router_ssid = CONFIG_ROUTER_SSID, .router_password = CONFIG_ROUTER_PASSWORD, .mesh_id = CONFIG_MESH_ID, .mesh_password = CONFIG_MESH_PASSWORD, }; 连接的 AP 和最大层数在这两个配置变量中可以修改。 详细的可以看这个 文档 。 性能: Performance
by ESP_@In逍遥子
Thu May 09, 2019 7:56 am
Forum: ESP-MDF
Topic: esp-mdf in eclipse problem
Replies: 3
Views: 6780

Re: esp-mdf in eclipse problem

It is recommended to develop according to the introduction, eclipse IDE support is not good enough.
by ESP_@In逍遥子
Mon May 06, 2019 9:29 am
Forum: ESP-IDF 中文讨论版
Topic: MESH往外部发送数据
Replies: 5
Views: 8730

Re: MESH往外部发送数据

942017913 wrote:如果使用了MDF,还可以使用IDF中的功能吗,比如I2C
可以的啊,MDF 包含 IDF。可以使用 IDF 中的所有功能。
942017913 wrote: 我现在是用的IDF里的MESH工程,然后加了一点I2C的功能,想使用一些网外部网络发送的功能,有没有例程可以学习呢
你可以参考 light.提供了 APP ,方便使用 MESH 的功能。
by ESP_@In逍遥子
Mon May 06, 2019 9:22 am
Forum: ESP-IDF 中文讨论版
Topic: ESP32 省电模式
Replies: 3
Views: 7943

Re: ESP32 省电模式

Minimum modem sleep: In minimum modem sleep mode, station wakes up every DTIM to receive beacon. Broadcast data will not be lost because it is transmitted after DTIM. However, it can not save much more power if DTIM is short for DTIM is determined by AP. Maximum modem sleep: In maximum modem sleep ...
by ESP_@In逍遥子
Mon May 06, 2019 2:45 am
Forum: ESP IoT Solution
Topic: Ethernet to WiFi example question
Replies: 2
Views: 5527

Re: Ethernet to WiFi example question

Currently, ESP32 does not support it as a hotspot, similar to routers.
by ESP_@In逍遥子
Mon May 06, 2019 2:39 am
Forum: ESP IoT Solution
Topic: image from ESP32 to FIrebase
Replies: 1
Views: 5866

Re: image from ESP32 to FIrebase

Hi,
This is possible.You can refer to this example.