├── .gitignore ├── .gitmodules ├── LICENSE ├── MicroPython ├── api.py ├── boot.py ├── common.py ├── crypto_aes.py ├── crypto_common.py ├── crypto_engine_aes128ecb.py ├── crypto_rsa.py ├── env.py ├── files.txt ├── hal.py ├── handle_main_error.py ├── http.py ├── init.py ├── logger.py ├── management.py ├── pal.py ├── platform.py ├── preregister.py ├── register.py ├── updates_app.py ├── updates_pythings.py ├── updates_settings.py ├── utils.py ├── version.py └── worker.py ├── Python ├── api.py ├── boot.py ├── common.py ├── crypto_aes.py ├── crypto_common.py ├── crypto_engine_aes128ecb.py ├── crypto_rsa.py ├── env.py ├── files.txt ├── hal.py ├── handle_main_error.py ├── http.py ├── init.py ├── logger.py ├── management.py ├── pal.py ├── platform.py ├── preregister.py ├── register.py ├── updates_app.py ├── updates_pythings.py ├── updates_settings.py ├── utils.py ├── version.py ├── websetup.py └── worker.py ├── README.md ├── RaspberryPi ├── api.py ├── boot.py ├── common.py ├── crypto_aes.py ├── crypto_common.py ├── crypto_engine_aes128ecb.py ├── crypto_rsa.py ├── env.py ├── files.txt ├── hal.py ├── handle_main_error.py ├── http.py ├── init.py ├── logger.py ├── management.py ├── pal.py ├── platform.py ├── preregister.py ├── register.py ├── run.sh ├── updates_app.py ├── updates_pythings.py ├── updates_settings.py ├── utils.py ├── version.py ├── websetup.py └── worker.py ├── common ├── api.py ├── boot.py ├── common.py ├── crypto_aes.py ├── crypto_common.py ├── crypto_engine_aes128ecb.py ├── crypto_rsa.py ├── env.py ├── handle_main_error.py ├── http.py ├── http_extended.py ├── init.py ├── logger.py ├── management.py ├── preregister.py ├── pubkey.key ├── register.py ├── updates_app.py ├── updates_pythings.py ├── updates_settings.py ├── utils.py ├── version.py ├── websetup.py └── worker.py ├── esp32 ├── api.py ├── boot.py ├── common.py ├── crypto_aes.py ├── crypto_common.py ├── crypto_engine_aes128ecb.py ├── crypto_rsa.py ├── env.py ├── files.txt ├── hal.py ├── handle_main_error.py ├── http.py ├── init.py ├── logger.py ├── management.py ├── pal.py ├── platform.py ├── preregister.py ├── register.py ├── updates_app.py ├── updates_pythings.py ├── updates_settings.py ├── utils.py ├── version.py ├── websetup.py └── worker.py ├── esp32_sim800 ├── SIM800L.py ├── api.py ├── boot.py ├── common.py ├── crypto_aes.py ├── crypto_common.py ├── crypto_engine_aes128ecb.py ├── crypto_rsa.py ├── env.py ├── files.txt ├── hal.py ├── handle_main_error.py ├── http.py ├── http_extended.py ├── init.py ├── logger.py ├── management.py ├── pal.py ├── platform.py ├── preregister.py ├── register.py ├── updates_app.py ├── updates_pythings.py ├── updates_settings.py ├── utils.py ├── version.py ├── websetup.py └── worker.py ├── esp8266 ├── api.py ├── boot.py ├── common.py ├── env.py ├── files.txt ├── hal.py ├── handle_main_error.py ├── http.py ├── init.py ├── logger.py ├── management.py ├── pal.py ├── platform.py ├── preregister.py ├── register.py ├── updates_app.py ├── updates_pythings.py ├── updates_settings.py ├── utils.py ├── version.py ├── websetup.py └── worker.py ├── esp8266_sim800 ├── SIM800L.py ├── api.py ├── boot.py ├── common.py ├── env.py ├── files.txt ├── hal.py ├── handle_main_error.py ├── http.py ├── http_extended.py ├── init.py ├── logger.py ├── management.py ├── pal.py ├── platform.py ├── preregister.py ├── register.py ├── updates_app.py ├── updates_pythings.py ├── updates_settings.py ├── utils.py ├── version.py ├── websetup.py └── worker.py ├── tools ├── buildchain │ ├── Dockerfile │ ├── Makefile-1.11 │ ├── Makefile-1.11-softuart │ ├── build.sh │ ├── build_bytecode.sh │ ├── builtinimport.c │ ├── entrypoint.sh │ ├── esp8266_common.ld │ ├── espopensdk │ │ ├── Dockerfile │ │ └── build.sh │ ├── inisetup.py │ ├── main.c-1.11 │ ├── main.c-1.8.6 │ ├── main.c-1.9.4 │ ├── modmachine.c │ ├── modmachine.h │ ├── requirements.txt │ ├── run.sh │ ├── softuart.c │ ├── softuart.h │ └── sudoers.txt ├── installer │ ├── README.txt │ ├── deps │ │ ├── ampy.py │ │ ├── ampy │ │ │ ├── __init__.py │ │ │ ├── cli.py │ │ │ ├── files.py │ │ │ └── pyboard.py │ │ ├── click │ │ │ ├── __init__.py │ │ │ ├── _bashcomplete.py │ │ │ ├── _compat.py │ │ │ ├── _termui_impl.py │ │ │ ├── _textwrap.py │ │ │ ├── _unicodefun.py │ │ │ ├── _winconsole.py │ │ │ ├── core.py │ │ │ ├── decorators.py │ │ │ ├── exceptions.py │ │ │ ├── formatting.py │ │ │ ├── globals.py │ │ │ ├── parser.py │ │ │ ├── termui.py │ │ │ ├── testing.py │ │ │ ├── types.py │ │ │ └── utils.py │ │ ├── dotenv │ │ │ ├── __init__.py │ │ │ ├── cli.py │ │ │ ├── compat.py │ │ │ ├── ipython.py │ │ │ ├── main.py │ │ │ └── version.py │ │ ├── ecdsa │ │ │ ├── __init__.py │ │ │ ├── _version.py │ │ │ ├── curves.py │ │ │ ├── der.py │ │ │ ├── ecdsa.py │ │ │ ├── ellipticcurve.py │ │ │ ├── keys.py │ │ │ ├── numbertheory.py │ │ │ ├── rfc6979.py │ │ │ ├── six.py │ │ │ ├── test_pyecdsa.py │ │ │ └── util.py │ │ ├── espefuse.py │ │ ├── espsecure.py │ │ ├── esptool.py │ │ ├── miniterm.py │ │ ├── pyaes │ │ │ ├── __init__.py │ │ │ ├── aes.py │ │ │ ├── blockfeeder.py │ │ │ └── util.py │ │ ├── reset.py │ │ └── serial │ │ │ ├── __init__.py │ │ │ ├── aio.py │ │ │ ├── rfc2217.py │ │ │ ├── rs485.py │ │ │ ├── serialcli.py │ │ │ ├── serialjava.py │ │ │ ├── serialposix.py │ │ │ ├── serialutil.py │ │ │ ├── serialwin32.py │ │ │ ├── threaded │ │ │ └── __init__.py │ │ │ ├── tools │ │ │ ├── __init__.py │ │ │ ├── hexlify_codec.py │ │ │ ├── list_ports.py │ │ │ ├── list_ports_common.py │ │ │ ├── list_ports_linux.py │ │ │ ├── list_ports_osx.py │ │ │ ├── list_ports_posix.py │ │ │ ├── list_ports_windows.py │ │ │ └── miniterm.py │ │ │ ├── urlhandler │ │ │ ├── __init__.py │ │ │ ├── protocol_alt.py │ │ │ ├── protocol_hwgrep.py │ │ │ ├── protocol_loop.py │ │ │ ├── protocol_rfc2217.py │ │ │ ├── protocol_serve-rfc2217.py │ │ │ ├── protocol_socket.py │ │ │ └── protocol_spy.py │ │ │ └── win32.py │ ├── installer.command │ ├── installer.py │ ├── installer.sh │ └── utils │ │ ├── copy_file_example.sh │ │ ├── copy_files_and_reboot.py │ │ ├── list_ports.py │ │ └── setup_venv.sh ├── micropythonsimulator │ ├── Dockerfile │ ├── build.sh │ ├── entrypoint.sh │ └── run.sh └── pythonsimulator │ ├── Dockerfile │ ├── build.sh │ ├── entrypoint.sh │ └── run.sh └── utilities ├── activate_wifi.py ├── consolidate.sh ├── create_files_list.py ├── create_installer.sh ├── create_releases_tree.sh ├── create_selfarchives.py ├── create_zips.sh ├── crypto_aes128.py ├── crypto_generate_rsa.py ├── crypto_poc.py ├── crypto_test1.py ├── crypto_test2.py ├── crypto_test_aes.py ├── dante.txt ├── draft_release.sh ├── flash_esp32.sh ├── flash_esp8266.sh ├── install_over_network.py ├── put_os.sh └── rmdir.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/LICENSE -------------------------------------------------------------------------------- /MicroPython/api.py: -------------------------------------------------------------------------------- 1 | ../common/api.py -------------------------------------------------------------------------------- /MicroPython/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/MicroPython/boot.py -------------------------------------------------------------------------------- /MicroPython/common.py: -------------------------------------------------------------------------------- 1 | ../common/common.py -------------------------------------------------------------------------------- /MicroPython/crypto_aes.py: -------------------------------------------------------------------------------- 1 | ../common/crypto_aes.py -------------------------------------------------------------------------------- /MicroPython/crypto_common.py: -------------------------------------------------------------------------------- 1 | ../common/crypto_common.py -------------------------------------------------------------------------------- /MicroPython/crypto_engine_aes128ecb.py: -------------------------------------------------------------------------------- 1 | ../common/crypto_engine_aes128ecb.py -------------------------------------------------------------------------------- /MicroPython/crypto_rsa.py: -------------------------------------------------------------------------------- 1 | ../common/crypto_rsa.py -------------------------------------------------------------------------------- /MicroPython/env.py: -------------------------------------------------------------------------------- 1 | ../common/env.py -------------------------------------------------------------------------------- /MicroPython/files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/MicroPython/files.txt -------------------------------------------------------------------------------- /MicroPython/hal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/MicroPython/hal.py -------------------------------------------------------------------------------- /MicroPython/handle_main_error.py: -------------------------------------------------------------------------------- 1 | ../common/handle_main_error.py -------------------------------------------------------------------------------- /MicroPython/http.py: -------------------------------------------------------------------------------- 1 | ../common/http.py -------------------------------------------------------------------------------- /MicroPython/init.py: -------------------------------------------------------------------------------- 1 | ../common/init.py -------------------------------------------------------------------------------- /MicroPython/logger.py: -------------------------------------------------------------------------------- 1 | ../common/logger.py -------------------------------------------------------------------------------- /MicroPython/management.py: -------------------------------------------------------------------------------- 1 | ../common/management.py -------------------------------------------------------------------------------- /MicroPython/pal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/MicroPython/pal.py -------------------------------------------------------------------------------- /MicroPython/platform.py: -------------------------------------------------------------------------------- 1 | platform = 'MicroPython' 2 | -------------------------------------------------------------------------------- /MicroPython/preregister.py: -------------------------------------------------------------------------------- 1 | ../common/preregister.py -------------------------------------------------------------------------------- /MicroPython/register.py: -------------------------------------------------------------------------------- 1 | ../common/register.py -------------------------------------------------------------------------------- /MicroPython/updates_app.py: -------------------------------------------------------------------------------- 1 | ../common/updates_app.py -------------------------------------------------------------------------------- /MicroPython/updates_pythings.py: -------------------------------------------------------------------------------- 1 | ../common/updates_pythings.py -------------------------------------------------------------------------------- /MicroPython/updates_settings.py: -------------------------------------------------------------------------------- 1 | ../common/updates_settings.py -------------------------------------------------------------------------------- /MicroPython/utils.py: -------------------------------------------------------------------------------- 1 | ../common/utils.py -------------------------------------------------------------------------------- /MicroPython/version.py: -------------------------------------------------------------------------------- 1 | ../common/version.py -------------------------------------------------------------------------------- /MicroPython/worker.py: -------------------------------------------------------------------------------- 1 | ../common/worker.py -------------------------------------------------------------------------------- /Python/api.py: -------------------------------------------------------------------------------- 1 | ../common/api.py -------------------------------------------------------------------------------- /Python/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/Python/boot.py -------------------------------------------------------------------------------- /Python/common.py: -------------------------------------------------------------------------------- 1 | ../common/common.py -------------------------------------------------------------------------------- /Python/crypto_aes.py: -------------------------------------------------------------------------------- 1 | ../common/crypto_aes.py -------------------------------------------------------------------------------- /Python/crypto_common.py: -------------------------------------------------------------------------------- 1 | ../common/crypto_common.py -------------------------------------------------------------------------------- /Python/crypto_engine_aes128ecb.py: -------------------------------------------------------------------------------- 1 | ../common/crypto_engine_aes128ecb.py -------------------------------------------------------------------------------- /Python/crypto_rsa.py: -------------------------------------------------------------------------------- 1 | ../common/crypto_rsa.py -------------------------------------------------------------------------------- /Python/env.py: -------------------------------------------------------------------------------- 1 | ../common/env.py -------------------------------------------------------------------------------- /Python/files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/Python/files.txt -------------------------------------------------------------------------------- /Python/hal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/Python/hal.py -------------------------------------------------------------------------------- /Python/handle_main_error.py: -------------------------------------------------------------------------------- 1 | ../common/handle_main_error.py -------------------------------------------------------------------------------- /Python/http.py: -------------------------------------------------------------------------------- 1 | ../common/http.py -------------------------------------------------------------------------------- /Python/init.py: -------------------------------------------------------------------------------- 1 | ../common/init.py -------------------------------------------------------------------------------- /Python/logger.py: -------------------------------------------------------------------------------- 1 | ../common/logger.py -------------------------------------------------------------------------------- /Python/management.py: -------------------------------------------------------------------------------- 1 | ../common/management.py -------------------------------------------------------------------------------- /Python/pal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/Python/pal.py -------------------------------------------------------------------------------- /Python/platform.py: -------------------------------------------------------------------------------- 1 | platform = 'Python' 2 | -------------------------------------------------------------------------------- /Python/preregister.py: -------------------------------------------------------------------------------- 1 | ../common/preregister.py -------------------------------------------------------------------------------- /Python/register.py: -------------------------------------------------------------------------------- 1 | ../common/register.py -------------------------------------------------------------------------------- /Python/updates_app.py: -------------------------------------------------------------------------------- 1 | ../common/updates_app.py -------------------------------------------------------------------------------- /Python/updates_pythings.py: -------------------------------------------------------------------------------- 1 | ../common/updates_pythings.py -------------------------------------------------------------------------------- /Python/updates_settings.py: -------------------------------------------------------------------------------- 1 | ../common/updates_settings.py -------------------------------------------------------------------------------- /Python/utils.py: -------------------------------------------------------------------------------- 1 | ../common/utils.py -------------------------------------------------------------------------------- /Python/version.py: -------------------------------------------------------------------------------- 1 | ../common/version.py -------------------------------------------------------------------------------- /Python/websetup.py: -------------------------------------------------------------------------------- 1 | ../common/websetup.py -------------------------------------------------------------------------------- /Python/worker.py: -------------------------------------------------------------------------------- 1 | ../common/worker.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/README.md -------------------------------------------------------------------------------- /RaspberryPi/api.py: -------------------------------------------------------------------------------- 1 | ../common/api.py -------------------------------------------------------------------------------- /RaspberryPi/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/RaspberryPi/boot.py -------------------------------------------------------------------------------- /RaspberryPi/common.py: -------------------------------------------------------------------------------- 1 | ../common/common.py -------------------------------------------------------------------------------- /RaspberryPi/crypto_aes.py: -------------------------------------------------------------------------------- 1 | ../common/crypto_aes.py -------------------------------------------------------------------------------- /RaspberryPi/crypto_common.py: -------------------------------------------------------------------------------- 1 | ../common/crypto_common.py -------------------------------------------------------------------------------- /RaspberryPi/crypto_engine_aes128ecb.py: -------------------------------------------------------------------------------- 1 | ../common/crypto_engine_aes128ecb.py -------------------------------------------------------------------------------- /RaspberryPi/crypto_rsa.py: -------------------------------------------------------------------------------- 1 | ../common/crypto_rsa.py -------------------------------------------------------------------------------- /RaspberryPi/env.py: -------------------------------------------------------------------------------- 1 | ../common/env.py -------------------------------------------------------------------------------- /RaspberryPi/files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/RaspberryPi/files.txt -------------------------------------------------------------------------------- /RaspberryPi/hal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/RaspberryPi/hal.py -------------------------------------------------------------------------------- /RaspberryPi/handle_main_error.py: -------------------------------------------------------------------------------- 1 | ../common/handle_main_error.py -------------------------------------------------------------------------------- /RaspberryPi/http.py: -------------------------------------------------------------------------------- 1 | ../common/http.py -------------------------------------------------------------------------------- /RaspberryPi/init.py: -------------------------------------------------------------------------------- 1 | ../common/init.py -------------------------------------------------------------------------------- /RaspberryPi/logger.py: -------------------------------------------------------------------------------- 1 | ../common/logger.py -------------------------------------------------------------------------------- /RaspberryPi/management.py: -------------------------------------------------------------------------------- 1 | ../common/management.py -------------------------------------------------------------------------------- /RaspberryPi/pal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/RaspberryPi/pal.py -------------------------------------------------------------------------------- /RaspberryPi/platform.py: -------------------------------------------------------------------------------- 1 | platform = 'RaspberryPi' 2 | -------------------------------------------------------------------------------- /RaspberryPi/preregister.py: -------------------------------------------------------------------------------- 1 | ../common/preregister.py -------------------------------------------------------------------------------- /RaspberryPi/register.py: -------------------------------------------------------------------------------- 1 | ../common/register.py -------------------------------------------------------------------------------- /RaspberryPi/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/RaspberryPi/run.sh -------------------------------------------------------------------------------- /RaspberryPi/updates_app.py: -------------------------------------------------------------------------------- 1 | ../common/updates_app.py -------------------------------------------------------------------------------- /RaspberryPi/updates_pythings.py: -------------------------------------------------------------------------------- 1 | ../common/updates_pythings.py -------------------------------------------------------------------------------- /RaspberryPi/updates_settings.py: -------------------------------------------------------------------------------- 1 | ../common/updates_settings.py -------------------------------------------------------------------------------- /RaspberryPi/utils.py: -------------------------------------------------------------------------------- 1 | ../common/utils.py -------------------------------------------------------------------------------- /RaspberryPi/version.py: -------------------------------------------------------------------------------- 1 | ../common/version.py -------------------------------------------------------------------------------- /RaspberryPi/websetup.py: -------------------------------------------------------------------------------- 1 | ../common/websetup.py -------------------------------------------------------------------------------- /RaspberryPi/worker.py: -------------------------------------------------------------------------------- 1 | ../common/worker.py -------------------------------------------------------------------------------- /common/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/common/api.py -------------------------------------------------------------------------------- /common/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/common/boot.py -------------------------------------------------------------------------------- /common/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/common/common.py -------------------------------------------------------------------------------- /common/crypto_aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/common/crypto_aes.py -------------------------------------------------------------------------------- /common/crypto_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/common/crypto_common.py -------------------------------------------------------------------------------- /common/crypto_engine_aes128ecb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/common/crypto_engine_aes128ecb.py -------------------------------------------------------------------------------- /common/crypto_rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/common/crypto_rsa.py -------------------------------------------------------------------------------- /common/env.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/handle_main_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/common/handle_main_error.py -------------------------------------------------------------------------------- /common/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/common/http.py -------------------------------------------------------------------------------- /common/http_extended.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/common/http_extended.py -------------------------------------------------------------------------------- /common/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/common/init.py -------------------------------------------------------------------------------- /common/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/common/logger.py -------------------------------------------------------------------------------- /common/management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/common/management.py -------------------------------------------------------------------------------- /common/preregister.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/common/preregister.py -------------------------------------------------------------------------------- /common/pubkey.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/common/pubkey.key -------------------------------------------------------------------------------- /common/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/common/register.py -------------------------------------------------------------------------------- /common/updates_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/common/updates_app.py -------------------------------------------------------------------------------- /common/updates_pythings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/common/updates_pythings.py -------------------------------------------------------------------------------- /common/updates_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/common/updates_settings.py -------------------------------------------------------------------------------- /common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/common/utils.py -------------------------------------------------------------------------------- /common/version.py: -------------------------------------------------------------------------------- 1 | version='v1.1.0' 2 | -------------------------------------------------------------------------------- /common/websetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/common/websetup.py -------------------------------------------------------------------------------- /common/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/common/worker.py -------------------------------------------------------------------------------- /esp32/api.py: -------------------------------------------------------------------------------- 1 | ../common/api.py -------------------------------------------------------------------------------- /esp32/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/esp32/boot.py -------------------------------------------------------------------------------- /esp32/common.py: -------------------------------------------------------------------------------- 1 | ../common/common.py -------------------------------------------------------------------------------- /esp32/crypto_aes.py: -------------------------------------------------------------------------------- 1 | ../common/crypto_aes.py -------------------------------------------------------------------------------- /esp32/crypto_common.py: -------------------------------------------------------------------------------- 1 | ../common/crypto_common.py -------------------------------------------------------------------------------- /esp32/crypto_engine_aes128ecb.py: -------------------------------------------------------------------------------- 1 | ../common/crypto_engine_aes128ecb.py -------------------------------------------------------------------------------- /esp32/crypto_rsa.py: -------------------------------------------------------------------------------- 1 | ../common/crypto_rsa.py -------------------------------------------------------------------------------- /esp32/env.py: -------------------------------------------------------------------------------- 1 | ../common/env.py -------------------------------------------------------------------------------- /esp32/files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/esp32/files.txt -------------------------------------------------------------------------------- /esp32/hal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/esp32/hal.py -------------------------------------------------------------------------------- /esp32/handle_main_error.py: -------------------------------------------------------------------------------- 1 | ../common/handle_main_error.py -------------------------------------------------------------------------------- /esp32/http.py: -------------------------------------------------------------------------------- 1 | ../common/http.py -------------------------------------------------------------------------------- /esp32/init.py: -------------------------------------------------------------------------------- 1 | ../common/init.py -------------------------------------------------------------------------------- /esp32/logger.py: -------------------------------------------------------------------------------- 1 | ../common/logger.py -------------------------------------------------------------------------------- /esp32/management.py: -------------------------------------------------------------------------------- 1 | ../common/management.py -------------------------------------------------------------------------------- /esp32/pal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/esp32/pal.py -------------------------------------------------------------------------------- /esp32/platform.py: -------------------------------------------------------------------------------- 1 | platform = 'esp32' 2 | -------------------------------------------------------------------------------- /esp32/preregister.py: -------------------------------------------------------------------------------- 1 | ../common/preregister.py -------------------------------------------------------------------------------- /esp32/register.py: -------------------------------------------------------------------------------- 1 | ../common/register.py -------------------------------------------------------------------------------- /esp32/updates_app.py: -------------------------------------------------------------------------------- 1 | ../common/updates_app.py -------------------------------------------------------------------------------- /esp32/updates_pythings.py: -------------------------------------------------------------------------------- 1 | ../common/updates_pythings.py -------------------------------------------------------------------------------- /esp32/updates_settings.py: -------------------------------------------------------------------------------- 1 | ../common/updates_settings.py -------------------------------------------------------------------------------- /esp32/utils.py: -------------------------------------------------------------------------------- 1 | ../common/utils.py -------------------------------------------------------------------------------- /esp32/version.py: -------------------------------------------------------------------------------- 1 | ../common/version.py -------------------------------------------------------------------------------- /esp32/websetup.py: -------------------------------------------------------------------------------- 1 | ../common/websetup.py -------------------------------------------------------------------------------- /esp32/worker.py: -------------------------------------------------------------------------------- 1 | ../common/worker.py -------------------------------------------------------------------------------- /esp32_sim800/SIM800L.py: -------------------------------------------------------------------------------- 1 | ../Drivers/SIM800L.py -------------------------------------------------------------------------------- /esp32_sim800/api.py: -------------------------------------------------------------------------------- 1 | ../esp32/api.py -------------------------------------------------------------------------------- /esp32_sim800/boot.py: -------------------------------------------------------------------------------- 1 | ../esp32/boot.py -------------------------------------------------------------------------------- /esp32_sim800/common.py: -------------------------------------------------------------------------------- 1 | ../esp32/common.py -------------------------------------------------------------------------------- /esp32_sim800/crypto_aes.py: -------------------------------------------------------------------------------- 1 | ../esp32/crypto_aes.py -------------------------------------------------------------------------------- /esp32_sim800/crypto_common.py: -------------------------------------------------------------------------------- 1 | ../esp32/crypto_common.py -------------------------------------------------------------------------------- /esp32_sim800/crypto_engine_aes128ecb.py: -------------------------------------------------------------------------------- 1 | ../esp32/crypto_engine_aes128ecb.py -------------------------------------------------------------------------------- /esp32_sim800/crypto_rsa.py: -------------------------------------------------------------------------------- 1 | ../esp32/crypto_rsa.py -------------------------------------------------------------------------------- /esp32_sim800/env.py: -------------------------------------------------------------------------------- 1 | ../esp32/env.py -------------------------------------------------------------------------------- /esp32_sim800/files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/esp32_sim800/files.txt -------------------------------------------------------------------------------- /esp32_sim800/hal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/esp32_sim800/hal.py -------------------------------------------------------------------------------- /esp32_sim800/handle_main_error.py: -------------------------------------------------------------------------------- 1 | ../esp32/handle_main_error.py -------------------------------------------------------------------------------- /esp32_sim800/http.py: -------------------------------------------------------------------------------- 1 | ../common/http.py -------------------------------------------------------------------------------- /esp32_sim800/http_extended.py: -------------------------------------------------------------------------------- 1 | ../common/http_extended.py -------------------------------------------------------------------------------- /esp32_sim800/init.py: -------------------------------------------------------------------------------- 1 | ../esp32/init.py -------------------------------------------------------------------------------- /esp32_sim800/logger.py: -------------------------------------------------------------------------------- 1 | ../esp32/logger.py -------------------------------------------------------------------------------- /esp32_sim800/management.py: -------------------------------------------------------------------------------- 1 | ../esp32/management.py -------------------------------------------------------------------------------- /esp32_sim800/pal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/esp32_sim800/pal.py -------------------------------------------------------------------------------- /esp32_sim800/platform.py: -------------------------------------------------------------------------------- 1 | platform = 'esp32_sim800' 2 | -------------------------------------------------------------------------------- /esp32_sim800/preregister.py: -------------------------------------------------------------------------------- 1 | ../esp32/preregister.py -------------------------------------------------------------------------------- /esp32_sim800/register.py: -------------------------------------------------------------------------------- 1 | ../esp32/register.py -------------------------------------------------------------------------------- /esp32_sim800/updates_app.py: -------------------------------------------------------------------------------- 1 | ../esp32/updates_app.py -------------------------------------------------------------------------------- /esp32_sim800/updates_pythings.py: -------------------------------------------------------------------------------- 1 | ../esp32/updates_pythings.py -------------------------------------------------------------------------------- /esp32_sim800/updates_settings.py: -------------------------------------------------------------------------------- 1 | ../esp32/updates_settings.py -------------------------------------------------------------------------------- /esp32_sim800/utils.py: -------------------------------------------------------------------------------- 1 | ../esp32/utils.py -------------------------------------------------------------------------------- /esp32_sim800/version.py: -------------------------------------------------------------------------------- 1 | ../esp32/version.py -------------------------------------------------------------------------------- /esp32_sim800/websetup.py: -------------------------------------------------------------------------------- 1 | ../esp32/websetup.py -------------------------------------------------------------------------------- /esp32_sim800/worker.py: -------------------------------------------------------------------------------- 1 | ../esp32/worker.py -------------------------------------------------------------------------------- /esp8266/api.py: -------------------------------------------------------------------------------- 1 | ../common/api.py -------------------------------------------------------------------------------- /esp8266/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/esp8266/boot.py -------------------------------------------------------------------------------- /esp8266/common.py: -------------------------------------------------------------------------------- 1 | ../common/common.py -------------------------------------------------------------------------------- /esp8266/env.py: -------------------------------------------------------------------------------- 1 | ../common/env.py -------------------------------------------------------------------------------- /esp8266/files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/esp8266/files.txt -------------------------------------------------------------------------------- /esp8266/hal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/esp8266/hal.py -------------------------------------------------------------------------------- /esp8266/handle_main_error.py: -------------------------------------------------------------------------------- 1 | ../common/handle_main_error.py -------------------------------------------------------------------------------- /esp8266/http.py: -------------------------------------------------------------------------------- 1 | ../common/http.py -------------------------------------------------------------------------------- /esp8266/init.py: -------------------------------------------------------------------------------- 1 | ../common/init.py -------------------------------------------------------------------------------- /esp8266/logger.py: -------------------------------------------------------------------------------- 1 | ../common/logger.py -------------------------------------------------------------------------------- /esp8266/management.py: -------------------------------------------------------------------------------- 1 | ../common/management.py -------------------------------------------------------------------------------- /esp8266/pal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/esp8266/pal.py -------------------------------------------------------------------------------- /esp8266/platform.py: -------------------------------------------------------------------------------- 1 | platform = 'esp8266' 2 | -------------------------------------------------------------------------------- /esp8266/preregister.py: -------------------------------------------------------------------------------- 1 | ../common/preregister.py -------------------------------------------------------------------------------- /esp8266/register.py: -------------------------------------------------------------------------------- 1 | ../common/register.py -------------------------------------------------------------------------------- /esp8266/updates_app.py: -------------------------------------------------------------------------------- 1 | ../common/updates_app.py -------------------------------------------------------------------------------- /esp8266/updates_pythings.py: -------------------------------------------------------------------------------- 1 | ../common/updates_pythings.py -------------------------------------------------------------------------------- /esp8266/updates_settings.py: -------------------------------------------------------------------------------- 1 | ../common/updates_settings.py -------------------------------------------------------------------------------- /esp8266/utils.py: -------------------------------------------------------------------------------- 1 | ../common/utils.py -------------------------------------------------------------------------------- /esp8266/version.py: -------------------------------------------------------------------------------- 1 | ../common/version.py -------------------------------------------------------------------------------- /esp8266/websetup.py: -------------------------------------------------------------------------------- 1 | ../common/websetup.py -------------------------------------------------------------------------------- /esp8266/worker.py: -------------------------------------------------------------------------------- 1 | ../common/worker.py -------------------------------------------------------------------------------- /esp8266_sim800/SIM800L.py: -------------------------------------------------------------------------------- 1 | ../Drivers/SIM800L.py -------------------------------------------------------------------------------- /esp8266_sim800/api.py: -------------------------------------------------------------------------------- 1 | ../esp8266/api.py -------------------------------------------------------------------------------- /esp8266_sim800/boot.py: -------------------------------------------------------------------------------- 1 | ../esp8266/boot.py -------------------------------------------------------------------------------- /esp8266_sim800/common.py: -------------------------------------------------------------------------------- 1 | ../esp8266/common.py -------------------------------------------------------------------------------- /esp8266_sim800/env.py: -------------------------------------------------------------------------------- 1 | ../esp8266/env.py -------------------------------------------------------------------------------- /esp8266_sim800/files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/esp8266_sim800/files.txt -------------------------------------------------------------------------------- /esp8266_sim800/hal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/esp8266_sim800/hal.py -------------------------------------------------------------------------------- /esp8266_sim800/handle_main_error.py: -------------------------------------------------------------------------------- 1 | ../esp8266/handle_main_error.py -------------------------------------------------------------------------------- /esp8266_sim800/http.py: -------------------------------------------------------------------------------- 1 | ../esp8266/http.py -------------------------------------------------------------------------------- /esp8266_sim800/http_extended.py: -------------------------------------------------------------------------------- 1 | ../common/http_extended.py -------------------------------------------------------------------------------- /esp8266_sim800/init.py: -------------------------------------------------------------------------------- 1 | ../esp8266/init.py -------------------------------------------------------------------------------- /esp8266_sim800/logger.py: -------------------------------------------------------------------------------- 1 | ../esp8266/logger.py -------------------------------------------------------------------------------- /esp8266_sim800/management.py: -------------------------------------------------------------------------------- 1 | ../esp8266/management.py -------------------------------------------------------------------------------- /esp8266_sim800/pal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/esp8266_sim800/pal.py -------------------------------------------------------------------------------- /esp8266_sim800/platform.py: -------------------------------------------------------------------------------- 1 | platform = 'esp8266_sim800' 2 | -------------------------------------------------------------------------------- /esp8266_sim800/preregister.py: -------------------------------------------------------------------------------- 1 | ../common/preregister.py -------------------------------------------------------------------------------- /esp8266_sim800/register.py: -------------------------------------------------------------------------------- 1 | ../esp8266/register.py -------------------------------------------------------------------------------- /esp8266_sim800/updates_app.py: -------------------------------------------------------------------------------- 1 | ../esp8266/updates_app.py -------------------------------------------------------------------------------- /esp8266_sim800/updates_pythings.py: -------------------------------------------------------------------------------- 1 | ../esp8266/updates_pythings.py -------------------------------------------------------------------------------- /esp8266_sim800/updates_settings.py: -------------------------------------------------------------------------------- 1 | ../esp8266/updates_settings.py -------------------------------------------------------------------------------- /esp8266_sim800/utils.py: -------------------------------------------------------------------------------- 1 | ../esp8266/utils.py -------------------------------------------------------------------------------- /esp8266_sim800/version.py: -------------------------------------------------------------------------------- 1 | ../esp8266/version.py -------------------------------------------------------------------------------- /esp8266_sim800/websetup.py: -------------------------------------------------------------------------------- 1 | ../esp8266/websetup.py -------------------------------------------------------------------------------- /esp8266_sim800/worker.py: -------------------------------------------------------------------------------- 1 | ../esp8266/worker.py -------------------------------------------------------------------------------- /tools/buildchain/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/buildchain/Dockerfile -------------------------------------------------------------------------------- /tools/buildchain/Makefile-1.11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/buildchain/Makefile-1.11 -------------------------------------------------------------------------------- /tools/buildchain/Makefile-1.11-softuart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/buildchain/Makefile-1.11-softuart -------------------------------------------------------------------------------- /tools/buildchain/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/buildchain/build.sh -------------------------------------------------------------------------------- /tools/buildchain/build_bytecode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/buildchain/build_bytecode.sh -------------------------------------------------------------------------------- /tools/buildchain/builtinimport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/buildchain/builtinimport.c -------------------------------------------------------------------------------- /tools/buildchain/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/buildchain/entrypoint.sh -------------------------------------------------------------------------------- /tools/buildchain/esp8266_common.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/buildchain/esp8266_common.ld -------------------------------------------------------------------------------- /tools/buildchain/espopensdk/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/buildchain/espopensdk/Dockerfile -------------------------------------------------------------------------------- /tools/buildchain/espopensdk/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/buildchain/espopensdk/build.sh -------------------------------------------------------------------------------- /tools/buildchain/inisetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/buildchain/inisetup.py -------------------------------------------------------------------------------- /tools/buildchain/main.c-1.11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/buildchain/main.c-1.11 -------------------------------------------------------------------------------- /tools/buildchain/main.c-1.8.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/buildchain/main.c-1.8.6 -------------------------------------------------------------------------------- /tools/buildchain/main.c-1.9.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/buildchain/main.c-1.9.4 -------------------------------------------------------------------------------- /tools/buildchain/modmachine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/buildchain/modmachine.c -------------------------------------------------------------------------------- /tools/buildchain/modmachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/buildchain/modmachine.h -------------------------------------------------------------------------------- /tools/buildchain/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/buildchain/requirements.txt -------------------------------------------------------------------------------- /tools/buildchain/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/buildchain/run.sh -------------------------------------------------------------------------------- /tools/buildchain/softuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/buildchain/softuart.c -------------------------------------------------------------------------------- /tools/buildchain/softuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/buildchain/softuart.h -------------------------------------------------------------------------------- /tools/buildchain/sudoers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/buildchain/sudoers.txt -------------------------------------------------------------------------------- /tools/installer/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/README.txt -------------------------------------------------------------------------------- /tools/installer/deps/ampy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/ampy.py -------------------------------------------------------------------------------- /tools/installer/deps/ampy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/installer/deps/ampy/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/ampy/cli.py -------------------------------------------------------------------------------- /tools/installer/deps/ampy/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/ampy/files.py -------------------------------------------------------------------------------- /tools/installer/deps/ampy/pyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/ampy/pyboard.py -------------------------------------------------------------------------------- /tools/installer/deps/click/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/click/__init__.py -------------------------------------------------------------------------------- /tools/installer/deps/click/_bashcomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/click/_bashcomplete.py -------------------------------------------------------------------------------- /tools/installer/deps/click/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/click/_compat.py -------------------------------------------------------------------------------- /tools/installer/deps/click/_termui_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/click/_termui_impl.py -------------------------------------------------------------------------------- /tools/installer/deps/click/_textwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/click/_textwrap.py -------------------------------------------------------------------------------- /tools/installer/deps/click/_unicodefun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/click/_unicodefun.py -------------------------------------------------------------------------------- /tools/installer/deps/click/_winconsole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/click/_winconsole.py -------------------------------------------------------------------------------- /tools/installer/deps/click/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/click/core.py -------------------------------------------------------------------------------- /tools/installer/deps/click/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/click/decorators.py -------------------------------------------------------------------------------- /tools/installer/deps/click/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/click/exceptions.py -------------------------------------------------------------------------------- /tools/installer/deps/click/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/click/formatting.py -------------------------------------------------------------------------------- /tools/installer/deps/click/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/click/globals.py -------------------------------------------------------------------------------- /tools/installer/deps/click/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/click/parser.py -------------------------------------------------------------------------------- /tools/installer/deps/click/termui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/click/termui.py -------------------------------------------------------------------------------- /tools/installer/deps/click/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/click/testing.py -------------------------------------------------------------------------------- /tools/installer/deps/click/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/click/types.py -------------------------------------------------------------------------------- /tools/installer/deps/click/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/click/utils.py -------------------------------------------------------------------------------- /tools/installer/deps/dotenv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/dotenv/__init__.py -------------------------------------------------------------------------------- /tools/installer/deps/dotenv/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/dotenv/cli.py -------------------------------------------------------------------------------- /tools/installer/deps/dotenv/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/dotenv/compat.py -------------------------------------------------------------------------------- /tools/installer/deps/dotenv/ipython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/dotenv/ipython.py -------------------------------------------------------------------------------- /tools/installer/deps/dotenv/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/dotenv/main.py -------------------------------------------------------------------------------- /tools/installer/deps/dotenv/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.9.1" 2 | -------------------------------------------------------------------------------- /tools/installer/deps/ecdsa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/ecdsa/__init__.py -------------------------------------------------------------------------------- /tools/installer/deps/ecdsa/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/ecdsa/_version.py -------------------------------------------------------------------------------- /tools/installer/deps/ecdsa/curves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/ecdsa/curves.py -------------------------------------------------------------------------------- /tools/installer/deps/ecdsa/der.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/ecdsa/der.py -------------------------------------------------------------------------------- /tools/installer/deps/ecdsa/ecdsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/ecdsa/ecdsa.py -------------------------------------------------------------------------------- /tools/installer/deps/ecdsa/ellipticcurve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/ecdsa/ellipticcurve.py -------------------------------------------------------------------------------- /tools/installer/deps/ecdsa/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/ecdsa/keys.py -------------------------------------------------------------------------------- /tools/installer/deps/ecdsa/numbertheory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/ecdsa/numbertheory.py -------------------------------------------------------------------------------- /tools/installer/deps/ecdsa/rfc6979.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/ecdsa/rfc6979.py -------------------------------------------------------------------------------- /tools/installer/deps/ecdsa/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/ecdsa/six.py -------------------------------------------------------------------------------- /tools/installer/deps/ecdsa/test_pyecdsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/ecdsa/test_pyecdsa.py -------------------------------------------------------------------------------- /tools/installer/deps/ecdsa/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/ecdsa/util.py -------------------------------------------------------------------------------- /tools/installer/deps/espefuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/espefuse.py -------------------------------------------------------------------------------- /tools/installer/deps/espsecure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/espsecure.py -------------------------------------------------------------------------------- /tools/installer/deps/esptool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/esptool.py -------------------------------------------------------------------------------- /tools/installer/deps/miniterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/miniterm.py -------------------------------------------------------------------------------- /tools/installer/deps/pyaes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/pyaes/__init__.py -------------------------------------------------------------------------------- /tools/installer/deps/pyaes/aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/pyaes/aes.py -------------------------------------------------------------------------------- /tools/installer/deps/pyaes/blockfeeder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/pyaes/blockfeeder.py -------------------------------------------------------------------------------- /tools/installer/deps/pyaes/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/pyaes/util.py -------------------------------------------------------------------------------- /tools/installer/deps/reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/reset.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/__init__.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/aio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/aio.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/rfc2217.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/rfc2217.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/rs485.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/rs485.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/serialcli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/serialcli.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/serialjava.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/serialjava.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/serialposix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/serialposix.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/serialutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/serialutil.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/serialwin32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/serialwin32.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/threaded/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/threaded/__init__.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/installer/deps/serial/tools/hexlify_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/tools/hexlify_codec.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/tools/list_ports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/tools/list_ports.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/tools/list_ports_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/tools/list_ports_common.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/tools/list_ports_linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/tools/list_ports_linux.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/tools/list_ports_osx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/tools/list_ports_osx.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/tools/list_ports_posix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/tools/list_ports_posix.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/tools/list_ports_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/tools/list_ports_windows.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/tools/miniterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/tools/miniterm.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/urlhandler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/installer/deps/serial/urlhandler/protocol_alt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/urlhandler/protocol_alt.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/urlhandler/protocol_hwgrep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/urlhandler/protocol_hwgrep.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/urlhandler/protocol_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/urlhandler/protocol_loop.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/urlhandler/protocol_rfc2217.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/urlhandler/protocol_rfc2217.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/urlhandler/protocol_serve-rfc2217.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/urlhandler/protocol_serve-rfc2217.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/urlhandler/protocol_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/urlhandler/protocol_socket.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/urlhandler/protocol_spy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/urlhandler/protocol_spy.py -------------------------------------------------------------------------------- /tools/installer/deps/serial/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/deps/serial/win32.py -------------------------------------------------------------------------------- /tools/installer/installer.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/installer.command -------------------------------------------------------------------------------- /tools/installer/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/installer.py -------------------------------------------------------------------------------- /tools/installer/installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/installer.sh -------------------------------------------------------------------------------- /tools/installer/utils/copy_file_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/utils/copy_file_example.sh -------------------------------------------------------------------------------- /tools/installer/utils/copy_files_and_reboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/utils/copy_files_and_reboot.py -------------------------------------------------------------------------------- /tools/installer/utils/list_ports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/utils/list_ports.py -------------------------------------------------------------------------------- /tools/installer/utils/setup_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/installer/utils/setup_venv.sh -------------------------------------------------------------------------------- /tools/micropythonsimulator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/micropythonsimulator/Dockerfile -------------------------------------------------------------------------------- /tools/micropythonsimulator/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/micropythonsimulator/build.sh -------------------------------------------------------------------------------- /tools/micropythonsimulator/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/micropythonsimulator/entrypoint.sh -------------------------------------------------------------------------------- /tools/micropythonsimulator/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/micropythonsimulator/run.sh -------------------------------------------------------------------------------- /tools/pythonsimulator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/pythonsimulator/Dockerfile -------------------------------------------------------------------------------- /tools/pythonsimulator/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/pythonsimulator/build.sh -------------------------------------------------------------------------------- /tools/pythonsimulator/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/pythonsimulator/entrypoint.sh -------------------------------------------------------------------------------- /tools/pythonsimulator/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/tools/pythonsimulator/run.sh -------------------------------------------------------------------------------- /utilities/activate_wifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/utilities/activate_wifi.py -------------------------------------------------------------------------------- /utilities/consolidate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/utilities/consolidate.sh -------------------------------------------------------------------------------- /utilities/create_files_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/utilities/create_files_list.py -------------------------------------------------------------------------------- /utilities/create_installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/utilities/create_installer.sh -------------------------------------------------------------------------------- /utilities/create_releases_tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/utilities/create_releases_tree.sh -------------------------------------------------------------------------------- /utilities/create_selfarchives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/utilities/create_selfarchives.py -------------------------------------------------------------------------------- /utilities/create_zips.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/utilities/create_zips.sh -------------------------------------------------------------------------------- /utilities/crypto_aes128.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/utilities/crypto_aes128.py -------------------------------------------------------------------------------- /utilities/crypto_generate_rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/utilities/crypto_generate_rsa.py -------------------------------------------------------------------------------- /utilities/crypto_poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/utilities/crypto_poc.py -------------------------------------------------------------------------------- /utilities/crypto_test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/utilities/crypto_test1.py -------------------------------------------------------------------------------- /utilities/crypto_test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/utilities/crypto_test2.py -------------------------------------------------------------------------------- /utilities/crypto_test_aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/utilities/crypto_test_aes.py -------------------------------------------------------------------------------- /utilities/dante.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/utilities/dante.txt -------------------------------------------------------------------------------- /utilities/draft_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/utilities/draft_release.sh -------------------------------------------------------------------------------- /utilities/flash_esp32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/utilities/flash_esp32.sh -------------------------------------------------------------------------------- /utilities/flash_esp8266.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/utilities/flash_esp8266.sh -------------------------------------------------------------------------------- /utilities/install_over_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/utilities/install_over_network.py -------------------------------------------------------------------------------- /utilities/put_os.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/utilities/put_os.sh -------------------------------------------------------------------------------- /utilities/rmdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythings/PythingsOS/HEAD/utilities/rmdir.py --------------------------------------------------------------------------------