├── .clang-format ├── .github ├── ISSUE_TEMPLATE │ └── bug-report.yml └── workflows │ ├── Arduino-Lint-Check.yml │ └── clang-format-check.yml ├── .gitignore ├── LICENSE ├── README.md ├── generate_user_custom.py ├── platformio.ini └── src ├── command_processor.cpp ├── command_processor.hpp ├── common_header.cpp ├── common_header.h ├── i2c_master.cpp ├── i2c_master.hpp ├── jpg ├── jpge.cpp └── jpge.h ├── main.cpp ├── mlx90640.cpp ├── mlx90640.hpp ├── resource ├── bmp_logo.h ├── jpg_staff.h └── wav_enter.h ├── screenshot_streamer.hpp └── webserverTask.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5StickC-Plus-TLite-FW/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5StickC-Plus-TLite-FW/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/workflows/Arduino-Lint-Check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5StickC-Plus-TLite-FW/HEAD/.github/workflows/Arduino-Lint-Check.yml -------------------------------------------------------------------------------- /.github/workflows/clang-format-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5StickC-Plus-TLite-FW/HEAD/.github/workflows/clang-format-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5StickC-Plus-TLite-FW/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5StickC-Plus-TLite-FW/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5StickC-Plus-TLite-FW/HEAD/README.md -------------------------------------------------------------------------------- /generate_user_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5StickC-Plus-TLite-FW/HEAD/generate_user_custom.py -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5StickC-Plus-TLite-FW/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/command_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5StickC-Plus-TLite-FW/HEAD/src/command_processor.cpp -------------------------------------------------------------------------------- /src/command_processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5StickC-Plus-TLite-FW/HEAD/src/command_processor.hpp -------------------------------------------------------------------------------- /src/common_header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5StickC-Plus-TLite-FW/HEAD/src/common_header.cpp -------------------------------------------------------------------------------- /src/common_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5StickC-Plus-TLite-FW/HEAD/src/common_header.h -------------------------------------------------------------------------------- /src/i2c_master.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5StickC-Plus-TLite-FW/HEAD/src/i2c_master.cpp -------------------------------------------------------------------------------- /src/i2c_master.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5StickC-Plus-TLite-FW/HEAD/src/i2c_master.hpp -------------------------------------------------------------------------------- /src/jpg/jpge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5StickC-Plus-TLite-FW/HEAD/src/jpg/jpge.cpp -------------------------------------------------------------------------------- /src/jpg/jpge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5StickC-Plus-TLite-FW/HEAD/src/jpg/jpge.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5StickC-Plus-TLite-FW/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mlx90640.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5StickC-Plus-TLite-FW/HEAD/src/mlx90640.cpp -------------------------------------------------------------------------------- /src/mlx90640.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5StickC-Plus-TLite-FW/HEAD/src/mlx90640.hpp -------------------------------------------------------------------------------- /src/resource/bmp_logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5StickC-Plus-TLite-FW/HEAD/src/resource/bmp_logo.h -------------------------------------------------------------------------------- /src/resource/jpg_staff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5StickC-Plus-TLite-FW/HEAD/src/resource/jpg_staff.h -------------------------------------------------------------------------------- /src/resource/wav_enter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5StickC-Plus-TLite-FW/HEAD/src/resource/wav_enter.h -------------------------------------------------------------------------------- /src/screenshot_streamer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5StickC-Plus-TLite-FW/HEAD/src/screenshot_streamer.hpp -------------------------------------------------------------------------------- /src/webserverTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5StickC-Plus-TLite-FW/HEAD/src/webserverTask.cpp --------------------------------------------------------------------------------