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
I think iterating on WifiManagerParameters could be interesting, in order to make easier the creation of reusable configuration forms, so you could do something like:
JsonObject& json = ...
....
for (int i=0; i<wifimanager.getParametersCount(); i++){
WiFiManagerParameter parameter = wifimanager.getParameters()[i];
json[parameter.getId()] = parameter.getValue();
}
// then save the jsonfile into a filepersistJsontoFS(json);
WDYT?
The text was updated successfully, but these errors were encountered:
I think iterating on WifiManagerParameters could be interesting, in order to make easier the creation of reusable configuration forms, so you could do something like:
WDYT?
The text was updated successfully, but these errors were encountered: