├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── clear_1M.img ├── clear_2M.img ├── clear_4M.img ├── data ├── index.html └── loading.gif ├── esp8266-webconf-mDNS-OTA.ino └── tests └── check.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgollor/esp8266-webconf-mDNS-OTA/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | data/cl_conf.txt 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgollor/esp8266-webconf-mDNS-OTA/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgollor/esp8266-webconf-mDNS-OTA/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgollor/esp8266-webconf-mDNS-OTA/HEAD/README.md -------------------------------------------------------------------------------- /clear_1M.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgollor/esp8266-webconf-mDNS-OTA/HEAD/clear_1M.img -------------------------------------------------------------------------------- /clear_2M.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgollor/esp8266-webconf-mDNS-OTA/HEAD/clear_2M.img -------------------------------------------------------------------------------- /clear_4M.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgollor/esp8266-webconf-mDNS-OTA/HEAD/clear_4M.img -------------------------------------------------------------------------------- /data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgollor/esp8266-webconf-mDNS-OTA/HEAD/data/index.html -------------------------------------------------------------------------------- /data/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgollor/esp8266-webconf-mDNS-OTA/HEAD/data/loading.gif -------------------------------------------------------------------------------- /esp8266-webconf-mDNS-OTA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgollor/esp8266-webconf-mDNS-OTA/HEAD/esp8266-webconf-mDNS-OTA.ino -------------------------------------------------------------------------------- /tests/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgollor/esp8266-webconf-mDNS-OTA/HEAD/tests/check.sh --------------------------------------------------------------------------------