├── .cproject ├── .gitignore ├── .project ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── Optimizations.txt ├── Readme.md ├── components ├── esp32-ds18b20 │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── component.mk │ ├── doc │ │ ├── .gitignore │ │ └── Doxyfile │ ├── ds18b20.c │ ├── include │ │ └── ds18b20.h │ └── library.json └── esp32-owb │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── component.mk │ ├── doc │ ├── .gitignore │ └── Doxyfile │ ├── include │ ├── owb.h │ ├── owb_gpio.h │ └── owb_rmt.h │ ├── library.json │ ├── owb.c │ ├── owb_gpio.c │ └── owb_rmt.c ├── main ├── CMakeLists.txt ├── Kconfig.projbuild ├── component.mk ├── main.c ├── main.h ├── stm8s │ ├── E_W_ROUTINEs_32K_ver_10.h │ ├── E_W_ROUTINEs_32K_ver_12.h │ ├── E_W_ROUTINEs_32K_ver_13.h │ └── E_W_ROUTINEs_32K_ver_14.h ├── tsdz_bt.c ├── tsdz_bt.h ├── tsdz_commands.c ├── tsdz_commands.h ├── tsdz_data.c ├── tsdz_data.h ├── tsdz_ds18b20.c ├── tsdz_ds18b20.h ├── tsdz_nvs.c ├── tsdz_nvs.h ├── tsdz_ota_esp32.c ├── tsdz_ota_esp32.h ├── tsdz_ota_stm8.c ├── tsdz_ota_stm8.h ├── tsdz_tmp112.c ├── tsdz_tmp112.h ├── tsdz_uart.c ├── tsdz_uart.h ├── tsdz_utils.c ├── tsdz_utils.h ├── tsdz_wifi.c └── tsdz_wifi.h ├── partitions.csv ├── sdkconfig ├── sdkconfig.old └── version.txt /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/.cproject -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | .settings 3 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/.project -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/Makefile -------------------------------------------------------------------------------- /Optimizations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/Optimizations.txt -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/Readme.md -------------------------------------------------------------------------------- /components/esp32-ds18b20/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/components/esp32-ds18b20/.travis.yml -------------------------------------------------------------------------------- /components/esp32-ds18b20/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/components/esp32-ds18b20/CMakeLists.txt -------------------------------------------------------------------------------- /components/esp32-ds18b20/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/components/esp32-ds18b20/LICENSE -------------------------------------------------------------------------------- /components/esp32-ds18b20/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/components/esp32-ds18b20/README.md -------------------------------------------------------------------------------- /components/esp32-ds18b20/component.mk: -------------------------------------------------------------------------------- 1 | # Use defaults 2 | -------------------------------------------------------------------------------- /components/esp32-ds18b20/doc/.gitignore: -------------------------------------------------------------------------------- 1 | html/ 2 | latex/ 3 | 4 | -------------------------------------------------------------------------------- /components/esp32-ds18b20/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/components/esp32-ds18b20/doc/Doxyfile -------------------------------------------------------------------------------- /components/esp32-ds18b20/ds18b20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/components/esp32-ds18b20/ds18b20.c -------------------------------------------------------------------------------- /components/esp32-ds18b20/include/ds18b20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/components/esp32-ds18b20/include/ds18b20.h -------------------------------------------------------------------------------- /components/esp32-ds18b20/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/components/esp32-ds18b20/library.json -------------------------------------------------------------------------------- /components/esp32-owb/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/components/esp32-owb/.travis.yml -------------------------------------------------------------------------------- /components/esp32-owb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/components/esp32-owb/CMakeLists.txt -------------------------------------------------------------------------------- /components/esp32-owb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/components/esp32-owb/LICENSE -------------------------------------------------------------------------------- /components/esp32-owb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/components/esp32-owb/README.md -------------------------------------------------------------------------------- /components/esp32-owb/component.mk: -------------------------------------------------------------------------------- 1 | # Use defaults. 2 | -------------------------------------------------------------------------------- /components/esp32-owb/doc/.gitignore: -------------------------------------------------------------------------------- 1 | html/ 2 | latex/ 3 | 4 | -------------------------------------------------------------------------------- /components/esp32-owb/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/components/esp32-owb/doc/Doxyfile -------------------------------------------------------------------------------- /components/esp32-owb/include/owb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/components/esp32-owb/include/owb.h -------------------------------------------------------------------------------- /components/esp32-owb/include/owb_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/components/esp32-owb/include/owb_gpio.h -------------------------------------------------------------------------------- /components/esp32-owb/include/owb_rmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/components/esp32-owb/include/owb_rmt.h -------------------------------------------------------------------------------- /components/esp32-owb/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/components/esp32-owb/library.json -------------------------------------------------------------------------------- /components/esp32-owb/owb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/components/esp32-owb/owb.c -------------------------------------------------------------------------------- /components/esp32-owb/owb_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/components/esp32-owb/owb_gpio.c -------------------------------------------------------------------------------- /components/esp32-owb/owb_rmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/components/esp32-owb/owb_rmt.c -------------------------------------------------------------------------------- /main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/CMakeLists.txt -------------------------------------------------------------------------------- /main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/Kconfig.projbuild -------------------------------------------------------------------------------- /main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/component.mk -------------------------------------------------------------------------------- /main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/main.c -------------------------------------------------------------------------------- /main/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/main.h -------------------------------------------------------------------------------- /main/stm8s/E_W_ROUTINEs_32K_ver_10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/stm8s/E_W_ROUTINEs_32K_ver_10.h -------------------------------------------------------------------------------- /main/stm8s/E_W_ROUTINEs_32K_ver_12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/stm8s/E_W_ROUTINEs_32K_ver_12.h -------------------------------------------------------------------------------- /main/stm8s/E_W_ROUTINEs_32K_ver_13.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/stm8s/E_W_ROUTINEs_32K_ver_13.h -------------------------------------------------------------------------------- /main/stm8s/E_W_ROUTINEs_32K_ver_14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/stm8s/E_W_ROUTINEs_32K_ver_14.h -------------------------------------------------------------------------------- /main/tsdz_bt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/tsdz_bt.c -------------------------------------------------------------------------------- /main/tsdz_bt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/tsdz_bt.h -------------------------------------------------------------------------------- /main/tsdz_commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/tsdz_commands.c -------------------------------------------------------------------------------- /main/tsdz_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/tsdz_commands.h -------------------------------------------------------------------------------- /main/tsdz_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/tsdz_data.c -------------------------------------------------------------------------------- /main/tsdz_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/tsdz_data.h -------------------------------------------------------------------------------- /main/tsdz_ds18b20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/tsdz_ds18b20.c -------------------------------------------------------------------------------- /main/tsdz_ds18b20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/tsdz_ds18b20.h -------------------------------------------------------------------------------- /main/tsdz_nvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/tsdz_nvs.c -------------------------------------------------------------------------------- /main/tsdz_nvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/tsdz_nvs.h -------------------------------------------------------------------------------- /main/tsdz_ota_esp32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/tsdz_ota_esp32.c -------------------------------------------------------------------------------- /main/tsdz_ota_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/tsdz_ota_esp32.h -------------------------------------------------------------------------------- /main/tsdz_ota_stm8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/tsdz_ota_stm8.c -------------------------------------------------------------------------------- /main/tsdz_ota_stm8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/tsdz_ota_stm8.h -------------------------------------------------------------------------------- /main/tsdz_tmp112.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/tsdz_tmp112.c -------------------------------------------------------------------------------- /main/tsdz_tmp112.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/tsdz_tmp112.h -------------------------------------------------------------------------------- /main/tsdz_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/tsdz_uart.c -------------------------------------------------------------------------------- /main/tsdz_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/tsdz_uart.h -------------------------------------------------------------------------------- /main/tsdz_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/tsdz_utils.c -------------------------------------------------------------------------------- /main/tsdz_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/tsdz_utils.h -------------------------------------------------------------------------------- /main/tsdz_wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/tsdz_wifi.c -------------------------------------------------------------------------------- /main/tsdz_wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/main/tsdz_wifi.h -------------------------------------------------------------------------------- /partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/partitions.csv -------------------------------------------------------------------------------- /sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/sdkconfig -------------------------------------------------------------------------------- /sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TSDZ2-ESP32/TSDZ2-ESP32-Main/HEAD/sdkconfig.old -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 1.2.2 --------------------------------------------------------------------------------