├── .gitignore ├── LICENCE ├── README.md ├── bin └── flash_esp32_wifimanager_v101_4M.bin.zip ├── bootloader └── main.py ├── lib ├── connect.py ├── crypto_keys.py ├── gen_html.py ├── nanoweb.py └── web_os.py └── src ├── cred.py ├── main.py ├── main1.py ├── release.py └── web_os_run.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc0110/wifimanager/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc0110/wifimanager/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc0110/wifimanager/HEAD/README.md -------------------------------------------------------------------------------- /bin/flash_esp32_wifimanager_v101_4M.bin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc0110/wifimanager/HEAD/bin/flash_esp32_wifimanager_v101_4M.bin.zip -------------------------------------------------------------------------------- /bootloader/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc0110/wifimanager/HEAD/bootloader/main.py -------------------------------------------------------------------------------- /lib/connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc0110/wifimanager/HEAD/lib/connect.py -------------------------------------------------------------------------------- /lib/crypto_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc0110/wifimanager/HEAD/lib/crypto_keys.py -------------------------------------------------------------------------------- /lib/gen_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc0110/wifimanager/HEAD/lib/gen_html.py -------------------------------------------------------------------------------- /lib/nanoweb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc0110/wifimanager/HEAD/lib/nanoweb.py -------------------------------------------------------------------------------- /lib/web_os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc0110/wifimanager/HEAD/lib/web_os.py -------------------------------------------------------------------------------- /src/cred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc0110/wifimanager/HEAD/src/cred.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc0110/wifimanager/HEAD/src/main.py -------------------------------------------------------------------------------- /src/main1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc0110/wifimanager/HEAD/src/main1.py -------------------------------------------------------------------------------- /src/release.py: -------------------------------------------------------------------------------- 1 | rel_no = "1.0.1" -------------------------------------------------------------------------------- /src/web_os_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc0110/wifimanager/HEAD/src/web_os_run.py --------------------------------------------------------------------------------