Hello
I am modifying your code to make your own version of esp-raido.
I would like to publish the code on my german website.
I also give a link and a reference to your code.
It's OK?
I have found solution to a problem.
problem
In acces point mode sites load slowly or not completely.
solution
it was missing "WiFi.mode(WIFI_AP);"
if ( WiFi.waitForConnectResult() != WL_CONNECTED ) // Try to connect
{
____WiFi.mode(WIFI_AP);___
dbgprint ( "WiFi Failed! Trying to AP with name %s and password %s.", NAME, NAME ) ;
WiFi.softAP ( NAME, NAME ) ; // This ESP will be an AP
delay ( 5000 ) ;
pfs = dbgprint ( "IP = 192.168.4.1" ) ; // Address if AP
return false ;
}
Hello I am modifying your code to make your own version of esp-raido. I would like to publish the code on my german website. I also give a link and a reference to your code. It's OK?
I have found solution to a problem. problem In acces point mode sites load slowly or not completely. solution it was missing "WiFi.mode(WIFI_AP);"
if ( WiFi.waitForConnectResult() != WL_CONNECTED ) // Try to connect { ____WiFi.mode(WIFI_AP);___ dbgprint ( "WiFi Failed! Trying to AP with name %s and password %s.", NAME, NAME ) ; WiFi.softAP ( NAME, NAME ) ; // This ESP will be an AP delay ( 5000 ) ; pfs = dbgprint ( "IP = 192.168.4.1" ) ; // Address if AP return false ; }