gitextract_mj9uku1q/ ├── .github/ │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE.md │ └── workflows/ │ ├── compile_examples.yaml │ ├── compile_library.yml │ └── cpp_lint.yml ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── WiFiManager.cpp ├── WiFiManager.h ├── examples/ │ ├── Advanced/ │ │ └── Advanced.ino │ ├── Basic/ │ │ └── Basic.ino │ ├── NonBlocking/ │ │ ├── AutoConnectNonBlocking/ │ │ │ └── AutoConnectNonBlocking.ino │ │ ├── AutoConnectNonBlockingwParams/ │ │ │ └── AutoConnectNonBlockingwParams.ino │ │ └── OnDemandNonBlocking/ │ │ └── OnDemandNonBlocking.ino │ ├── Old_examples/ │ │ ├── AutoConnectWithFeedback/ │ │ │ └── AutoConnectWithFeedback.ino │ │ ├── AutoConnectWithReset/ │ │ │ └── AutoConnectWithReset.ino │ │ ├── AutoConnectWithStaticIP/ │ │ │ └── AutoConnectWithStaticIP.ino │ │ └── AutoConnectWithTimeout/ │ │ └── AutoConnectWithTimeout.ino │ ├── OnDemand/ │ │ ├── OnDemandConfigPortal/ │ │ │ └── OnDemandConfigPortal.ino │ │ └── OnDemandWebPortal/ │ │ └── OnDemandWebPortal.ino │ ├── Parameters/ │ │ ├── LittleFS/ │ │ │ └── LittleFSParameters.ino │ │ └── SPIFFS/ │ │ ├── AutoConnectWithFSParameters/ │ │ │ └── AutoConnectWithFSParameters.ino │ │ └── AutoConnectWithFSParametersAndCustomIP/ │ │ └── AutoConnectWithFSParametersAndCustomIP.ino │ ├── ParamsChildClass/ │ │ └── ParamsChildClass.ino │ ├── Super/ │ │ └── OnDemandConfigPortal/ │ │ └── OnDemandConfigPortal.ino │ ├── Tests/ │ │ └── wifi_softap/ │ │ └── wifi_softap.ino │ └── Unique/ │ └── cb/ │ └── AnonymousCB.ino ├── extras/ │ ├── WiFiManager.template.html │ ├── parse.js │ ├── template.h │ └── test.html ├── keywords.txt ├── library.json ├── library.properties ├── strings_en.h ├── travis/ │ └── common.sh ├── wm_consts_de.h ├── wm_consts_en.h ├── wm_consts_fr.h ├── wm_strings_de.h ├── wm_strings_en.h ├── wm_strings_es.h ├── wm_strings_fr.h ├── wm_strings_pt.h └── wm_strings_pt_br.h