Search found 1 match

by btohaw
Fri Jul 12, 2024 6:49 am
Forum: ESP-IDF
Topic: how to disconnect a connected wifi client with esp into softAP mode
Replies: 2
Views: 2366

Re: how to disconnect a connected wifi client with esp into softAP mode

Hi, not sure if that solves your problem, but the softAP keeps the connection with stations although they are inactive for 300 seconds (default). You can use the command esp_wifi_set_inactive_time(wifi_interface_t ifx, uint16_t sec) with ifx = WIFI_IF_AP and sec = 10 to force a deauthentification on...