I am implemen
ting 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?
以下为原文
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.