├── BuildFirmware.md ├── INSTALL.md ├── IoT_ButtonImage ├── README.md └── backup127.img ├── LICENSE ├── MicroPython_bin ├── README.md ├── firmware-combined_v1.9.3_07.bin └── modules │ ├── README.md │ ├── file.py │ ├── free.py │ ├── inisetup.py │ ├── mqtt.py │ ├── ntptime.py │ ├── version.py │ └── wget.py ├── README.md ├── schematicsAndLayout ├── layout_BOTTOM.PDF ├── layout_TOP.PDF └── schematics.pdf └── src ├── AzurePublish.py ├── GenSasToken.py ├── README.md ├── RepUpdate.py ├── boot.py ├── bytecode ├── AzurePublish.mpy ├── GenSasToken.mpy ├── README.md ├── RepUpdate.mpy ├── control.mpy ├── setting.mpy ├── webserver.mpy └── wifi.mpy ├── config.json ├── control.py ├── html ├── README.md ├── index.html ├── iothub.html ├── ipconfig.html ├── shutdown.html ├── style.css ├── timeserver.html ├── userjson.html └── wifi.html ├── main.py ├── setting.py ├── webrepl_cfg.py ├── webserver.py └── wifi.py /BuildFirmware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/BuildFirmware.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/INSTALL.md -------------------------------------------------------------------------------- /IoT_ButtonImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/IoT_ButtonImage/README.md -------------------------------------------------------------------------------- /IoT_ButtonImage/backup127.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/IoT_ButtonImage/backup127.img -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/LICENSE -------------------------------------------------------------------------------- /MicroPython_bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/MicroPython_bin/README.md -------------------------------------------------------------------------------- /MicroPython_bin/firmware-combined_v1.9.3_07.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/MicroPython_bin/firmware-combined_v1.9.3_07.bin -------------------------------------------------------------------------------- /MicroPython_bin/modules/README.md: -------------------------------------------------------------------------------- 1 | this folder contains the frozen bytecodes for FW bin -------------------------------------------------------------------------------- /MicroPython_bin/modules/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/MicroPython_bin/modules/file.py -------------------------------------------------------------------------------- /MicroPython_bin/modules/free.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/MicroPython_bin/modules/free.py -------------------------------------------------------------------------------- /MicroPython_bin/modules/inisetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/MicroPython_bin/modules/inisetup.py -------------------------------------------------------------------------------- /MicroPython_bin/modules/mqtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/MicroPython_bin/modules/mqtt.py -------------------------------------------------------------------------------- /MicroPython_bin/modules/ntptime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/MicroPython_bin/modules/ntptime.py -------------------------------------------------------------------------------- /MicroPython_bin/modules/version.py: -------------------------------------------------------------------------------- 1 | print('Version: 07') -------------------------------------------------------------------------------- /MicroPython_bin/modules/wget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/MicroPython_bin/modules/wget.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/README.md -------------------------------------------------------------------------------- /schematicsAndLayout/layout_BOTTOM.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/schematicsAndLayout/layout_BOTTOM.PDF -------------------------------------------------------------------------------- /schematicsAndLayout/layout_TOP.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/schematicsAndLayout/layout_TOP.PDF -------------------------------------------------------------------------------- /schematicsAndLayout/schematics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/schematicsAndLayout/schematics.pdf -------------------------------------------------------------------------------- /src/AzurePublish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/AzurePublish.py -------------------------------------------------------------------------------- /src/GenSasToken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/GenSasToken.py -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/README.md -------------------------------------------------------------------------------- /src/RepUpdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/RepUpdate.py -------------------------------------------------------------------------------- /src/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/boot.py -------------------------------------------------------------------------------- /src/bytecode/AzurePublish.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/bytecode/AzurePublish.mpy -------------------------------------------------------------------------------- /src/bytecode/GenSasToken.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/bytecode/GenSasToken.mpy -------------------------------------------------------------------------------- /src/bytecode/README.md: -------------------------------------------------------------------------------- 1 | Bytecode Files -------------------------------------------------------------------------------- /src/bytecode/RepUpdate.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/bytecode/RepUpdate.mpy -------------------------------------------------------------------------------- /src/bytecode/control.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/bytecode/control.mpy -------------------------------------------------------------------------------- /src/bytecode/setting.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/bytecode/setting.mpy -------------------------------------------------------------------------------- /src/bytecode/webserver.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/bytecode/webserver.mpy -------------------------------------------------------------------------------- /src/bytecode/wifi.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/bytecode/wifi.mpy -------------------------------------------------------------------------------- /src/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/config.json -------------------------------------------------------------------------------- /src/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/control.py -------------------------------------------------------------------------------- /src/html/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/html/README.md -------------------------------------------------------------------------------- /src/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/html/index.html -------------------------------------------------------------------------------- /src/html/iothub.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/html/iothub.html -------------------------------------------------------------------------------- /src/html/ipconfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/html/ipconfig.html -------------------------------------------------------------------------------- /src/html/shutdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/html/shutdown.html -------------------------------------------------------------------------------- /src/html/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/html/style.css -------------------------------------------------------------------------------- /src/html/timeserver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/html/timeserver.html -------------------------------------------------------------------------------- /src/html/userjson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/html/userjson.html -------------------------------------------------------------------------------- /src/html/wifi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/html/wifi.html -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/main.py -------------------------------------------------------------------------------- /src/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/setting.py -------------------------------------------------------------------------------- /src/webrepl_cfg.py: -------------------------------------------------------------------------------- 1 | PASS = 'iotbutton' 2 | -------------------------------------------------------------------------------- /src/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/webserver.py -------------------------------------------------------------------------------- /src/wifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teXXmo/TheButtonProject/HEAD/src/wifi.py --------------------------------------------------------------------------------