├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── components ├── component_conf.mk ├── gdrivers │ ├── CMakeLists.txt │ ├── component.mk │ ├── gaudio │ │ └── dac_audio │ │ │ ├── gaudio_play_board_dac_audio.h │ │ │ ├── gaudio_play_config.h │ │ │ └── gaudio_play_dac_audio.c │ ├── gdisp │ │ ├── ILI9341 │ │ │ ├── ILI9341.h │ │ │ ├── ILI9341_adapter.cpp │ │ │ ├── board_ILI9341.h │ │ │ ├── gdisp_lld_ILI9341.c │ │ │ ├── gdisp_lld_config.h │ │ │ └── lcd_adapter.h │ │ ├── NT35510 │ │ │ ├── NT35510.h │ │ │ ├── NT35510_adapter.cpp │ │ │ ├── board_NT35510.h │ │ │ ├── gdisp_lld_NT35510.c │ │ │ ├── gdisp_lld_config.h │ │ │ └── lcd_adapter.h │ │ ├── SSD1306 │ │ │ ├── SSD1306.h │ │ │ ├── SSD1306_adapter.cpp │ │ │ ├── board_SSD1306.h │ │ │ ├── gdisp_lld_SSD1306.c │ │ │ ├── gdisp_lld_config.h │ │ │ └── lcd_adapter.h │ │ ├── ST7789 │ │ │ ├── ST7789.h │ │ │ ├── ST7789_adapter.cpp │ │ │ ├── board_ST7789.h │ │ │ ├── gdisp_lld_ST7789.c │ │ │ ├── gdisp_lld_config.h │ │ │ └── lcd_adapter.h │ │ ├── framebuffer │ │ │ ├── board_framebuffer.h │ │ │ ├── gdisp_lld_config.h │ │ │ └── gdisp_lld_framebuffer.c │ │ └── template │ │ │ ├── board_template.h │ │ │ ├── gdisp_lld_config.h │ │ │ ├── gdisp_lld_template.c │ │ │ └── template.h │ ├── ginput │ │ ├── FT5X06 │ │ │ ├── FT5x06.h │ │ │ ├── gmouse_lld_FT5x06.c │ │ │ ├── gmouse_lld_FT5x06.h │ │ │ └── lvgl_indev_adapter.c │ │ ├── XPT2046 │ │ │ ├── XPT2046_adapter.cpp │ │ │ ├── XPT2046_adapter.h │ │ │ ├── gmouse_lld_XPT2046.c │ │ │ └── gmouse_lld_XPT2046.h │ │ ├── toggle │ │ │ ├── button │ │ │ │ ├── ginput_lld_toggle_button.c │ │ │ │ ├── ginput_lld_toggle_button.h │ │ │ │ └── ginput_lld_toggle_config.h │ │ │ └── touchpad │ │ │ │ ├── ginput_lld_toggle_config.h │ │ │ │ ├── ginput_lld_toggle_touchpad.c │ │ │ │ └── ginput_lld_toggle_touchpad.h │ │ └── touch │ │ │ ├── FT5X06 │ │ │ ├── FT5x06.h │ │ │ ├── gmouse_lld_FT5x06.c │ │ │ ├── gmouse_lld_FT5x06.h │ │ │ └── lvgl_indev_adapter.c │ │ │ └── XPT2046 │ │ │ ├── XPT2046_adapter.cpp │ │ │ ├── XPT2046_adapter.h │ │ │ ├── gmouse_lld_XPT2046.c │ │ │ └── gmouse_lld_XPT2046.h │ └── include │ │ ├── lvgl_disp_config.h │ │ └── lvgl_indev_config.h ├── general │ └── param │ │ ├── README.md │ │ ├── component.mk │ │ ├── include │ │ └── iot_param.h │ │ ├── param.c │ │ └── test │ │ ├── component.mk │ │ └── param_test.c ├── i2c_devices │ ├── i2c_bus │ │ ├── README.md │ │ ├── component.mk │ │ ├── i2c_bus.c │ │ ├── i2c_bus_obj.cpp │ │ └── include │ │ │ └── iot_i2c_bus.h │ ├── others │ │ └── ssd1306 │ │ │ ├── component.mk │ │ │ ├── include │ │ │ ├── iot_ssd1306.h │ │ │ └── ssd1306_fonts.h │ │ │ ├── ssd1306.c │ │ │ ├── ssd1306_fonts.c │ │ │ ├── ssd1306_obj.cpp │ │ │ └── test │ │ │ ├── component.mk │ │ │ ├── ssd1306_obj_test.cpp │ │ │ └── ssd1306_test.c │ └── sensor │ │ └── ft5x06 │ │ ├── component.mk │ │ ├── ft5x06.c │ │ ├── include │ │ └── iot_ft5x06.h │ │ └── test │ │ ├── component.mk │ │ └── ft5x06_test.c ├── i2s_devices │ ├── ili9806 │ │ ├── component.mk │ │ ├── ili9806.c │ │ ├── include │ │ │ └── iot_ili9806.h │ │ └── test │ │ │ ├── component.mk │ │ │ ├── gussblur.h │ │ │ ├── ili9806_test.c │ │ │ └── pic3.h │ ├── lcd_common │ │ ├── Kconfig │ │ ├── component.mk │ │ ├── i2s_lcd.c │ │ ├── i2s_lcd_com.c │ │ └── include │ │ │ ├── asc8x16.h │ │ │ ├── i2s_lcd_com.h │ │ │ └── iot_i2s_lcd.h │ └── nt35510 │ │ ├── component.mk │ │ ├── include │ │ └── iot_nt35510.h │ │ ├── nt35510.c │ │ └── test │ │ ├── component.mk │ │ ├── nt35510_test.c │ │ └── ppc.h ├── lvgl_gui │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Makefile.projbuild │ ├── README.md │ ├── component.mk │ ├── include │ │ ├── iot_lvgl.h │ │ └── lv_calibration.h │ ├── lv_calibration.c │ ├── lv_conf.h │ └── lvgl.c └── spi_devices │ ├── epaper │ ├── CMakeLists.txt │ ├── component.mk │ ├── epaper.c │ ├── epaper_font.c │ ├── include │ │ ├── epaper.h │ │ └── epaper_fonts.h │ └── test │ │ ├── README.md │ │ ├── component.mk │ │ ├── epaper_test.c │ │ ├── imagedata.c │ │ └── imagedata.h │ ├── lcd │ ├── CMakeLists.txt │ ├── README.md │ ├── adaptation.cpp │ ├── component.mk │ ├── font7s.c │ ├── glcdfont.c │ ├── include │ │ ├── WProgram.h │ │ ├── font7s.h │ │ ├── gfxfont.h │ │ ├── glcdfont.h │ │ ├── iot_lcd.h │ │ └── spi_lcd.h │ ├── iot_lcd.cpp │ ├── spi_lcd.c │ └── test │ │ ├── component.mk │ │ ├── image.h │ │ ├── lcd_example.cpp │ │ ├── lcd_image.h │ │ ├── lcd_refresh.cpp │ │ └── lcd_thermostat.cpp │ └── xpt2046 │ ├── CMakeLists.txt │ ├── component.mk │ ├── include │ └── iot_xpt2046.h │ ├── iot_xpt.c │ ├── test │ ├── app_touch.h │ ├── bitmap.h │ ├── component.mk │ ├── lcd_tft.cpp │ ├── touch_screen.cpp │ └── touch_tft_test.cpp │ └── xpt2046_obj.cpp ├── lvgl_2048 ├── Makefile ├── main │ ├── app_main.cpp │ ├── background.c │ ├── component.mk │ ├── esp32_logo.c │ ├── esp_logo.c │ ├── game.c │ ├── game.h │ └── lvgl_logo.c ├── partitions_singleapp.csv └── sdkconfig.defaults ├── lvgl_example ├── Makefile ├── main │ ├── app_main.cpp │ ├── component.mk │ ├── lv_test_theme.c │ └── lv_test_theme.h └── sdkconfig.defaults ├── mp3_example ├── Makefile ├── main │ ├── app_main.c │ └── component.mk └── sdkconfig.defaults └── remote_control ├── CMakeLists.txt ├── Makefile ├── PIC.zip ├── PIC ├── CZS9JURQOCGC55WB]@LYC{B.jpg ├── P1]18URY}4]563R5HYS4$6U.jpg ├── T`A1XMJFL@FWL%A@T$}PBVM.jpg └── __MACOSX │ ├── ._CZS9JURQOCGC55WB]@LYC{B.jpg │ ├── ._P1]18URY}4]563R5HYS4$6U.jpg │ └── ._T`A1XMJFL@FWL%A@T$}PBVM.jpg ├── README.md ├── main ├── CMakeLists.txt ├── app_main.cpp ├── component.mk ├── number.c ├── tempreture_symbol_40.c ├── wallpaper1.c ├── wallpaper2.c └── wallpaper3.c ├── partitions_singleapp.csv └── sdkconfig.defaults /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/README.md -------------------------------------------------------------------------------- /components/component_conf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/component_conf.mk -------------------------------------------------------------------------------- /components/gdrivers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/CMakeLists.txt -------------------------------------------------------------------------------- /components/gdrivers/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/component.mk -------------------------------------------------------------------------------- /components/gdrivers/gaudio/dac_audio/gaudio_play_board_dac_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gaudio/dac_audio/gaudio_play_board_dac_audio.h -------------------------------------------------------------------------------- /components/gdrivers/gaudio/dac_audio/gaudio_play_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gaudio/dac_audio/gaudio_play_config.h -------------------------------------------------------------------------------- /components/gdrivers/gaudio/dac_audio/gaudio_play_dac_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gaudio/dac_audio/gaudio_play_dac_audio.c -------------------------------------------------------------------------------- /components/gdrivers/gdisp/ILI9341/ILI9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/ILI9341/ILI9341.h -------------------------------------------------------------------------------- /components/gdrivers/gdisp/ILI9341/ILI9341_adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/ILI9341/ILI9341_adapter.cpp -------------------------------------------------------------------------------- /components/gdrivers/gdisp/ILI9341/board_ILI9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/ILI9341/board_ILI9341.h -------------------------------------------------------------------------------- /components/gdrivers/gdisp/ILI9341/gdisp_lld_ILI9341.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/ILI9341/gdisp_lld_ILI9341.c -------------------------------------------------------------------------------- /components/gdrivers/gdisp/ILI9341/gdisp_lld_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/ILI9341/gdisp_lld_config.h -------------------------------------------------------------------------------- /components/gdrivers/gdisp/ILI9341/lcd_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/ILI9341/lcd_adapter.h -------------------------------------------------------------------------------- /components/gdrivers/gdisp/NT35510/NT35510.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/NT35510/NT35510.h -------------------------------------------------------------------------------- /components/gdrivers/gdisp/NT35510/NT35510_adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/NT35510/NT35510_adapter.cpp -------------------------------------------------------------------------------- /components/gdrivers/gdisp/NT35510/board_NT35510.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/NT35510/board_NT35510.h -------------------------------------------------------------------------------- /components/gdrivers/gdisp/NT35510/gdisp_lld_NT35510.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/NT35510/gdisp_lld_NT35510.c -------------------------------------------------------------------------------- /components/gdrivers/gdisp/NT35510/gdisp_lld_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/NT35510/gdisp_lld_config.h -------------------------------------------------------------------------------- /components/gdrivers/gdisp/NT35510/lcd_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/NT35510/lcd_adapter.h -------------------------------------------------------------------------------- /components/gdrivers/gdisp/SSD1306/SSD1306.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/SSD1306/SSD1306.h -------------------------------------------------------------------------------- /components/gdrivers/gdisp/SSD1306/SSD1306_adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/SSD1306/SSD1306_adapter.cpp -------------------------------------------------------------------------------- /components/gdrivers/gdisp/SSD1306/board_SSD1306.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/SSD1306/board_SSD1306.h -------------------------------------------------------------------------------- /components/gdrivers/gdisp/SSD1306/gdisp_lld_SSD1306.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/SSD1306/gdisp_lld_SSD1306.c -------------------------------------------------------------------------------- /components/gdrivers/gdisp/SSD1306/gdisp_lld_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/SSD1306/gdisp_lld_config.h -------------------------------------------------------------------------------- /components/gdrivers/gdisp/SSD1306/lcd_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/SSD1306/lcd_adapter.h -------------------------------------------------------------------------------- /components/gdrivers/gdisp/ST7789/ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/ST7789/ST7789.h -------------------------------------------------------------------------------- /components/gdrivers/gdisp/ST7789/ST7789_adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/ST7789/ST7789_adapter.cpp -------------------------------------------------------------------------------- /components/gdrivers/gdisp/ST7789/board_ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/ST7789/board_ST7789.h -------------------------------------------------------------------------------- /components/gdrivers/gdisp/ST7789/gdisp_lld_ST7789.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/ST7789/gdisp_lld_ST7789.c -------------------------------------------------------------------------------- /components/gdrivers/gdisp/ST7789/gdisp_lld_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/ST7789/gdisp_lld_config.h -------------------------------------------------------------------------------- /components/gdrivers/gdisp/ST7789/lcd_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/ST7789/lcd_adapter.h -------------------------------------------------------------------------------- /components/gdrivers/gdisp/framebuffer/board_framebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/framebuffer/board_framebuffer.h -------------------------------------------------------------------------------- /components/gdrivers/gdisp/framebuffer/gdisp_lld_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/framebuffer/gdisp_lld_config.h -------------------------------------------------------------------------------- /components/gdrivers/gdisp/framebuffer/gdisp_lld_framebuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/framebuffer/gdisp_lld_framebuffer.c -------------------------------------------------------------------------------- /components/gdrivers/gdisp/template/board_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/template/board_template.h -------------------------------------------------------------------------------- /components/gdrivers/gdisp/template/gdisp_lld_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/template/gdisp_lld_config.h -------------------------------------------------------------------------------- /components/gdrivers/gdisp/template/gdisp_lld_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/template/gdisp_lld_template.c -------------------------------------------------------------------------------- /components/gdrivers/gdisp/template/template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/gdisp/template/template.h -------------------------------------------------------------------------------- /components/gdrivers/ginput/FT5X06/FT5x06.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/ginput/FT5X06/FT5x06.h -------------------------------------------------------------------------------- /components/gdrivers/ginput/FT5X06/gmouse_lld_FT5x06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/ginput/FT5X06/gmouse_lld_FT5x06.c -------------------------------------------------------------------------------- /components/gdrivers/ginput/FT5X06/gmouse_lld_FT5x06.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/ginput/FT5X06/gmouse_lld_FT5x06.h -------------------------------------------------------------------------------- /components/gdrivers/ginput/FT5X06/lvgl_indev_adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/ginput/FT5X06/lvgl_indev_adapter.c -------------------------------------------------------------------------------- /components/gdrivers/ginput/XPT2046/XPT2046_adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/ginput/XPT2046/XPT2046_adapter.cpp -------------------------------------------------------------------------------- /components/gdrivers/ginput/XPT2046/XPT2046_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/ginput/XPT2046/XPT2046_adapter.h -------------------------------------------------------------------------------- /components/gdrivers/ginput/XPT2046/gmouse_lld_XPT2046.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/ginput/XPT2046/gmouse_lld_XPT2046.c -------------------------------------------------------------------------------- /components/gdrivers/ginput/XPT2046/gmouse_lld_XPT2046.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/ginput/XPT2046/gmouse_lld_XPT2046.h -------------------------------------------------------------------------------- /components/gdrivers/ginput/toggle/button/ginput_lld_toggle_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/ginput/toggle/button/ginput_lld_toggle_button.c -------------------------------------------------------------------------------- /components/gdrivers/ginput/toggle/button/ginput_lld_toggle_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/ginput/toggle/button/ginput_lld_toggle_button.h -------------------------------------------------------------------------------- /components/gdrivers/ginput/toggle/button/ginput_lld_toggle_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/ginput/toggle/button/ginput_lld_toggle_config.h -------------------------------------------------------------------------------- /components/gdrivers/ginput/toggle/touchpad/ginput_lld_toggle_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/ginput/toggle/touchpad/ginput_lld_toggle_config.h -------------------------------------------------------------------------------- /components/gdrivers/ginput/toggle/touchpad/ginput_lld_toggle_touchpad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/ginput/toggle/touchpad/ginput_lld_toggle_touchpad.c -------------------------------------------------------------------------------- /components/gdrivers/ginput/toggle/touchpad/ginput_lld_toggle_touchpad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/ginput/toggle/touchpad/ginput_lld_toggle_touchpad.h -------------------------------------------------------------------------------- /components/gdrivers/ginput/touch/FT5X06/FT5x06.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/ginput/touch/FT5X06/FT5x06.h -------------------------------------------------------------------------------- /components/gdrivers/ginput/touch/FT5X06/gmouse_lld_FT5x06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/ginput/touch/FT5X06/gmouse_lld_FT5x06.c -------------------------------------------------------------------------------- /components/gdrivers/ginput/touch/FT5X06/gmouse_lld_FT5x06.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/ginput/touch/FT5X06/gmouse_lld_FT5x06.h -------------------------------------------------------------------------------- /components/gdrivers/ginput/touch/FT5X06/lvgl_indev_adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/ginput/touch/FT5X06/lvgl_indev_adapter.c -------------------------------------------------------------------------------- /components/gdrivers/ginput/touch/XPT2046/XPT2046_adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/ginput/touch/XPT2046/XPT2046_adapter.cpp -------------------------------------------------------------------------------- /components/gdrivers/ginput/touch/XPT2046/XPT2046_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/ginput/touch/XPT2046/XPT2046_adapter.h -------------------------------------------------------------------------------- /components/gdrivers/ginput/touch/XPT2046/gmouse_lld_XPT2046.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/ginput/touch/XPT2046/gmouse_lld_XPT2046.c -------------------------------------------------------------------------------- /components/gdrivers/ginput/touch/XPT2046/gmouse_lld_XPT2046.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/ginput/touch/XPT2046/gmouse_lld_XPT2046.h -------------------------------------------------------------------------------- /components/gdrivers/include/lvgl_disp_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/include/lvgl_disp_config.h -------------------------------------------------------------------------------- /components/gdrivers/include/lvgl_indev_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/gdrivers/include/lvgl_indev_config.h -------------------------------------------------------------------------------- /components/general/param/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/general/param/README.md -------------------------------------------------------------------------------- /components/general/param/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/general/param/component.mk -------------------------------------------------------------------------------- /components/general/param/include/iot_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/general/param/include/iot_param.h -------------------------------------------------------------------------------- /components/general/param/param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/general/param/param.c -------------------------------------------------------------------------------- /components/general/param/test/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/general/param/test/component.mk -------------------------------------------------------------------------------- /components/general/param/test/param_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/general/param/test/param_test.c -------------------------------------------------------------------------------- /components/i2c_devices/i2c_bus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2c_devices/i2c_bus/README.md -------------------------------------------------------------------------------- /components/i2c_devices/i2c_bus/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2c_devices/i2c_bus/component.mk -------------------------------------------------------------------------------- /components/i2c_devices/i2c_bus/i2c_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2c_devices/i2c_bus/i2c_bus.c -------------------------------------------------------------------------------- /components/i2c_devices/i2c_bus/i2c_bus_obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2c_devices/i2c_bus/i2c_bus_obj.cpp -------------------------------------------------------------------------------- /components/i2c_devices/i2c_bus/include/iot_i2c_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2c_devices/i2c_bus/include/iot_i2c_bus.h -------------------------------------------------------------------------------- /components/i2c_devices/others/ssd1306/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2c_devices/others/ssd1306/component.mk -------------------------------------------------------------------------------- /components/i2c_devices/others/ssd1306/include/iot_ssd1306.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2c_devices/others/ssd1306/include/iot_ssd1306.h -------------------------------------------------------------------------------- /components/i2c_devices/others/ssd1306/include/ssd1306_fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2c_devices/others/ssd1306/include/ssd1306_fonts.h -------------------------------------------------------------------------------- /components/i2c_devices/others/ssd1306/ssd1306.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2c_devices/others/ssd1306/ssd1306.c -------------------------------------------------------------------------------- /components/i2c_devices/others/ssd1306/ssd1306_fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2c_devices/others/ssd1306/ssd1306_fonts.c -------------------------------------------------------------------------------- /components/i2c_devices/others/ssd1306/ssd1306_obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2c_devices/others/ssd1306/ssd1306_obj.cpp -------------------------------------------------------------------------------- /components/i2c_devices/others/ssd1306/test/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2c_devices/others/ssd1306/test/component.mk -------------------------------------------------------------------------------- /components/i2c_devices/others/ssd1306/test/ssd1306_obj_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2c_devices/others/ssd1306/test/ssd1306_obj_test.cpp -------------------------------------------------------------------------------- /components/i2c_devices/others/ssd1306/test/ssd1306_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2c_devices/others/ssd1306/test/ssd1306_test.c -------------------------------------------------------------------------------- /components/i2c_devices/sensor/ft5x06/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2c_devices/sensor/ft5x06/component.mk -------------------------------------------------------------------------------- /components/i2c_devices/sensor/ft5x06/ft5x06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2c_devices/sensor/ft5x06/ft5x06.c -------------------------------------------------------------------------------- /components/i2c_devices/sensor/ft5x06/include/iot_ft5x06.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2c_devices/sensor/ft5x06/include/iot_ft5x06.h -------------------------------------------------------------------------------- /components/i2c_devices/sensor/ft5x06/test/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2c_devices/sensor/ft5x06/test/component.mk -------------------------------------------------------------------------------- /components/i2c_devices/sensor/ft5x06/test/ft5x06_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2c_devices/sensor/ft5x06/test/ft5x06_test.c -------------------------------------------------------------------------------- /components/i2s_devices/ili9806/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2s_devices/ili9806/component.mk -------------------------------------------------------------------------------- /components/i2s_devices/ili9806/ili9806.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2s_devices/ili9806/ili9806.c -------------------------------------------------------------------------------- /components/i2s_devices/ili9806/include/iot_ili9806.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2s_devices/ili9806/include/iot_ili9806.h -------------------------------------------------------------------------------- /components/i2s_devices/ili9806/test/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2s_devices/ili9806/test/component.mk -------------------------------------------------------------------------------- /components/i2s_devices/ili9806/test/gussblur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2s_devices/ili9806/test/gussblur.h -------------------------------------------------------------------------------- /components/i2s_devices/ili9806/test/ili9806_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2s_devices/ili9806/test/ili9806_test.c -------------------------------------------------------------------------------- /components/i2s_devices/ili9806/test/pic3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2s_devices/ili9806/test/pic3.h -------------------------------------------------------------------------------- /components/i2s_devices/lcd_common/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2s_devices/lcd_common/Kconfig -------------------------------------------------------------------------------- /components/i2s_devices/lcd_common/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2s_devices/lcd_common/component.mk -------------------------------------------------------------------------------- /components/i2s_devices/lcd_common/i2s_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2s_devices/lcd_common/i2s_lcd.c -------------------------------------------------------------------------------- /components/i2s_devices/lcd_common/i2s_lcd_com.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2s_devices/lcd_common/i2s_lcd_com.c -------------------------------------------------------------------------------- /components/i2s_devices/lcd_common/include/asc8x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2s_devices/lcd_common/include/asc8x16.h -------------------------------------------------------------------------------- /components/i2s_devices/lcd_common/include/i2s_lcd_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2s_devices/lcd_common/include/i2s_lcd_com.h -------------------------------------------------------------------------------- /components/i2s_devices/lcd_common/include/iot_i2s_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2s_devices/lcd_common/include/iot_i2s_lcd.h -------------------------------------------------------------------------------- /components/i2s_devices/nt35510/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2s_devices/nt35510/component.mk -------------------------------------------------------------------------------- /components/i2s_devices/nt35510/include/iot_nt35510.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2s_devices/nt35510/include/iot_nt35510.h -------------------------------------------------------------------------------- /components/i2s_devices/nt35510/nt35510.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2s_devices/nt35510/nt35510.c -------------------------------------------------------------------------------- /components/i2s_devices/nt35510/test/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2s_devices/nt35510/test/component.mk -------------------------------------------------------------------------------- /components/i2s_devices/nt35510/test/nt35510_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2s_devices/nt35510/test/nt35510_test.c -------------------------------------------------------------------------------- /components/i2s_devices/nt35510/test/ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/i2s_devices/nt35510/test/ppc.h -------------------------------------------------------------------------------- /components/lvgl_gui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/lvgl_gui/CMakeLists.txt -------------------------------------------------------------------------------- /components/lvgl_gui/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/lvgl_gui/Kconfig -------------------------------------------------------------------------------- /components/lvgl_gui/Makefile.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/lvgl_gui/Makefile.projbuild -------------------------------------------------------------------------------- /components/lvgl_gui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/lvgl_gui/README.md -------------------------------------------------------------------------------- /components/lvgl_gui/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/lvgl_gui/component.mk -------------------------------------------------------------------------------- /components/lvgl_gui/include/iot_lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/lvgl_gui/include/iot_lvgl.h -------------------------------------------------------------------------------- /components/lvgl_gui/include/lv_calibration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/lvgl_gui/include/lv_calibration.h -------------------------------------------------------------------------------- /components/lvgl_gui/lv_calibration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/lvgl_gui/lv_calibration.c -------------------------------------------------------------------------------- /components/lvgl_gui/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/lvgl_gui/lv_conf.h -------------------------------------------------------------------------------- /components/lvgl_gui/lvgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/lvgl_gui/lvgl.c -------------------------------------------------------------------------------- /components/spi_devices/epaper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/epaper/CMakeLists.txt -------------------------------------------------------------------------------- /components/spi_devices/epaper/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/epaper/component.mk -------------------------------------------------------------------------------- /components/spi_devices/epaper/epaper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/epaper/epaper.c -------------------------------------------------------------------------------- /components/spi_devices/epaper/epaper_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/epaper/epaper_font.c -------------------------------------------------------------------------------- /components/spi_devices/epaper/include/epaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/epaper/include/epaper.h -------------------------------------------------------------------------------- /components/spi_devices/epaper/include/epaper_fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/epaper/include/epaper_fonts.h -------------------------------------------------------------------------------- /components/spi_devices/epaper/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/epaper/test/README.md -------------------------------------------------------------------------------- /components/spi_devices/epaper/test/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/epaper/test/component.mk -------------------------------------------------------------------------------- /components/spi_devices/epaper/test/epaper_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/epaper/test/epaper_test.c -------------------------------------------------------------------------------- /components/spi_devices/epaper/test/imagedata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/epaper/test/imagedata.c -------------------------------------------------------------------------------- /components/spi_devices/epaper/test/imagedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/epaper/test/imagedata.h -------------------------------------------------------------------------------- /components/spi_devices/lcd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/lcd/CMakeLists.txt -------------------------------------------------------------------------------- /components/spi_devices/lcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/lcd/README.md -------------------------------------------------------------------------------- /components/spi_devices/lcd/adaptation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/lcd/adaptation.cpp -------------------------------------------------------------------------------- /components/spi_devices/lcd/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/lcd/component.mk -------------------------------------------------------------------------------- /components/spi_devices/lcd/font7s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/lcd/font7s.c -------------------------------------------------------------------------------- /components/spi_devices/lcd/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/lcd/glcdfont.c -------------------------------------------------------------------------------- /components/spi_devices/lcd/include/WProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/lcd/include/WProgram.h -------------------------------------------------------------------------------- /components/spi_devices/lcd/include/font7s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/lcd/include/font7s.h -------------------------------------------------------------------------------- /components/spi_devices/lcd/include/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/lcd/include/gfxfont.h -------------------------------------------------------------------------------- /components/spi_devices/lcd/include/glcdfont.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | extern const unsigned char font[]; 4 | -------------------------------------------------------------------------------- /components/spi_devices/lcd/include/iot_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/lcd/include/iot_lcd.h -------------------------------------------------------------------------------- /components/spi_devices/lcd/include/spi_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/lcd/include/spi_lcd.h -------------------------------------------------------------------------------- /components/spi_devices/lcd/iot_lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/lcd/iot_lcd.cpp -------------------------------------------------------------------------------- /components/spi_devices/lcd/spi_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/lcd/spi_lcd.c -------------------------------------------------------------------------------- /components/spi_devices/lcd/test/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/lcd/test/component.mk -------------------------------------------------------------------------------- /components/spi_devices/lcd/test/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/lcd/test/image.h -------------------------------------------------------------------------------- /components/spi_devices/lcd/test/lcd_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/lcd/test/lcd_example.cpp -------------------------------------------------------------------------------- /components/spi_devices/lcd/test/lcd_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/lcd/test/lcd_image.h -------------------------------------------------------------------------------- /components/spi_devices/lcd/test/lcd_refresh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/lcd/test/lcd_refresh.cpp -------------------------------------------------------------------------------- /components/spi_devices/lcd/test/lcd_thermostat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/lcd/test/lcd_thermostat.cpp -------------------------------------------------------------------------------- /components/spi_devices/xpt2046/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/xpt2046/CMakeLists.txt -------------------------------------------------------------------------------- /components/spi_devices/xpt2046/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/xpt2046/component.mk -------------------------------------------------------------------------------- /components/spi_devices/xpt2046/include/iot_xpt2046.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/xpt2046/include/iot_xpt2046.h -------------------------------------------------------------------------------- /components/spi_devices/xpt2046/iot_xpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/xpt2046/iot_xpt.c -------------------------------------------------------------------------------- /components/spi_devices/xpt2046/test/app_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/xpt2046/test/app_touch.h -------------------------------------------------------------------------------- /components/spi_devices/xpt2046/test/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/xpt2046/test/bitmap.h -------------------------------------------------------------------------------- /components/spi_devices/xpt2046/test/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/xpt2046/test/component.mk -------------------------------------------------------------------------------- /components/spi_devices/xpt2046/test/lcd_tft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/xpt2046/test/lcd_tft.cpp -------------------------------------------------------------------------------- /components/spi_devices/xpt2046/test/touch_screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/xpt2046/test/touch_screen.cpp -------------------------------------------------------------------------------- /components/spi_devices/xpt2046/test/touch_tft_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/xpt2046/test/touch_tft_test.cpp -------------------------------------------------------------------------------- /components/spi_devices/xpt2046/xpt2046_obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/components/spi_devices/xpt2046/xpt2046_obj.cpp -------------------------------------------------------------------------------- /lvgl_2048/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/lvgl_2048/Makefile -------------------------------------------------------------------------------- /lvgl_2048/main/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/lvgl_2048/main/app_main.cpp -------------------------------------------------------------------------------- /lvgl_2048/main/background.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/lvgl_2048/main/background.c -------------------------------------------------------------------------------- /lvgl_2048/main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/lvgl_2048/main/component.mk -------------------------------------------------------------------------------- /lvgl_2048/main/esp32_logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/lvgl_2048/main/esp32_logo.c -------------------------------------------------------------------------------- /lvgl_2048/main/esp_logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/lvgl_2048/main/esp_logo.c -------------------------------------------------------------------------------- /lvgl_2048/main/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/lvgl_2048/main/game.c -------------------------------------------------------------------------------- /lvgl_2048/main/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/lvgl_2048/main/game.h -------------------------------------------------------------------------------- /lvgl_2048/main/lvgl_logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/lvgl_2048/main/lvgl_logo.c -------------------------------------------------------------------------------- /lvgl_2048/partitions_singleapp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/lvgl_2048/partitions_singleapp.csv -------------------------------------------------------------------------------- /lvgl_2048/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/lvgl_2048/sdkconfig.defaults -------------------------------------------------------------------------------- /lvgl_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/lvgl_example/Makefile -------------------------------------------------------------------------------- /lvgl_example/main/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/lvgl_example/main/app_main.cpp -------------------------------------------------------------------------------- /lvgl_example/main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/lvgl_example/main/component.mk -------------------------------------------------------------------------------- /lvgl_example/main/lv_test_theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/lvgl_example/main/lv_test_theme.c -------------------------------------------------------------------------------- /lvgl_example/main/lv_test_theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/lvgl_example/main/lv_test_theme.h -------------------------------------------------------------------------------- /lvgl_example/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/lvgl_example/sdkconfig.defaults -------------------------------------------------------------------------------- /mp3_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/mp3_example/Makefile -------------------------------------------------------------------------------- /mp3_example/main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/mp3_example/main/app_main.c -------------------------------------------------------------------------------- /mp3_example/main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/mp3_example/main/component.mk -------------------------------------------------------------------------------- /mp3_example/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/mp3_example/sdkconfig.defaults -------------------------------------------------------------------------------- /remote_control/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/remote_control/CMakeLists.txt -------------------------------------------------------------------------------- /remote_control/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/remote_control/Makefile -------------------------------------------------------------------------------- /remote_control/PIC.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/remote_control/PIC.zip -------------------------------------------------------------------------------- /remote_control/PIC/CZS9JURQOCGC55WB]@LYC{B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/remote_control/PIC/CZS9JURQOCGC55WB]@LYC{B.jpg -------------------------------------------------------------------------------- /remote_control/PIC/P1]18URY}4]563R5HYS4$6U.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/remote_control/PIC/P1]18URY}4]563R5HYS4$6U.jpg -------------------------------------------------------------------------------- /remote_control/PIC/T`A1XMJFL@FWL%A@T$}PBVM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/remote_control/PIC/T`A1XMJFL@FWL%A@T$}PBVM.jpg -------------------------------------------------------------------------------- /remote_control/PIC/__MACOSX/._CZS9JURQOCGC55WB]@LYC{B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/remote_control/PIC/__MACOSX/._CZS9JURQOCGC55WB]@LYC{B.jpg -------------------------------------------------------------------------------- /remote_control/PIC/__MACOSX/._P1]18URY}4]563R5HYS4$6U.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/remote_control/PIC/__MACOSX/._P1]18URY}4]563R5HYS4$6U.jpg -------------------------------------------------------------------------------- /remote_control/PIC/__MACOSX/._T`A1XMJFL@FWL%A@T$}PBVM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/remote_control/PIC/__MACOSX/._T`A1XMJFL@FWL%A@T$}PBVM.jpg -------------------------------------------------------------------------------- /remote_control/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/remote_control/README.md -------------------------------------------------------------------------------- /remote_control/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/remote_control/main/CMakeLists.txt -------------------------------------------------------------------------------- /remote_control/main/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/remote_control/main/app_main.cpp -------------------------------------------------------------------------------- /remote_control/main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/remote_control/main/component.mk -------------------------------------------------------------------------------- /remote_control/main/number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/remote_control/main/number.c -------------------------------------------------------------------------------- /remote_control/main/tempreture_symbol_40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/remote_control/main/tempreture_symbol_40.c -------------------------------------------------------------------------------- /remote_control/main/wallpaper1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/remote_control/main/wallpaper1.c -------------------------------------------------------------------------------- /remote_control/main/wallpaper2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/remote_control/main/wallpaper2.c -------------------------------------------------------------------------------- /remote_control/main/wallpaper3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/remote_control/main/wallpaper3.c -------------------------------------------------------------------------------- /remote_control/partitions_singleapp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/remote_control/partitions_singleapp.csv -------------------------------------------------------------------------------- /remote_control/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32-lvgl-gui/HEAD/remote_control/sdkconfig.defaults --------------------------------------------------------------------------------