├── .gitignore ├── LICENSE ├── README.md ├── examples ├── WebUpdater │ └── WebUpdater.ino ├── advance │ └── advance.ino ├── customConfig │ └── customConfig.ino ├── reconfig │ └── reconfig.ino ├── remoteReset │ └── remoteReset.ino └── simple │ └── simple.ino ├── keywords.txt ├── library.properties ├── src ├── Boot.cpp ├── Boot.h ├── Config.h ├── CusomConfig.h ├── DebugHelper.h ├── ESP8266OTA.cpp ├── ESP8266OTA.h ├── Theme.h ├── WebUI.h ├── WiFiMan.cpp └── WiFiMan.h ├── themes ├── Theme-template.h ├── YoRHa-default │ └── Theme.h └── vscode │ └── Theme.h └── www ├── config.html └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/README.md -------------------------------------------------------------------------------- /examples/WebUpdater/WebUpdater.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/examples/WebUpdater/WebUpdater.ino -------------------------------------------------------------------------------- /examples/advance/advance.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/examples/advance/advance.ino -------------------------------------------------------------------------------- /examples/customConfig/customConfig.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/examples/customConfig/customConfig.ino -------------------------------------------------------------------------------- /examples/reconfig/reconfig.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/examples/reconfig/reconfig.ino -------------------------------------------------------------------------------- /examples/remoteReset/remoteReset.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/examples/remoteReset/remoteReset.ino -------------------------------------------------------------------------------- /examples/simple/simple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/examples/simple/simple.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/library.properties -------------------------------------------------------------------------------- /src/Boot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/src/Boot.cpp -------------------------------------------------------------------------------- /src/Boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/src/Boot.h -------------------------------------------------------------------------------- /src/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/src/Config.h -------------------------------------------------------------------------------- /src/CusomConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/src/CusomConfig.h -------------------------------------------------------------------------------- /src/DebugHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/src/DebugHelper.h -------------------------------------------------------------------------------- /src/ESP8266OTA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/src/ESP8266OTA.cpp -------------------------------------------------------------------------------- /src/ESP8266OTA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/src/ESP8266OTA.h -------------------------------------------------------------------------------- /src/Theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/src/Theme.h -------------------------------------------------------------------------------- /src/WebUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/src/WebUI.h -------------------------------------------------------------------------------- /src/WiFiMan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/src/WiFiMan.cpp -------------------------------------------------------------------------------- /src/WiFiMan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/src/WiFiMan.h -------------------------------------------------------------------------------- /themes/Theme-template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/themes/Theme-template.h -------------------------------------------------------------------------------- /themes/YoRHa-default/Theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/themes/YoRHa-default/Theme.h -------------------------------------------------------------------------------- /themes/vscode/Theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/themes/vscode/Theme.h -------------------------------------------------------------------------------- /www/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/www/config.html -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChipCE/WiFiMan/HEAD/www/index.html --------------------------------------------------------------------------------