* start implementing a wizard for initial (WiFi) configuration #1199
This commit is contained in:
lumapu 2024-01-06 02:58:19 +01:00
parent 617cf0a92a
commit 5ca26895a1
9 changed files with 158 additions and 9 deletions

View file

@ -150,6 +150,18 @@ class app : public IApp, public ah::Scheduler {
return mWifi.getAvailNetworks(obj);
}
void setupStation(void) {
mWifi.setupStation();
}
void setStopApAllowedMode(bool allowed) {
mWifi.setStopApAllowedMode(allowed);
}
String getStationIp(void) {
return mWifi.getStationIp();
}
#endif /* !defined(ETHERNET) */
void setRebootFlag() {