├── .github └── workflows │ ├── esp32.yml │ └── esp8266.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── examples ├── Basic │ ├── Basic.ino │ └── data │ │ ├── bootstrap-4.4.1.min.css │ │ ├── bootstrap-4.4.1.min.js │ │ ├── index.html │ │ ├── jquery-3.5.1.min.js │ │ ├── logo_yoyo.svg │ │ ├── script.js │ │ └── style.css ├── BasicWithEndpoints │ ├── BasicWithEndpoints.ino │ └── data │ │ ├── bootstrap-4.4.1.min.css │ │ ├── bootstrap-4.4.1.min.js │ │ ├── index.html │ │ ├── jquery-3.5.1.min.js │ │ ├── logo_yoyo.svg │ │ ├── script.js │ │ └── style.css ├── P5js │ ├── P5js.ino │ └── data │ │ ├── data │ │ └── SourceSansPro-Regular.otf │ │ ├── index.html │ │ ├── p5.min.js │ │ ├── sketch.js │ │ └── style.css ├── PeerNetwork │ ├── PeerNetwork.ino │ └── data │ │ ├── bootstrap-4.4.1.min.css │ │ ├── bootstrap-4.4.1.min.js │ │ ├── index.html │ │ ├── jquery-3.5.1.min.js │ │ ├── logo_yoyo.svg │ │ ├── script.js │ │ ├── style.css │ │ └── yo.svg ├── Vue │ ├── Vue.ino │ └── data │ │ ├── axios.min.js │ │ ├── index.html │ │ ├── script.js │ │ ├── style.css │ │ ├── vue-color-picker.min.css │ │ ├── vue-color-picker.umd.min.js │ │ └── vue.min.js └── WebSocketsServer │ ├── WebSocketsServer.ino │ └── data │ ├── bootstrap-4.4.1.min.css │ ├── bootstrap-4.4.1.min.js │ ├── index.html │ ├── jquery-3.5.1.min.js │ ├── logo_yoyo.svg │ ├── script.js │ └── style.css ├── images └── basic.png ├── library.properties └── src ├── YoYoSettings.h ├── YoYoWiFiManager.cpp ├── YoYoWiFiManager.h └── YoYoWiFiManager ├── Espressif.h ├── Levenshtein.h ├── YoYoFS.h ├── YoYoNetworkSettingsInterface.h ├── index_html.h └── wifi_sta.h /.github/workflows/esp32.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/.github/workflows/esp32.yml -------------------------------------------------------------------------------- /.github/workflows/esp8266.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/.github/workflows/esp8266.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .vscode -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/README.md -------------------------------------------------------------------------------- /examples/Basic/Basic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/Basic/Basic.ino -------------------------------------------------------------------------------- /examples/Basic/data/bootstrap-4.4.1.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/Basic/data/bootstrap-4.4.1.min.css -------------------------------------------------------------------------------- /examples/Basic/data/bootstrap-4.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/Basic/data/bootstrap-4.4.1.min.js -------------------------------------------------------------------------------- /examples/Basic/data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/Basic/data/index.html -------------------------------------------------------------------------------- /examples/Basic/data/jquery-3.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/Basic/data/jquery-3.5.1.min.js -------------------------------------------------------------------------------- /examples/Basic/data/logo_yoyo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/Basic/data/logo_yoyo.svg -------------------------------------------------------------------------------- /examples/Basic/data/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/Basic/data/script.js -------------------------------------------------------------------------------- /examples/Basic/data/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/Basic/data/style.css -------------------------------------------------------------------------------- /examples/BasicWithEndpoints/BasicWithEndpoints.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/BasicWithEndpoints/BasicWithEndpoints.ino -------------------------------------------------------------------------------- /examples/BasicWithEndpoints/data/bootstrap-4.4.1.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/BasicWithEndpoints/data/bootstrap-4.4.1.min.css -------------------------------------------------------------------------------- /examples/BasicWithEndpoints/data/bootstrap-4.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/BasicWithEndpoints/data/bootstrap-4.4.1.min.js -------------------------------------------------------------------------------- /examples/BasicWithEndpoints/data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/BasicWithEndpoints/data/index.html -------------------------------------------------------------------------------- /examples/BasicWithEndpoints/data/jquery-3.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/BasicWithEndpoints/data/jquery-3.5.1.min.js -------------------------------------------------------------------------------- /examples/BasicWithEndpoints/data/logo_yoyo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/BasicWithEndpoints/data/logo_yoyo.svg -------------------------------------------------------------------------------- /examples/BasicWithEndpoints/data/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/BasicWithEndpoints/data/script.js -------------------------------------------------------------------------------- /examples/BasicWithEndpoints/data/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/BasicWithEndpoints/data/style.css -------------------------------------------------------------------------------- /examples/P5js/P5js.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/P5js/P5js.ino -------------------------------------------------------------------------------- /examples/P5js/data/data/SourceSansPro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/P5js/data/data/SourceSansPro-Regular.otf -------------------------------------------------------------------------------- /examples/P5js/data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/P5js/data/index.html -------------------------------------------------------------------------------- /examples/P5js/data/p5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/P5js/data/p5.min.js -------------------------------------------------------------------------------- /examples/P5js/data/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/P5js/data/sketch.js -------------------------------------------------------------------------------- /examples/P5js/data/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/P5js/data/style.css -------------------------------------------------------------------------------- /examples/PeerNetwork/PeerNetwork.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/PeerNetwork/PeerNetwork.ino -------------------------------------------------------------------------------- /examples/PeerNetwork/data/bootstrap-4.4.1.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/PeerNetwork/data/bootstrap-4.4.1.min.css -------------------------------------------------------------------------------- /examples/PeerNetwork/data/bootstrap-4.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/PeerNetwork/data/bootstrap-4.4.1.min.js -------------------------------------------------------------------------------- /examples/PeerNetwork/data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/PeerNetwork/data/index.html -------------------------------------------------------------------------------- /examples/PeerNetwork/data/jquery-3.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/PeerNetwork/data/jquery-3.5.1.min.js -------------------------------------------------------------------------------- /examples/PeerNetwork/data/logo_yoyo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/PeerNetwork/data/logo_yoyo.svg -------------------------------------------------------------------------------- /examples/PeerNetwork/data/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/PeerNetwork/data/script.js -------------------------------------------------------------------------------- /examples/PeerNetwork/data/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/PeerNetwork/data/style.css -------------------------------------------------------------------------------- /examples/PeerNetwork/data/yo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/PeerNetwork/data/yo.svg -------------------------------------------------------------------------------- /examples/Vue/Vue.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/Vue/Vue.ino -------------------------------------------------------------------------------- /examples/Vue/data/axios.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/Vue/data/axios.min.js -------------------------------------------------------------------------------- /examples/Vue/data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/Vue/data/index.html -------------------------------------------------------------------------------- /examples/Vue/data/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/Vue/data/script.js -------------------------------------------------------------------------------- /examples/Vue/data/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/Vue/data/style.css -------------------------------------------------------------------------------- /examples/Vue/data/vue-color-picker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/Vue/data/vue-color-picker.min.css -------------------------------------------------------------------------------- /examples/Vue/data/vue-color-picker.umd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/Vue/data/vue-color-picker.umd.min.js -------------------------------------------------------------------------------- /examples/Vue/data/vue.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/Vue/data/vue.min.js -------------------------------------------------------------------------------- /examples/WebSocketsServer/WebSocketsServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/WebSocketsServer/WebSocketsServer.ino -------------------------------------------------------------------------------- /examples/WebSocketsServer/data/bootstrap-4.4.1.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/WebSocketsServer/data/bootstrap-4.4.1.min.css -------------------------------------------------------------------------------- /examples/WebSocketsServer/data/bootstrap-4.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/WebSocketsServer/data/bootstrap-4.4.1.min.js -------------------------------------------------------------------------------- /examples/WebSocketsServer/data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/WebSocketsServer/data/index.html -------------------------------------------------------------------------------- /examples/WebSocketsServer/data/jquery-3.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/WebSocketsServer/data/jquery-3.5.1.min.js -------------------------------------------------------------------------------- /examples/WebSocketsServer/data/logo_yoyo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/WebSocketsServer/data/logo_yoyo.svg -------------------------------------------------------------------------------- /examples/WebSocketsServer/data/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/WebSocketsServer/data/script.js -------------------------------------------------------------------------------- /examples/WebSocketsServer/data/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/examples/WebSocketsServer/data/style.css -------------------------------------------------------------------------------- /images/basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/images/basic.png -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/library.properties -------------------------------------------------------------------------------- /src/YoYoSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/src/YoYoSettings.h -------------------------------------------------------------------------------- /src/YoYoWiFiManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/src/YoYoWiFiManager.cpp -------------------------------------------------------------------------------- /src/YoYoWiFiManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/src/YoYoWiFiManager.h -------------------------------------------------------------------------------- /src/YoYoWiFiManager/Espressif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/src/YoYoWiFiManager/Espressif.h -------------------------------------------------------------------------------- /src/YoYoWiFiManager/Levenshtein.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/src/YoYoWiFiManager/Levenshtein.h -------------------------------------------------------------------------------- /src/YoYoWiFiManager/YoYoFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/src/YoYoWiFiManager/YoYoFS.h -------------------------------------------------------------------------------- /src/YoYoWiFiManager/YoYoNetworkSettingsInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/src/YoYoWiFiManager/YoYoNetworkSettingsInterface.h -------------------------------------------------------------------------------- /src/YoYoWiFiManager/index_html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/src/YoYoWiFiManager/index_html.h -------------------------------------------------------------------------------- /src/YoYoWiFiManager/wifi_sta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactionresearchstudio/YoYoWiFiManager/HEAD/src/YoYoWiFiManager/wifi_sta.h --------------------------------------------------------------------------------