Search found 3 matches
- Fri Jun 03, 2022 2:59 pm
- Forum: ESP-IDF
- Topic: How to get IP address of all the stations connected to AP
- Replies: 1
- Views: 4643
How to get IP address of all the stations connected to AP
I am using IDF version 4.1.3 , ESP32 i have uploaded the example code of wifi AP in one and wifi station in other devices the connection is being formed among the AP and stations and each station is being asssigned the unique IP (this i can see in the hcp print statement on moniter )but how can i ex...
- Fri May 27, 2022 1:44 pm
- Forum: ESP-IDF
- Topic: How to send data over Wifi in soft Ap and station mode in ESp IDF
- Replies: 7
- Views: 7319
Re: How to send data over Wifi in soft Ap and station mode in ESp IDF
Hi KamalChopra For SoftAP + UDP server, i think you can follow this two examples https://github.com/espressif/esp-idf/blob/master/examples/wifi/getting_started/softAP/main/softap_example_main.c and https://github.com/espressif/esp-idf/tree/master/examples/protocols/sockets/udp_server. udp_server is...
- Wed May 25, 2022 8:45 am
- Forum: ESP-IDF
- Topic: How to send data over Wifi in soft Ap and station mode in ESp IDF
- Replies: 7
- Views: 7319
How to send data over Wifi in soft Ap and station mode in ESp IDF
i want to connect 2 ESPs one as AP and second as station. Then send and recivee data among them. I thought of adding UDP server example in Wifi Soft AP , UDP client already have function to make ESP act as station but the sockets are being created but their is no connection between them even though ...