esp-idf/examples/wifi/wifi_easy_connect/dpp-enrollee and find it frequently fails but not always. I (1199) phy_init: phy_version 4670,719f9f6,Feb 18 2021,17:07:07 I (1309) wifi:mode : sta (50:02:91:86:33:b8) I (
I then noticed that my laptop was able to reach faster to the esp32 (using ping to the IP addr) when using the https example, than when using my code with wifimanager (When using my code, the Host was unreachable for several seconds or even minutes, but would eventually be able to ...
CONFIG_WIFI=y CONFIG_WIFI_ESP32=y CONFIG_HEAP_MEM_POOL_SIZE=98304 CONFIG_NETWORKING=y CONFIG_NET_L2_ETHERNET=y CONFIG_NET_IPV6=n CONFIG_NET_IPV4=y CONFIG_NET_DHCPV4=y CONFIG_NET_MGMT=y CONFIG_NET_MGMT_EVENT=y CONFIG_NET_LOG=y CONFIG_NET_SHELL=n CONFIG_MBEDTLS=y CONFIG_MBEDTLS_ENTRO...
Re: Any example support that I send the WIFI SSID &password(with uart) to esp32 to connect WIFIby chegewara » Fri Jan 15, 2021 8:02 pm Maybe not exactly what you are asking for, but its good example to start to do what you want: https://github.com/espressif/esp-idf/tr ......
The smart_config example (using esp-idf commit 8478823) runs and install fine. The correct SSID and PASSWORD is received, but after that connecting to wlan seems to fail with output below. I tried it on two ESP32 modules, both have same ...
/// ESP-IDF 5.x requires the caller put the key into the PEM format fn frame_key(unframed: &[u8; 32]) -> Vec<u8> { Collaborator ivmarkov Mar 17, 2023 Why calling into alloc just for this? You can either return a heapless::Vec (as the size of the returned thing is actua...