Wifi AP start after 10 sec, stay if not connected

This commit is contained in:
MichaelDvP
2023-10-27 10:28:59 +02:00
parent 900112a967
commit fcdc4314e3
2 changed files with 37 additions and 6 deletions

View File

@@ -134,12 +134,14 @@ class APSettingsService : public StatefulService<APSettings> {
// for the management delay loop
volatile unsigned long _lastManaged;
volatile boolean _reconfigureAp;
uint8_t _connected;
void reconfigureAP();
void manageAP();
void startAP();
void stopAP();
void handleDNS();
void WiFiEvent(WiFiEvent_t event);
};
#endif