├── LICENSE ├── README.md ├── components ├── I2Cdev │ ├── CMakeLists.txt │ ├── I2Cdev.cpp │ ├── I2Cdev.h │ └── component.mk ├── MPU6050 │ ├── CMakeLists.txt │ ├── MPU6050.cpp │ ├── MPU6050.h │ ├── MPU6050_6Axis_MotionApps20.cpp │ ├── MPU6050_6Axis_MotionApps20.h │ ├── MPU6050_6Axis_MotionApps612.cpp │ ├── MPU6050_6Axis_MotionApps612.h │ ├── MPU6050_9Axis_MotionApps41.cpp │ ├── MPU6050_9Axis_MotionApps41.h │ ├── component.mk │ ├── esp-idf.h │ └── helper_3dmath.h └── st7789 │ ├── CMakeLists.txt │ ├── Kconfig.projbuild │ ├── axp192.c │ ├── axp192.h │ ├── component.mk │ ├── fontx.c │ ├── fontx.h │ ├── sgm2578.c │ ├── sgm2578.h │ ├── st7789.c │ └── st7789.h ├── imu ├── CMakeLists.txt ├── README.md ├── main │ ├── CMakeLists.txt │ ├── button.c │ ├── component.mk │ ├── main.cpp │ ├── mpu6050.cpp │ ├── parameter.h │ └── tft.c └── sdkconfig.defaults ├── pose ├── CMakeLists.txt ├── README.md ├── fonts │ ├── ILGH16XB.FNT │ ├── ILGH24XB.FNT │ ├── ILGH32XB.FNT │ ├── ILMH16XB.FNT │ ├── ILMH24XB.FNT │ └── ILMH32XB.FNT ├── main │ ├── CMakeLists.txt │ ├── button.c │ ├── component.mk │ ├── main.cpp │ ├── mpu6050.cpp │ ├── parameter.h │ ├── spiffs.c │ └── tft.c ├── partitions.csv └── sdkconfig.defaults └── screen ├── CMakeLists.txt ├── fonts ├── ILGH16XB.FNT ├── ILGH24XB.FNT ├── ILGH32XB.FNT ├── ILMH16XB.FNT ├── ILMH24XB.FNT ├── ILMH32XB.FNT ├── Scroll-o-Sprites.fnt └── emoticons21.fnt ├── icons ├── facebook.png ├── git.png ├── instagram.png ├── linkedin.png ├── twitter.png ├── vkontakte.png ├── whatsapp.png └── youtube.png ├── images ├── esp32.jpeg ├── esp32_135.bmp ├── esp_logo.png └── image.bmp ├── main ├── CMakeLists.txt ├── bmpfile.h ├── component.mk ├── decode_jpeg.c ├── decode_jpeg.h ├── decode_png.c ├── decode_png.h ├── main.c ├── pngle.c └── pngle.h ├── partitions.csv └── sdkconfig.defaults /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/README.md -------------------------------------------------------------------------------- /components/I2Cdev/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/I2Cdev/CMakeLists.txt -------------------------------------------------------------------------------- /components/I2Cdev/I2Cdev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/I2Cdev/I2Cdev.cpp -------------------------------------------------------------------------------- /components/I2Cdev/I2Cdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/I2Cdev/I2Cdev.h -------------------------------------------------------------------------------- /components/I2Cdev/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/I2Cdev/component.mk -------------------------------------------------------------------------------- /components/MPU6050/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/MPU6050/CMakeLists.txt -------------------------------------------------------------------------------- /components/MPU6050/MPU6050.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/MPU6050/MPU6050.cpp -------------------------------------------------------------------------------- /components/MPU6050/MPU6050.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/MPU6050/MPU6050.h -------------------------------------------------------------------------------- /components/MPU6050/MPU6050_6Axis_MotionApps20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/MPU6050/MPU6050_6Axis_MotionApps20.cpp -------------------------------------------------------------------------------- /components/MPU6050/MPU6050_6Axis_MotionApps20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/MPU6050/MPU6050_6Axis_MotionApps20.h -------------------------------------------------------------------------------- /components/MPU6050/MPU6050_6Axis_MotionApps612.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/MPU6050/MPU6050_6Axis_MotionApps612.cpp -------------------------------------------------------------------------------- /components/MPU6050/MPU6050_6Axis_MotionApps612.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/MPU6050/MPU6050_6Axis_MotionApps612.h -------------------------------------------------------------------------------- /components/MPU6050/MPU6050_9Axis_MotionApps41.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/MPU6050/MPU6050_9Axis_MotionApps41.cpp -------------------------------------------------------------------------------- /components/MPU6050/MPU6050_9Axis_MotionApps41.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/MPU6050/MPU6050_9Axis_MotionApps41.h -------------------------------------------------------------------------------- /components/MPU6050/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/MPU6050/component.mk -------------------------------------------------------------------------------- /components/MPU6050/esp-idf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/MPU6050/esp-idf.h -------------------------------------------------------------------------------- /components/MPU6050/helper_3dmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/MPU6050/helper_3dmath.h -------------------------------------------------------------------------------- /components/st7789/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/st7789/CMakeLists.txt -------------------------------------------------------------------------------- /components/st7789/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/st7789/Kconfig.projbuild -------------------------------------------------------------------------------- /components/st7789/axp192.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/st7789/axp192.c -------------------------------------------------------------------------------- /components/st7789/axp192.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/st7789/axp192.h -------------------------------------------------------------------------------- /components/st7789/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/st7789/component.mk -------------------------------------------------------------------------------- /components/st7789/fontx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/st7789/fontx.c -------------------------------------------------------------------------------- /components/st7789/fontx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/st7789/fontx.h -------------------------------------------------------------------------------- /components/st7789/sgm2578.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/st7789/sgm2578.c -------------------------------------------------------------------------------- /components/st7789/sgm2578.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/st7789/sgm2578.h -------------------------------------------------------------------------------- /components/st7789/st7789.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/st7789/st7789.c -------------------------------------------------------------------------------- /components/st7789/st7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/components/st7789/st7789.h -------------------------------------------------------------------------------- /imu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/imu/CMakeLists.txt -------------------------------------------------------------------------------- /imu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/imu/README.md -------------------------------------------------------------------------------- /imu/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/imu/main/CMakeLists.txt -------------------------------------------------------------------------------- /imu/main/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/imu/main/button.c -------------------------------------------------------------------------------- /imu/main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/imu/main/component.mk -------------------------------------------------------------------------------- /imu/main/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/imu/main/main.cpp -------------------------------------------------------------------------------- /imu/main/mpu6050.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/imu/main/mpu6050.cpp -------------------------------------------------------------------------------- /imu/main/parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/imu/main/parameter.h -------------------------------------------------------------------------------- /imu/main/tft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/imu/main/tft.c -------------------------------------------------------------------------------- /imu/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/imu/sdkconfig.defaults -------------------------------------------------------------------------------- /pose/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/pose/CMakeLists.txt -------------------------------------------------------------------------------- /pose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/pose/README.md -------------------------------------------------------------------------------- /pose/fonts/ILGH16XB.FNT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/pose/fonts/ILGH16XB.FNT -------------------------------------------------------------------------------- /pose/fonts/ILGH24XB.FNT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/pose/fonts/ILGH24XB.FNT -------------------------------------------------------------------------------- /pose/fonts/ILGH32XB.FNT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/pose/fonts/ILGH32XB.FNT -------------------------------------------------------------------------------- /pose/fonts/ILMH16XB.FNT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/pose/fonts/ILMH16XB.FNT -------------------------------------------------------------------------------- /pose/fonts/ILMH24XB.FNT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/pose/fonts/ILMH24XB.FNT -------------------------------------------------------------------------------- /pose/fonts/ILMH32XB.FNT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/pose/fonts/ILMH32XB.FNT -------------------------------------------------------------------------------- /pose/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/pose/main/CMakeLists.txt -------------------------------------------------------------------------------- /pose/main/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/pose/main/button.c -------------------------------------------------------------------------------- /pose/main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/pose/main/component.mk -------------------------------------------------------------------------------- /pose/main/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/pose/main/main.cpp -------------------------------------------------------------------------------- /pose/main/mpu6050.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/pose/main/mpu6050.cpp -------------------------------------------------------------------------------- /pose/main/parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/pose/main/parameter.h -------------------------------------------------------------------------------- /pose/main/spiffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/pose/main/spiffs.c -------------------------------------------------------------------------------- /pose/main/tft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/pose/main/tft.c -------------------------------------------------------------------------------- /pose/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/pose/partitions.csv -------------------------------------------------------------------------------- /pose/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/pose/sdkconfig.defaults -------------------------------------------------------------------------------- /screen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/CMakeLists.txt -------------------------------------------------------------------------------- /screen/fonts/ILGH16XB.FNT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/fonts/ILGH16XB.FNT -------------------------------------------------------------------------------- /screen/fonts/ILGH24XB.FNT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/fonts/ILGH24XB.FNT -------------------------------------------------------------------------------- /screen/fonts/ILGH32XB.FNT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/fonts/ILGH32XB.FNT -------------------------------------------------------------------------------- /screen/fonts/ILMH16XB.FNT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/fonts/ILMH16XB.FNT -------------------------------------------------------------------------------- /screen/fonts/ILMH24XB.FNT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/fonts/ILMH24XB.FNT -------------------------------------------------------------------------------- /screen/fonts/ILMH32XB.FNT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/fonts/ILMH32XB.FNT -------------------------------------------------------------------------------- /screen/fonts/Scroll-o-Sprites.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/fonts/Scroll-o-Sprites.fnt -------------------------------------------------------------------------------- /screen/fonts/emoticons21.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/fonts/emoticons21.fnt -------------------------------------------------------------------------------- /screen/icons/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/icons/facebook.png -------------------------------------------------------------------------------- /screen/icons/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/icons/git.png -------------------------------------------------------------------------------- /screen/icons/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/icons/instagram.png -------------------------------------------------------------------------------- /screen/icons/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/icons/linkedin.png -------------------------------------------------------------------------------- /screen/icons/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/icons/twitter.png -------------------------------------------------------------------------------- /screen/icons/vkontakte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/icons/vkontakte.png -------------------------------------------------------------------------------- /screen/icons/whatsapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/icons/whatsapp.png -------------------------------------------------------------------------------- /screen/icons/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/icons/youtube.png -------------------------------------------------------------------------------- /screen/images/esp32.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/images/esp32.jpeg -------------------------------------------------------------------------------- /screen/images/esp32_135.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/images/esp32_135.bmp -------------------------------------------------------------------------------- /screen/images/esp_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/images/esp_logo.png -------------------------------------------------------------------------------- /screen/images/image.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/images/image.bmp -------------------------------------------------------------------------------- /screen/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/main/CMakeLists.txt -------------------------------------------------------------------------------- /screen/main/bmpfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/main/bmpfile.h -------------------------------------------------------------------------------- /screen/main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/main/component.mk -------------------------------------------------------------------------------- /screen/main/decode_jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/main/decode_jpeg.c -------------------------------------------------------------------------------- /screen/main/decode_jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/main/decode_jpeg.h -------------------------------------------------------------------------------- /screen/main/decode_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/main/decode_png.c -------------------------------------------------------------------------------- /screen/main/decode_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/main/decode_png.h -------------------------------------------------------------------------------- /screen/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/main/main.c -------------------------------------------------------------------------------- /screen/main/pngle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/main/pngle.c -------------------------------------------------------------------------------- /screen/main/pngle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/main/pngle.h -------------------------------------------------------------------------------- /screen/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/partitions.csv -------------------------------------------------------------------------------- /screen/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/esp-idf-m5stickC-Plus/HEAD/screen/sdkconfig.defaults --------------------------------------------------------------------------------