Detect a client connected to the access point of my http server using Wiced

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
user_50895
Level 1
Level 1
First like received First like given

Hello,

I am implementing an http server on my ISM43362 test board with the Wiced 3.5.2.

I've been trying to detect when a new device connects to the access point that I created, but I have not.

How can I detect when a client device has just connected to the access point of my server?

1 Solution
GauravS_31
Moderator
Moderator
Moderator
10 questions asked 250 solutions authored 250 sign-ins

Assuming that the server device is configured as softAP, you can register a callback in the server device to detect join event using the function wiced_wifi_register_softap_event_handler(event_handler). The callback void event_handler(wiced_wifi_softap_event_t event, const wiced_mac_t* mac_address) will be triggered whenever a STA joins the softAP.

View solution in original post

1 Reply
GauravS_31
Moderator
Moderator
Moderator
10 questions asked 250 solutions authored 250 sign-ins

Assuming that the server device is configured as softAP, you can register a callback in the server device to detect join event using the function wiced_wifi_register_softap_event_handler(event_handler). The callback void event_handler(wiced_wifi_softap_event_t event, const wiced_mac_t* mac_address) will be triggered whenever a STA joins the softAP.