How to use WiFi on particle argon using esp32 #29845
Replies: 1 comment
-
Hi @vinilima07 If the esp32 is connected via UART, you can use the Zephyr NetworkManager in combination with the "espressif,esp-at" driver. The driver define a network device which allows you establish a L2 wifi connection with your AP. After that you can use the normal socket stack to establish a TCP/UDP connection and further a HTTP request or something else. Please have a look at the WiFi-Shell example. You have to connect the esp32 properly to the nrf uart port and it as subnode. Please find below an example of the devicetree configuration with hardware control flow enabled:
The final connection should be as follows:
After that, you can use the network manager to perform a scan ( You can also have a look at this (private) example I have written some time ago to mess around with the esp32 at stack: https://github.com/whati001/zephyr_playground/tree/main/esp32_wifi_http |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, i am new on Zephyr.
I have an Argon Nordic Semiconductor nRF52840 SoC with ESP32 Wifi Coprocessor and i am trying to create communication beween then.
Argon Datasheet: https://docs.particle.io/datasheets/wi-fi/argon-datasheet/
I have already established the following network configuration for prj.conf
However, I don't know where to start so that I can issue AT commands to esp32. Sorry for anything but I am very confused with the documentation, so I had to resort here.
Beta Was this translation helpful? Give feedback.
All reactions