ESP Now + ESP Wifi + ESP Mesh -> Is it possible?
Posted: Wed Dec 08, 2021 10:03 am
Hello everybody!
I am trying the following setup: I have a mesh + wifi running in a group of ESP32 devices. It works properly. I want to debug and trace what is happening in the devices, so I setup up an esp-now configuration to send the logs to an outsider esp32 device that just prints them in a serial port (whatever it receives). When the mesh is running and the wifi is "offline" (no router), the esp-now msgs are sent normally from all the nodes + root. As soon as the wifi goes "online" (router in on), the root stops sending the esp-now messages (even though esp_now_send returns ESP_OK).
Is it possible to use Wifi + Now + Mesh simultaneously?
My project is basically a merge from [https://github.com/espressif/esp-idf/t ... fi/espnow] + [https://github.com/espressif/esp-idf/t ... unication], with modifications to tx/rx properly my data.
I am using the esp-idf v4.3.1
I've already checked many other pages with different possible solutions that didn't work for me, as below:
- Esp-now and Wifi in the same channel;
- Disable power saving (esp_wifi_set_ps(WIFI_PS_NONE));
- Enable both softAP + STA;
Thanks in advance for any help
I am trying the following setup: I have a mesh + wifi running in a group of ESP32 devices. It works properly. I want to debug and trace what is happening in the devices, so I setup up an esp-now configuration to send the logs to an outsider esp32 device that just prints them in a serial port (whatever it receives). When the mesh is running and the wifi is "offline" (no router), the esp-now msgs are sent normally from all the nodes + root. As soon as the wifi goes "online" (router in on), the root stops sending the esp-now messages (even though esp_now_send returns ESP_OK).
Is it possible to use Wifi + Now + Mesh simultaneously?
My project is basically a merge from [https://github.com/espressif/esp-idf/t ... fi/espnow] + [https://github.com/espressif/esp-idf/t ... unication], with modifications to tx/rx properly my data.
I am using the esp-idf v4.3.1
I've already checked many other pages with different possible solutions that didn't work for me, as below:
- Esp-now and Wifi in the same channel;
- Disable power saving (esp_wifi_set_ps(WIFI_PS_NONE));
- Enable both softAP + STA;
Thanks in advance for any help