Hello, I need to have a two ip on my esp8226 ( one sie to stream, second is to normal request, becouse if i have only one ip, i can't send request, when a stream is working)
I would like to use
WiFi.mode(WIFI_AP_STA);
WiFi.softAP(ssid, password);
WiFi.mode(WIFI_STA);
WiFi.begin(ssid1, password1);
but, if I connect STA to my home network and AP_STA has another name, the connection is working properly, but If i use on AP_STA the name for my AP : name1 , and after it i would like connect my station WIFI_STA to this network : name1, then AP is working good, but client can't connect to this AP. HELPPP!!!
Thanks