You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When will non-blocking feature in development branch reach main branch?
Problem description
I am using the non-blocking feature in development branch and it appears to be working fine on sonoff basic. When will this feature reach the main branch?
I am asking because the compiled code is larger when using development branch (after removing unsupported features).
sonoff Basic
WiFimanager Branch/Release:
Esp8266/Esp32:
Hardware: ESP-12e, esp01, esp25
ESP Core Version: 2.4.0, staging
Description
When will non-blocking feature in development branch reach main branch?
Problem description
I am using the non-blocking feature in development branch and it appears to be working fine on sonoff basic. When will this feature reach the main branch?
I am asking because the compiled code is larger when using development branch (after removing unsupported features).
void setup() {
WiFiManager wifiManager;
wifiManager.setConfigPortalBlocking(false);
if(!wifiManager.autoConnect(deviceID)) {
debugln(F("WiFi Connected"));
}
}
void loop() {
...
wifiManager.process();
...
}
The text was updated successfully, but these errors were encountered: