├── 00_Hardware ├── MiniMonitor_PCB.PcbDoc ├── MiniMonitor_Project.PrjPcb ├── MiniMonitor_Project.PrjPcbStructure ├── MiniMonitor_SCH.SchDoc └── MiniMonitor_SCH.pdf ├── 01_Software ├── Mini-Monitor__no_lvgl │ ├── .mxproject │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ └── settings.json │ ├── Core │ │ ├── Inc │ │ │ ├── gpio.h │ │ │ ├── i2c.h │ │ │ ├── main.h │ │ │ ├── rtc.h │ │ │ ├── spi.h │ │ │ ├── stm32f4xx_hal_conf.h │ │ │ ├── stm32f4xx_it.h │ │ │ └── tim.h │ │ └── Src │ │ │ ├── gpio.c │ │ │ ├── i2c.c │ │ │ ├── main.c │ │ │ ├── rtc.c │ │ │ ├── spi.c │ │ │ ├── stm32f4xx_hal_msp.c │ │ │ ├── stm32f4xx_it.c │ │ │ ├── system_stm32f4xx.c │ │ │ └── tim.c │ ├── Drivers │ │ ├── CMSIS │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ └── STM32F4xx │ │ │ │ │ ├── Include │ │ │ │ │ ├── stm32f401xc.h │ │ │ │ │ ├── stm32f4xx.h │ │ │ │ │ └── system_stm32f4xx.h │ │ │ │ │ └── License.md │ │ │ ├── Include │ │ │ │ ├── cmsis_armcc.h │ │ │ │ ├── cmsis_armclang.h │ │ │ │ ├── cmsis_compiler.h │ │ │ │ ├── cmsis_gcc.h │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ ├── cmsis_version.h │ │ │ │ ├── core_armv8mbl.h │ │ │ │ ├── core_armv8mml.h │ │ │ │ ├── core_cm0.h │ │ │ │ ├── core_cm0plus.h │ │ │ │ ├── core_cm1.h │ │ │ │ ├── core_cm23.h │ │ │ │ ├── core_cm3.h │ │ │ │ ├── core_cm33.h │ │ │ │ ├── core_cm4.h │ │ │ │ ├── core_cm7.h │ │ │ │ ├── core_sc000.h │ │ │ │ ├── core_sc300.h │ │ │ │ ├── mpu_armv7.h │ │ │ │ ├── mpu_armv8.h │ │ │ │ └── tz_context.h │ │ │ └── LICENSE.txt │ │ └── STM32F4xx_HAL_Driver │ │ │ ├── Inc │ │ │ ├── Legacy │ │ │ │ └── stm32_hal_legacy.h │ │ │ ├── stm32f4xx_hal.h │ │ │ ├── stm32f4xx_hal_cortex.h │ │ │ ├── stm32f4xx_hal_def.h │ │ │ ├── stm32f4xx_hal_dma.h │ │ │ ├── stm32f4xx_hal_dma_ex.h │ │ │ ├── stm32f4xx_hal_exti.h │ │ │ ├── stm32f4xx_hal_flash.h │ │ │ ├── stm32f4xx_hal_flash_ex.h │ │ │ ├── stm32f4xx_hal_flash_ramfunc.h │ │ │ ├── stm32f4xx_hal_gpio.h │ │ │ ├── stm32f4xx_hal_gpio_ex.h │ │ │ ├── stm32f4xx_hal_i2c.h │ │ │ ├── stm32f4xx_hal_i2c_ex.h │ │ │ ├── stm32f4xx_hal_pcd.h │ │ │ ├── stm32f4xx_hal_pcd_ex.h │ │ │ ├── stm32f4xx_hal_pwr.h │ │ │ ├── stm32f4xx_hal_pwr_ex.h │ │ │ ├── stm32f4xx_hal_rcc.h │ │ │ ├── stm32f4xx_hal_rcc_ex.h │ │ │ ├── stm32f4xx_hal_rtc.h │ │ │ ├── stm32f4xx_hal_rtc_ex.h │ │ │ ├── stm32f4xx_hal_spi.h │ │ │ ├── stm32f4xx_hal_tim.h │ │ │ ├── stm32f4xx_hal_tim_ex.h │ │ │ └── stm32f4xx_ll_usb.h │ │ │ ├── License.md │ │ │ └── Src │ │ │ ├── stm32f4xx_hal.c │ │ │ ├── stm32f4xx_hal_cortex.c │ │ │ ├── stm32f4xx_hal_dma.c │ │ │ ├── stm32f4xx_hal_dma_ex.c │ │ │ ├── stm32f4xx_hal_exti.c │ │ │ ├── stm32f4xx_hal_flash.c │ │ │ ├── stm32f4xx_hal_flash_ex.c │ │ │ ├── stm32f4xx_hal_flash_ramfunc.c │ │ │ ├── stm32f4xx_hal_gpio.c │ │ │ ├── stm32f4xx_hal_i2c.c │ │ │ ├── stm32f4xx_hal_i2c_ex.c │ │ │ ├── stm32f4xx_hal_pcd.c │ │ │ ├── stm32f4xx_hal_pcd_ex.c │ │ │ ├── stm32f4xx_hal_pwr.c │ │ │ ├── stm32f4xx_hal_pwr_ex.c │ │ │ ├── stm32f4xx_hal_rcc.c │ │ │ ├── stm32f4xx_hal_rcc_ex.c │ │ │ ├── stm32f4xx_hal_rtc.c │ │ │ ├── stm32f4xx_hal_rtc_ex.c │ │ │ ├── stm32f4xx_hal_spi.c │ │ │ ├── stm32f4xx_hal_tim.c │ │ │ ├── stm32f4xx_hal_tim_ex.c │ │ │ └── stm32f4xx_ll_usb.c │ ├── HARDWARE │ │ ├── INA226 │ │ │ ├── INA226.c │ │ │ ├── INA226.h │ │ │ ├── myiic.c │ │ │ └── myiic.h │ │ ├── InternalFlash │ │ │ ├── bsp_internalFlash.c │ │ │ └── bsp_internalFlash.h │ │ ├── KEY │ │ │ ├── bsp_exti.c │ │ │ └── bsp_exti.h │ │ └── OLED │ │ │ ├── bmp.h │ │ │ ├── oled.c │ │ │ ├── oled.h │ │ │ └── oledfont.h │ ├── MDK-ARM │ │ ├── DebugConfig │ │ │ └── Mini-Monitor_STM32F401CCUx.dbgconf │ │ ├── Mini-Monitor.uvguix.ChenJH │ │ ├── Mini-Monitor.uvoptx │ │ ├── Mini-Monitor.uvprojx │ │ ├── Mini-Monitor │ │ │ └── Mini-Monitor.hex │ │ ├── RTE │ │ │ └── _Mini-Monitor │ │ │ │ └── RTE_Components.h │ │ └── startup_stm32f401xc.s │ ├── Middlewares │ │ └── ST │ │ │ └── STM32_USB_Device_Library │ │ │ ├── Class │ │ │ └── CDC │ │ │ │ ├── Inc │ │ │ │ └── usbd_cdc.h │ │ │ │ └── Src │ │ │ │ └── usbd_cdc.c │ │ │ └── Core │ │ │ ├── Inc │ │ │ ├── usbd_core.h │ │ │ ├── usbd_ctlreq.h │ │ │ ├── usbd_def.h │ │ │ └── usbd_ioreq.h │ │ │ └── Src │ │ │ ├── usbd_core.c │ │ │ ├── usbd_ctlreq.c │ │ │ └── usbd_ioreq.c │ ├── Mini-Monitor-2.bmp │ ├── Mini-Monitor.ioc │ ├── SYSTEM │ │ ├── delay │ │ │ ├── delay.c │ │ │ └── delay.h │ │ └── sys │ │ │ ├── sys.c │ │ │ └── sys.h │ ├── USB_DEVICE │ │ ├── App │ │ │ ├── usb_device.c │ │ │ ├── usb_device.h │ │ │ ├── usbd_cdc_if.c │ │ │ ├── usbd_cdc_if.h │ │ │ ├── usbd_desc.c │ │ │ └── usbd_desc.h │ │ └── Target │ │ │ ├── usbd_conf.c │ │ │ └── usbd_conf.h │ └── keilkilll.bat ├── Mini-Monitor__with_lvgl │ ├── .mxproject │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ └── settings.json │ ├── Core │ │ ├── Inc │ │ │ ├── gpio.h │ │ │ ├── i2c.h │ │ │ ├── main.h │ │ │ ├── rtc.h │ │ │ ├── spi.h │ │ │ ├── stm32f4xx_hal_conf.h │ │ │ ├── stm32f4xx_it.h │ │ │ └── tim.h │ │ └── Src │ │ │ ├── gpio.c │ │ │ ├── i2c.c │ │ │ ├── main.c │ │ │ ├── rtc.c │ │ │ ├── spi.c │ │ │ ├── stm32f4xx_hal_msp.c │ │ │ ├── stm32f4xx_it.c │ │ │ ├── system_stm32f4xx.c │ │ │ └── tim.c │ ├── Drivers │ │ ├── CMSIS │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ └── STM32F4xx │ │ │ │ │ ├── Include │ │ │ │ │ ├── stm32f401xc.h │ │ │ │ │ ├── stm32f4xx.h │ │ │ │ │ └── system_stm32f4xx.h │ │ │ │ │ └── License.md │ │ │ ├── Include │ │ │ │ ├── cmsis_armcc.h │ │ │ │ ├── cmsis_armclang.h │ │ │ │ ├── cmsis_compiler.h │ │ │ │ ├── cmsis_gcc.h │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ ├── cmsis_version.h │ │ │ │ ├── core_armv8mbl.h │ │ │ │ ├── core_armv8mml.h │ │ │ │ ├── core_cm0.h │ │ │ │ ├── core_cm0plus.h │ │ │ │ ├── core_cm1.h │ │ │ │ ├── core_cm23.h │ │ │ │ ├── core_cm3.h │ │ │ │ ├── core_cm33.h │ │ │ │ ├── core_cm4.h │ │ │ │ ├── core_cm7.h │ │ │ │ ├── core_sc000.h │ │ │ │ ├── core_sc300.h │ │ │ │ ├── mpu_armv7.h │ │ │ │ ├── mpu_armv8.h │ │ │ │ └── tz_context.h │ │ │ └── LICENSE.txt │ │ └── STM32F4xx_HAL_Driver │ │ │ ├── Inc │ │ │ ├── Legacy │ │ │ │ └── stm32_hal_legacy.h │ │ │ ├── stm32f4xx_hal.h │ │ │ ├── stm32f4xx_hal_cortex.h │ │ │ ├── stm32f4xx_hal_def.h │ │ │ ├── stm32f4xx_hal_dma.h │ │ │ ├── stm32f4xx_hal_dma_ex.h │ │ │ ├── stm32f4xx_hal_exti.h │ │ │ ├── stm32f4xx_hal_flash.h │ │ │ ├── stm32f4xx_hal_flash_ex.h │ │ │ ├── stm32f4xx_hal_flash_ramfunc.h │ │ │ ├── stm32f4xx_hal_gpio.h │ │ │ ├── stm32f4xx_hal_gpio_ex.h │ │ │ ├── stm32f4xx_hal_i2c.h │ │ │ ├── stm32f4xx_hal_i2c_ex.h │ │ │ ├── stm32f4xx_hal_pcd.h │ │ │ ├── stm32f4xx_hal_pcd_ex.h │ │ │ ├── stm32f4xx_hal_pwr.h │ │ │ ├── stm32f4xx_hal_pwr_ex.h │ │ │ ├── stm32f4xx_hal_rcc.h │ │ │ ├── stm32f4xx_hal_rcc_ex.h │ │ │ ├── stm32f4xx_hal_rtc.h │ │ │ ├── stm32f4xx_hal_rtc_ex.h │ │ │ ├── stm32f4xx_hal_spi.h │ │ │ ├── stm32f4xx_hal_tim.h │ │ │ ├── stm32f4xx_hal_tim_ex.h │ │ │ └── stm32f4xx_ll_usb.h │ │ │ ├── License.md │ │ │ └── Src │ │ │ ├── stm32f4xx_hal.c │ │ │ ├── stm32f4xx_hal_cortex.c │ │ │ ├── stm32f4xx_hal_dma.c │ │ │ ├── stm32f4xx_hal_dma_ex.c │ │ │ ├── stm32f4xx_hal_exti.c │ │ │ ├── stm32f4xx_hal_flash.c │ │ │ ├── stm32f4xx_hal_flash_ex.c │ │ │ ├── stm32f4xx_hal_flash_ramfunc.c │ │ │ ├── stm32f4xx_hal_gpio.c │ │ │ ├── stm32f4xx_hal_i2c.c │ │ │ ├── stm32f4xx_hal_i2c_ex.c │ │ │ ├── stm32f4xx_hal_pcd.c │ │ │ ├── stm32f4xx_hal_pcd_ex.c │ │ │ ├── stm32f4xx_hal_pwr.c │ │ │ ├── stm32f4xx_hal_pwr_ex.c │ │ │ ├── stm32f4xx_hal_rcc.c │ │ │ ├── stm32f4xx_hal_rcc_ex.c │ │ │ ├── stm32f4xx_hal_rtc.c │ │ │ ├── stm32f4xx_hal_rtc_ex.c │ │ │ ├── stm32f4xx_hal_spi.c │ │ │ ├── stm32f4xx_hal_tim.c │ │ │ ├── stm32f4xx_hal_tim_ex.c │ │ │ └── stm32f4xx_ll_usb.c │ ├── GUI │ │ ├── lv_conf.h │ │ └── lvgl │ │ │ ├── LICENCE.txt │ │ │ ├── README.md │ │ │ ├── examples │ │ │ ├── anim │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_anim.h │ │ │ │ ├── lv_example_anim_1.c │ │ │ │ ├── lv_example_anim_1.py │ │ │ │ ├── lv_example_anim_2.c │ │ │ │ ├── lv_example_anim_2.py │ │ │ │ ├── lv_example_anim_3.c │ │ │ │ ├── lv_example_anim_3.py │ │ │ │ ├── lv_example_anim_timeline_1.c │ │ │ │ └── lv_example_anim_timeline_1.py │ │ │ ├── arduino │ │ │ │ └── LVGL_Arduino │ │ │ │ │ └── LVGL_Arduino.ino │ │ │ ├── assets │ │ │ │ ├── animimg001.c │ │ │ │ ├── animimg001.png │ │ │ │ ├── animimg002.c │ │ │ │ ├── animimg002.png │ │ │ │ ├── animimg003.c │ │ │ │ ├── animimg003.png │ │ │ │ ├── caret_down.png │ │ │ │ ├── font │ │ │ │ │ ├── lv_font_simsun_16_cjk.fnt │ │ │ │ │ ├── montserrat-16.fnt │ │ │ │ │ └── montserrat-22.fnt │ │ │ │ ├── img_caret_down.c │ │ │ │ ├── img_caret_down.png │ │ │ │ ├── img_cogwheel_alpha16.c │ │ │ │ ├── img_cogwheel_argb.c │ │ │ │ ├── img_cogwheel_argb.png │ │ │ │ ├── img_cogwheel_chroma_keyed.c │ │ │ │ ├── img_cogwheel_chroma_keyed.png │ │ │ │ ├── img_cogwheel_indexed16.c │ │ │ │ ├── img_cogwheel_indexed16.png │ │ │ │ ├── img_cogwheel_rgb.c │ │ │ │ ├── img_cogwheel_rgb.png │ │ │ │ ├── img_hand.c │ │ │ │ ├── img_hand_hour.png │ │ │ │ ├── img_hand_min.png │ │ │ │ ├── img_skew_strip.c │ │ │ │ ├── img_skew_strip.png │ │ │ │ ├── img_skew_strip_80x20_argb8888.fnt │ │ │ │ ├── img_star.c │ │ │ │ ├── img_star.png │ │ │ │ ├── img_strip.png │ │ │ │ ├── imgbtn_left.c │ │ │ │ ├── imgbtn_left.png │ │ │ │ ├── imgbtn_mid.c │ │ │ │ ├── imgbtn_mid.png │ │ │ │ ├── imgbtn_right.c │ │ │ │ └── imgbtn_right.png │ │ │ ├── event │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_event.h │ │ │ │ ├── lv_example_event_1.c │ │ │ │ ├── lv_example_event_1.py │ │ │ │ ├── lv_example_event_2.c │ │ │ │ ├── lv_example_event_2.py │ │ │ │ ├── lv_example_event_3.c │ │ │ │ ├── lv_example_event_3.py │ │ │ │ └── lv_example_event_4.c │ │ │ ├── examples.mk │ │ │ ├── get_started │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_get_started.h │ │ │ │ ├── lv_example_get_started_1.c │ │ │ │ ├── lv_example_get_started_1.py │ │ │ │ ├── lv_example_get_started_2.c │ │ │ │ ├── lv_example_get_started_2.py │ │ │ │ ├── lv_example_get_started_3.c │ │ │ │ └── lv_example_get_started_3.py │ │ │ ├── header.py │ │ │ ├── layouts │ │ │ │ ├── flex │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_flex.h │ │ │ │ │ ├── lv_example_flex_1.c │ │ │ │ │ ├── lv_example_flex_1.py │ │ │ │ │ ├── lv_example_flex_2.c │ │ │ │ │ ├── lv_example_flex_2.py │ │ │ │ │ ├── lv_example_flex_3.c │ │ │ │ │ ├── lv_example_flex_3.py │ │ │ │ │ ├── lv_example_flex_4.c │ │ │ │ │ ├── lv_example_flex_4.py │ │ │ │ │ ├── lv_example_flex_5.c │ │ │ │ │ ├── lv_example_flex_5.py │ │ │ │ │ ├── lv_example_flex_6.c │ │ │ │ │ └── lv_example_flex_6.py │ │ │ │ ├── grid │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_grid.h │ │ │ │ │ ├── lv_example_grid_1.c │ │ │ │ │ ├── lv_example_grid_1.py │ │ │ │ │ ├── lv_example_grid_2.c │ │ │ │ │ ├── lv_example_grid_2.py │ │ │ │ │ ├── lv_example_grid_3.c │ │ │ │ │ ├── lv_example_grid_3.py │ │ │ │ │ ├── lv_example_grid_4.c │ │ │ │ │ ├── lv_example_grid_4.py │ │ │ │ │ ├── lv_example_grid_5.c │ │ │ │ │ ├── lv_example_grid_5.py │ │ │ │ │ ├── lv_example_grid_6.c │ │ │ │ │ └── lv_example_grid_6.py │ │ │ │ └── lv_example_layout.h │ │ │ ├── libs │ │ │ │ ├── bmp │ │ │ │ │ ├── example_16bit.bmp │ │ │ │ │ ├── example_24bit.bmp │ │ │ │ │ ├── example_32bit.bmp │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_bmp.h │ │ │ │ │ ├── lv_example_bmp_1.c │ │ │ │ │ └── lv_example_bmp_1.py │ │ │ │ ├── ffmpeg │ │ │ │ │ ├── birds.mp4 │ │ │ │ │ ├── ffmpeg.png │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_ffmpeg.h │ │ │ │ │ ├── lv_example_ffmpeg_1.c │ │ │ │ │ └── lv_example_ffmpeg_2.c │ │ │ │ ├── freetype │ │ │ │ │ ├── arial.ttf │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_freetype.h │ │ │ │ │ ├── lv_example_freetype_1.c │ │ │ │ │ └── lv_example_freetype_1.py │ │ │ │ ├── gif │ │ │ │ │ ├── bulb.gif │ │ │ │ │ ├── img_bulb_gif.c │ │ │ │ │ ├── img_bulb_gif.py │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_gif.h │ │ │ │ │ ├── lv_example_gif_1.c │ │ │ │ │ └── lv_example_gif_1.py │ │ │ │ ├── lv_example_libs.h │ │ │ │ ├── png │ │ │ │ │ ├── img_wink_png.c │ │ │ │ │ ├── img_wink_png.py │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_png.h │ │ │ │ │ ├── lv_example_png_1.c │ │ │ │ │ ├── lv_example_png_1.py │ │ │ │ │ └── wink.png │ │ │ │ ├── qrcode │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_qrcode.h │ │ │ │ │ ├── lv_example_qrcode_1.c │ │ │ │ │ └── lv_example_qrcode_1.py │ │ │ │ ├── rlottie │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_rlottie.h │ │ │ │ │ ├── lv_example_rlottie_1.c │ │ │ │ │ ├── lv_example_rlottie_1.py │ │ │ │ │ ├── lv_example_rlottie_2.c │ │ │ │ │ ├── lv_example_rlottie_2.py │ │ │ │ │ ├── lv_example_rlottie_approve.c │ │ │ │ │ ├── lv_example_rlottie_approve.json │ │ │ │ │ └── lv_example_rlottie_approve.py │ │ │ │ └── sjpg │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_sjpg.h │ │ │ │ │ ├── lv_example_sjpg_1.c │ │ │ │ │ ├── lv_example_sjpg_1.py │ │ │ │ │ └── small_image.sjpg │ │ │ ├── lv_examples.h │ │ │ ├── others │ │ │ │ ├── gridnav │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_gridnav.h │ │ │ │ │ ├── lv_example_gridnav_1.c │ │ │ │ │ ├── lv_example_gridnav_2.c │ │ │ │ │ ├── lv_example_gridnav_3.c │ │ │ │ │ └── lv_example_gridnav_4.c │ │ │ │ ├── lv_example_others.h │ │ │ │ ├── monkey │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_monkey.h │ │ │ │ │ ├── lv_example_monkey_1.c │ │ │ │ │ ├── lv_example_monkey_2.c │ │ │ │ │ └── lv_example_monkey_3.c │ │ │ │ └── snapshot │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_snapshot.h │ │ │ │ │ ├── lv_example_snapshot_1.c │ │ │ │ │ └── lv_example_snapshot_1.py │ │ │ ├── scroll │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_scroll.h │ │ │ │ ├── lv_example_scroll_1.c │ │ │ │ ├── lv_example_scroll_1.py │ │ │ │ ├── lv_example_scroll_2.c │ │ │ │ ├── lv_example_scroll_2.py │ │ │ │ ├── lv_example_scroll_3.c │ │ │ │ ├── lv_example_scroll_3.py │ │ │ │ ├── lv_example_scroll_4.c │ │ │ │ ├── lv_example_scroll_4.py │ │ │ │ ├── lv_example_scroll_5.c │ │ │ │ ├── lv_example_scroll_5.py │ │ │ │ ├── lv_example_scroll_6.c │ │ │ │ └── lv_example_scroll_6.py │ │ │ ├── styles │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_style.h │ │ │ │ ├── lv_example_style_1.c │ │ │ │ ├── lv_example_style_1.py │ │ │ │ ├── lv_example_style_10.c │ │ │ │ ├── lv_example_style_10.py │ │ │ │ ├── lv_example_style_11.c │ │ │ │ ├── lv_example_style_11.py │ │ │ │ ├── lv_example_style_12.c │ │ │ │ ├── lv_example_style_12.py │ │ │ │ ├── lv_example_style_13.c │ │ │ │ ├── lv_example_style_13.py │ │ │ │ ├── lv_example_style_14.c │ │ │ │ ├── lv_example_style_14.py │ │ │ │ ├── lv_example_style_2.c │ │ │ │ ├── lv_example_style_2.py │ │ │ │ ├── lv_example_style_3.c │ │ │ │ ├── lv_example_style_3.py │ │ │ │ ├── lv_example_style_4.c │ │ │ │ ├── lv_example_style_4.py │ │ │ │ ├── lv_example_style_5.c │ │ │ │ ├── lv_example_style_5.py │ │ │ │ ├── lv_example_style_6.c │ │ │ │ ├── lv_example_style_6.py │ │ │ │ ├── lv_example_style_7.c │ │ │ │ ├── lv_example_style_7.py │ │ │ │ ├── lv_example_style_8.c │ │ │ │ ├── lv_example_style_8.py │ │ │ │ ├── lv_example_style_9.c │ │ │ │ └── lv_example_style_9.py │ │ │ ├── test_ex.sh │ │ │ └── widgets │ │ │ │ ├── animimg │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_animimg_1.c │ │ │ │ └── lv_example_animimg_1.py │ │ │ │ ├── arc │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_arc_1.c │ │ │ │ ├── lv_example_arc_1.py │ │ │ │ ├── lv_example_arc_2.c │ │ │ │ └── lv_example_arc_2.py │ │ │ │ ├── bar │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_bar_1.c │ │ │ │ ├── lv_example_bar_1.py │ │ │ │ ├── lv_example_bar_2.c │ │ │ │ ├── lv_example_bar_2.py │ │ │ │ ├── lv_example_bar_3.c │ │ │ │ ├── lv_example_bar_3.py │ │ │ │ ├── lv_example_bar_4.c │ │ │ │ ├── lv_example_bar_4.py │ │ │ │ ├── lv_example_bar_5.c │ │ │ │ ├── lv_example_bar_5.py │ │ │ │ ├── lv_example_bar_6.c │ │ │ │ ├── lv_example_bar_6.py │ │ │ │ └── test.py │ │ │ │ ├── btn │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_btn_1.c │ │ │ │ ├── lv_example_btn_1.py │ │ │ │ ├── lv_example_btn_2.c │ │ │ │ ├── lv_example_btn_2.py │ │ │ │ ├── lv_example_btn_3.c │ │ │ │ └── lv_example_btn_3.py │ │ │ │ ├── btnmatrix │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_btnmatrix_1.c │ │ │ │ ├── lv_example_btnmatrix_1.py │ │ │ │ ├── lv_example_btnmatrix_2.c │ │ │ │ ├── lv_example_btnmatrix_2.py │ │ │ │ ├── lv_example_btnmatrix_3.c │ │ │ │ └── lv_example_btnmatrix_3.py │ │ │ │ ├── calendar │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_calendar_1.c │ │ │ │ └── lv_example_calendar_1.py │ │ │ │ ├── canvas │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_canvas_1.c │ │ │ │ ├── lv_example_canvas_1.py │ │ │ │ ├── lv_example_canvas_2.c │ │ │ │ └── lv_example_canvas_2.py │ │ │ │ ├── chart │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_chart_1.c │ │ │ │ ├── lv_example_chart_1.py │ │ │ │ ├── lv_example_chart_2.c │ │ │ │ ├── lv_example_chart_2.py │ │ │ │ ├── lv_example_chart_3.c │ │ │ │ ├── lv_example_chart_3.py │ │ │ │ ├── lv_example_chart_4.c │ │ │ │ ├── lv_example_chart_4.py │ │ │ │ ├── lv_example_chart_5.c │ │ │ │ ├── lv_example_chart_5.py │ │ │ │ ├── lv_example_chart_6.c │ │ │ │ ├── lv_example_chart_6.py │ │ │ │ ├── lv_example_chart_7.c │ │ │ │ ├── lv_example_chart_7.py │ │ │ │ ├── lv_example_chart_8.c │ │ │ │ ├── lv_example_chart_8.py │ │ │ │ ├── lv_example_chart_9.c │ │ │ │ └── lv_example_chart_9.py │ │ │ │ ├── checkbox │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_checkbox_1.c │ │ │ │ ├── lv_example_checkbox_1.py │ │ │ │ └── lv_example_checkbox_2.c │ │ │ │ ├── colorwheel │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_colorwheel_1.c │ │ │ │ └── lv_example_colorwheel_1.py │ │ │ │ ├── dropdown │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_dropdown_1.c │ │ │ │ ├── lv_example_dropdown_1.py │ │ │ │ ├── lv_example_dropdown_2.c │ │ │ │ ├── lv_example_dropdown_2.py │ │ │ │ ├── lv_example_dropdown_3.c │ │ │ │ └── lv_example_dropdown_3.py │ │ │ │ ├── img │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_img_1.c │ │ │ │ ├── lv_example_img_1.py │ │ │ │ ├── lv_example_img_2.c │ │ │ │ ├── lv_example_img_2.py │ │ │ │ ├── lv_example_img_3.c │ │ │ │ ├── lv_example_img_3.py │ │ │ │ ├── lv_example_img_4.c │ │ │ │ └── lv_example_img_4.py │ │ │ │ ├── imgbtn │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_imgbtn_1.c │ │ │ │ └── lv_example_imgbtn_1.py │ │ │ │ ├── keyboard │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_keyboard_1.c │ │ │ │ └── lv_example_keyboard_1.py │ │ │ │ ├── label │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_label_1.c │ │ │ │ ├── lv_example_label_1.py │ │ │ │ ├── lv_example_label_2.c │ │ │ │ ├── lv_example_label_2.py │ │ │ │ ├── lv_example_label_3.c │ │ │ │ ├── lv_example_label_3.py │ │ │ │ └── lv_example_label_4.c │ │ │ │ ├── led │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_led_1.c │ │ │ │ └── lv_example_led_1.py │ │ │ │ ├── line │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_line_1.c │ │ │ │ └── lv_example_line_1.py │ │ │ │ ├── list │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_list_1.c │ │ │ │ ├── lv_example_list_1.py │ │ │ │ ├── lv_example_list_2.c │ │ │ │ ├── lv_example_list_2.py │ │ │ │ └── test.py │ │ │ │ ├── lv_example_widgets.h │ │ │ │ ├── menu │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_menu_1.c │ │ │ │ ├── lv_example_menu_1.py │ │ │ │ ├── lv_example_menu_2.c │ │ │ │ ├── lv_example_menu_2.py │ │ │ │ ├── lv_example_menu_3.c │ │ │ │ ├── lv_example_menu_3.py │ │ │ │ ├── lv_example_menu_4.c │ │ │ │ ├── lv_example_menu_4.py │ │ │ │ └── lv_example_menu_5.c │ │ │ │ ├── meter │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_meter_1.c │ │ │ │ ├── lv_example_meter_1.py │ │ │ │ ├── lv_example_meter_2.c │ │ │ │ ├── lv_example_meter_2.py │ │ │ │ ├── lv_example_meter_3.c │ │ │ │ ├── lv_example_meter_3.py │ │ │ │ ├── lv_example_meter_4.c │ │ │ │ └── lv_example_meter_4.py │ │ │ │ ├── msgbox │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_msgbox_1.c │ │ │ │ └── lv_example_msgbox_1.py │ │ │ │ ├── obj │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_obj_1.c │ │ │ │ ├── lv_example_obj_1.py │ │ │ │ ├── lv_example_obj_2.c │ │ │ │ └── lv_example_obj_2.py │ │ │ │ ├── roller │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_roller_1.c │ │ │ │ ├── lv_example_roller_1.py │ │ │ │ ├── lv_example_roller_2.c │ │ │ │ ├── lv_example_roller_2.py │ │ │ │ ├── lv_example_roller_3.c │ │ │ │ └── lv_example_roller_3.py │ │ │ │ ├── slider │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_slider_1.c │ │ │ │ ├── lv_example_slider_1.py │ │ │ │ ├── lv_example_slider_2.c │ │ │ │ ├── lv_example_slider_2.py │ │ │ │ ├── lv_example_slider_3.c │ │ │ │ └── lv_example_slider_3.py │ │ │ │ ├── span │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_span_1.c │ │ │ │ └── lv_example_span_1.py │ │ │ │ ├── spinbox │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_spinbox_1.c │ │ │ │ └── lv_example_spinbox_1.py │ │ │ │ ├── spinner │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_spinner_1.c │ │ │ │ └── lv_example_spinner_1.py │ │ │ │ ├── switch │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_switch_1.c │ │ │ │ └── lv_example_switch_1.py │ │ │ │ ├── table │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_table_1.c │ │ │ │ ├── lv_example_table_1.py │ │ │ │ ├── lv_example_table_2.c │ │ │ │ └── lv_example_table_2.py │ │ │ │ ├── tabview │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_tabview_1.c │ │ │ │ ├── lv_example_tabview_1.py │ │ │ │ ├── lv_example_tabview_2.c │ │ │ │ └── lv_example_tabview_2.py │ │ │ │ ├── textarea │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_textarea_1.c │ │ │ │ ├── lv_example_textarea_1.py │ │ │ │ ├── lv_example_textarea_2.c │ │ │ │ ├── lv_example_textarea_2.py │ │ │ │ ├── lv_example_textarea_3.c │ │ │ │ └── lv_example_textarea_3.py │ │ │ │ ├── tileview │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_tileview_1.c │ │ │ │ └── lv_example_tileview_1.py │ │ │ │ └── win │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_win_1.c │ │ │ │ └── lv_example_win_1.py │ │ │ ├── library.json │ │ │ ├── lvgl.h │ │ │ ├── porting │ │ │ ├── lv_port_disp_template.c │ │ │ ├── lv_port_disp_template.h │ │ │ ├── lv_port_fs_template.c │ │ │ ├── lv_port_fs_template.h │ │ │ ├── lv_port_indev_template.c │ │ │ └── lv_port_indev_template.h │ │ │ └── src │ │ │ ├── core │ │ │ ├── lv_core.mk │ │ │ ├── lv_disp.c │ │ │ ├── lv_disp.h │ │ │ ├── lv_event.c │ │ │ ├── lv_event.h │ │ │ ├── lv_group.c │ │ │ ├── lv_group.h │ │ │ ├── lv_indev.c │ │ │ ├── lv_indev.h │ │ │ ├── lv_indev_scroll.c │ │ │ ├── lv_indev_scroll.h │ │ │ ├── lv_obj.c │ │ │ ├── lv_obj.h │ │ │ ├── lv_obj_class.c │ │ │ ├── lv_obj_class.h │ │ │ ├── lv_obj_draw.c │ │ │ ├── lv_obj_draw.h │ │ │ ├── lv_obj_pos.c │ │ │ ├── lv_obj_pos.h │ │ │ ├── lv_obj_scroll.c │ │ │ ├── lv_obj_scroll.h │ │ │ ├── lv_obj_style.c │ │ │ ├── lv_obj_style.h │ │ │ ├── lv_obj_style_gen.c │ │ │ ├── lv_obj_style_gen.h │ │ │ ├── lv_obj_tree.c │ │ │ ├── lv_obj_tree.h │ │ │ ├── lv_refr.c │ │ │ ├── lv_refr.h │ │ │ ├── lv_theme.c │ │ │ └── lv_theme.h │ │ │ ├── draw │ │ │ ├── lv_draw.c │ │ │ ├── lv_draw.h │ │ │ ├── lv_draw.mk │ │ │ ├── lv_draw_arc.c │ │ │ ├── lv_draw_arc.h │ │ │ ├── lv_draw_img.c │ │ │ ├── lv_draw_img.h │ │ │ ├── lv_draw_label.c │ │ │ ├── lv_draw_label.h │ │ │ ├── lv_draw_line.c │ │ │ ├── lv_draw_line.h │ │ │ ├── lv_draw_mask.c │ │ │ ├── lv_draw_mask.h │ │ │ ├── lv_draw_rect.c │ │ │ ├── lv_draw_rect.h │ │ │ ├── lv_draw_triangle.c │ │ │ ├── lv_draw_triangle.h │ │ │ ├── lv_img_buf.c │ │ │ ├── lv_img_buf.h │ │ │ ├── lv_img_cache.c │ │ │ ├── lv_img_cache.h │ │ │ ├── lv_img_decoder.c │ │ │ ├── lv_img_decoder.h │ │ │ ├── nxp_pxp │ │ │ │ ├── lv_gpu_nxp_pxp.c │ │ │ │ ├── lv_gpu_nxp_pxp.h │ │ │ │ ├── lv_gpu_nxp_pxp_osa.c │ │ │ │ └── lv_gpu_nxp_pxp_osa.h │ │ │ ├── nxp_vglite │ │ │ │ ├── lv_gpu_nxp_vglite.c │ │ │ │ └── lv_gpu_nxp_vglite.h │ │ │ ├── sdl │ │ │ │ ├── README.md │ │ │ │ ├── lv_draw_sdl.c │ │ │ │ ├── lv_draw_sdl.h │ │ │ │ ├── lv_draw_sdl.mk │ │ │ │ ├── lv_draw_sdl_arc.c │ │ │ │ ├── lv_draw_sdl_bg.c │ │ │ │ ├── lv_draw_sdl_composite.c │ │ │ │ ├── lv_draw_sdl_composite.h │ │ │ │ ├── lv_draw_sdl_img.c │ │ │ │ ├── lv_draw_sdl_img.h │ │ │ │ ├── lv_draw_sdl_label.c │ │ │ │ ├── lv_draw_sdl_line.c │ │ │ │ ├── lv_draw_sdl_mask.c │ │ │ │ ├── lv_draw_sdl_mask.h │ │ │ │ ├── lv_draw_sdl_polygon.c │ │ │ │ ├── lv_draw_sdl_priv.h │ │ │ │ ├── lv_draw_sdl_rect.c │ │ │ │ ├── lv_draw_sdl_rect.h │ │ │ │ ├── lv_draw_sdl_stack_blur.c │ │ │ │ ├── lv_draw_sdl_stack_blur.h │ │ │ │ ├── lv_draw_sdl_texture_cache.c │ │ │ │ ├── lv_draw_sdl_texture_cache.h │ │ │ │ ├── lv_draw_sdl_utils.c │ │ │ │ └── lv_draw_sdl_utils.h │ │ │ ├── stm32_dma2d │ │ │ │ ├── lv_gpu_stm32_dma2d.c │ │ │ │ └── lv_gpu_stm32_dma2d.h │ │ │ └── sw │ │ │ │ ├── lv_draw_sw.c │ │ │ │ ├── lv_draw_sw.h │ │ │ │ ├── lv_draw_sw.mk │ │ │ │ ├── lv_draw_sw_arc.c │ │ │ │ ├── lv_draw_sw_blend.c │ │ │ │ ├── lv_draw_sw_blend.h │ │ │ │ ├── lv_draw_sw_dither.c │ │ │ │ ├── lv_draw_sw_dither.h │ │ │ │ ├── lv_draw_sw_gradient.c │ │ │ │ ├── lv_draw_sw_gradient.h │ │ │ │ ├── lv_draw_sw_img.c │ │ │ │ ├── lv_draw_sw_letter.c │ │ │ │ ├── lv_draw_sw_line.c │ │ │ │ ├── lv_draw_sw_polygon.c │ │ │ │ └── lv_draw_sw_rect.c │ │ │ ├── extra │ │ │ ├── README.md │ │ │ ├── extra.mk │ │ │ ├── layouts │ │ │ │ ├── flex │ │ │ │ │ ├── lv_flex.c │ │ │ │ │ └── lv_flex.h │ │ │ │ ├── grid │ │ │ │ │ ├── lv_grid.c │ │ │ │ │ └── lv_grid.h │ │ │ │ └── lv_layouts.h │ │ │ ├── libs │ │ │ │ ├── bmp │ │ │ │ │ ├── lv_bmp.c │ │ │ │ │ └── lv_bmp.h │ │ │ │ ├── ffmpeg │ │ │ │ │ ├── lv_ffmpeg.c │ │ │ │ │ └── lv_ffmpeg.h │ │ │ │ ├── freetype │ │ │ │ │ ├── arial.ttf │ │ │ │ │ ├── lv_freetype.c │ │ │ │ │ └── lv_freetype.h │ │ │ │ ├── fsdrv │ │ │ │ │ ├── lv_fs_fatfs.c │ │ │ │ │ ├── lv_fs_posix.c │ │ │ │ │ ├── lv_fs_stdio.c │ │ │ │ │ ├── lv_fs_win32.c │ │ │ │ │ └── lv_fsdrv.h │ │ │ │ ├── gif │ │ │ │ │ ├── gifdec.c │ │ │ │ │ ├── gifdec.h │ │ │ │ │ ├── lv_gif.c │ │ │ │ │ └── lv_gif.h │ │ │ │ ├── lv_libs.h │ │ │ │ ├── png │ │ │ │ │ ├── lodepng.c │ │ │ │ │ ├── lodepng.h │ │ │ │ │ ├── lv_png.c │ │ │ │ │ └── lv_png.h │ │ │ │ ├── qrcode │ │ │ │ │ ├── lv_qrcode.c │ │ │ │ │ ├── lv_qrcode.h │ │ │ │ │ ├── qrcodegen.c │ │ │ │ │ └── qrcodegen.h │ │ │ │ ├── rlottie │ │ │ │ │ ├── lv_rlottie.c │ │ │ │ │ └── lv_rlottie.h │ │ │ │ └── sjpg │ │ │ │ │ ├── lv_sjpg.c │ │ │ │ │ ├── lv_sjpg.h │ │ │ │ │ ├── tjpgd.c │ │ │ │ │ ├── tjpgd.h │ │ │ │ │ └── tjpgdcnf.h │ │ │ ├── lv_extra.c │ │ │ ├── lv_extra.h │ │ │ ├── others │ │ │ │ ├── gridnav │ │ │ │ │ ├── lv_gridnav.c │ │ │ │ │ └── lv_gridnav.h │ │ │ │ ├── lv_others.h │ │ │ │ ├── monkey │ │ │ │ │ ├── lv_monkey.c │ │ │ │ │ └── lv_monkey.h │ │ │ │ └── snapshot │ │ │ │ │ ├── lv_snapshot.c │ │ │ │ │ └── lv_snapshot.h │ │ │ ├── themes │ │ │ │ ├── basic │ │ │ │ │ ├── lv_theme_basic.c │ │ │ │ │ └── lv_theme_basic.h │ │ │ │ ├── default │ │ │ │ │ ├── lv_theme_default.c │ │ │ │ │ └── lv_theme_default.h │ │ │ │ ├── lv_themes.h │ │ │ │ └── mono │ │ │ │ │ ├── lv_theme_mono.c │ │ │ │ │ └── lv_theme_mono.h │ │ │ └── widgets │ │ │ │ ├── animimg │ │ │ │ ├── lv_animimg.c │ │ │ │ └── lv_animimg.h │ │ │ │ ├── calendar │ │ │ │ ├── lv_calendar.c │ │ │ │ ├── lv_calendar.h │ │ │ │ ├── lv_calendar_header_arrow.c │ │ │ │ ├── lv_calendar_header_arrow.h │ │ │ │ ├── lv_calendar_header_dropdown.c │ │ │ │ └── lv_calendar_header_dropdown.h │ │ │ │ ├── chart │ │ │ │ ├── lv_chart.c │ │ │ │ └── lv_chart.h │ │ │ │ ├── colorwheel │ │ │ │ ├── lv_colorwheel.c │ │ │ │ └── lv_colorwheel.h │ │ │ │ ├── imgbtn │ │ │ │ ├── lv_imgbtn.c │ │ │ │ └── lv_imgbtn.h │ │ │ │ ├── keyboard │ │ │ │ ├── lv_keyboard.c │ │ │ │ └── lv_keyboard.h │ │ │ │ ├── led │ │ │ │ ├── lv_led.c │ │ │ │ └── lv_led.h │ │ │ │ ├── list │ │ │ │ ├── lv_list.c │ │ │ │ └── lv_list.h │ │ │ │ ├── lv_widgets.h │ │ │ │ ├── menu │ │ │ │ ├── lv_menu.c │ │ │ │ └── lv_menu.h │ │ │ │ ├── meter │ │ │ │ ├── lv_meter.c │ │ │ │ └── lv_meter.h │ │ │ │ ├── msgbox │ │ │ │ ├── lv_msgbox.c │ │ │ │ └── lv_msgbox.h │ │ │ │ ├── span │ │ │ │ ├── lv_span.c │ │ │ │ └── lv_span.h │ │ │ │ ├── spinbox │ │ │ │ ├── lv_spinbox.c │ │ │ │ └── lv_spinbox.h │ │ │ │ ├── spinner │ │ │ │ ├── lv_spinner.c │ │ │ │ └── lv_spinner.h │ │ │ │ ├── tabview │ │ │ │ ├── lv_tabview.c │ │ │ │ └── lv_tabview.h │ │ │ │ ├── tileview │ │ │ │ ├── lv_tileview.c │ │ │ │ └── lv_tileview.h │ │ │ │ └── win │ │ │ │ ├── lv_win.c │ │ │ │ └── lv_win.h │ │ │ ├── font │ │ │ ├── korean.ttf │ │ │ ├── lv_font.c │ │ │ ├── lv_font.h │ │ │ ├── lv_font.mk │ │ │ ├── lv_font_dejavu_16_persian_hebrew.c │ │ │ ├── lv_font_fmt_txt.c │ │ │ ├── lv_font_fmt_txt.h │ │ │ ├── lv_font_loader.c │ │ │ ├── lv_font_loader.h │ │ │ ├── lv_font_montserrat_10.c │ │ │ ├── lv_font_montserrat_12.c │ │ │ ├── lv_font_montserrat_12_subpx.c │ │ │ ├── lv_font_montserrat_14.c │ │ │ ├── lv_font_montserrat_16.c │ │ │ ├── lv_font_montserrat_18.c │ │ │ ├── lv_font_montserrat_20.c │ │ │ ├── lv_font_montserrat_22.c │ │ │ ├── lv_font_montserrat_24.c │ │ │ ├── lv_font_montserrat_26.c │ │ │ ├── lv_font_montserrat_28.c │ │ │ ├── lv_font_montserrat_28_compressed.c │ │ │ ├── lv_font_montserrat_30.c │ │ │ ├── lv_font_montserrat_32.c │ │ │ ├── lv_font_montserrat_34.c │ │ │ ├── lv_font_montserrat_36.c │ │ │ ├── lv_font_montserrat_38.c │ │ │ ├── lv_font_montserrat_40.c │ │ │ ├── lv_font_montserrat_42.c │ │ │ ├── lv_font_montserrat_44.c │ │ │ ├── lv_font_montserrat_46.c │ │ │ ├── lv_font_montserrat_48.c │ │ │ ├── lv_font_montserrat_8.c │ │ │ ├── lv_font_simsun_16_cjk.c │ │ │ ├── lv_font_unscii_16.c │ │ │ ├── lv_font_unscii_8.c │ │ │ └── lv_symbol_def.h │ │ │ ├── gpu │ │ │ └── lv_gpu.mk │ │ │ ├── hal │ │ │ ├── lv_hal.h │ │ │ ├── lv_hal.mk │ │ │ ├── lv_hal_disp.c │ │ │ ├── lv_hal_disp.h │ │ │ ├── lv_hal_indev.c │ │ │ ├── lv_hal_indev.h │ │ │ ├── lv_hal_tick.c │ │ │ └── lv_hal_tick.h │ │ │ ├── lv_api_map.h │ │ │ ├── lv_conf_internal.h │ │ │ ├── lv_conf_kconfig.h │ │ │ ├── lvgl.h │ │ │ ├── misc │ │ │ ├── lv_anim.c │ │ │ ├── lv_anim.h │ │ │ ├── lv_anim_timeline.c │ │ │ ├── lv_anim_timeline.h │ │ │ ├── lv_area.c │ │ │ ├── lv_area.h │ │ │ ├── lv_assert.h │ │ │ ├── lv_async.c │ │ │ ├── lv_async.h │ │ │ ├── lv_bidi.c │ │ │ ├── lv_bidi.h │ │ │ ├── lv_color.c │ │ │ ├── lv_color.h │ │ │ ├── lv_fs.c │ │ │ ├── lv_fs.h │ │ │ ├── lv_gc.c │ │ │ ├── lv_gc.h │ │ │ ├── lv_ll.c │ │ │ ├── lv_ll.h │ │ │ ├── lv_log.c │ │ │ ├── lv_log.h │ │ │ ├── lv_lru.c │ │ │ ├── lv_lru.h │ │ │ ├── lv_math.c │ │ │ ├── lv_math.h │ │ │ ├── lv_mem.c │ │ │ ├── lv_mem.h │ │ │ ├── lv_misc.mk │ │ │ ├── lv_printf.c │ │ │ ├── lv_printf.h │ │ │ ├── lv_style.c │ │ │ ├── lv_style.h │ │ │ ├── lv_style_gen.c │ │ │ ├── lv_style_gen.h │ │ │ ├── lv_templ.c │ │ │ ├── lv_templ.h │ │ │ ├── lv_timer.c │ │ │ ├── lv_timer.h │ │ │ ├── lv_tlsf.c │ │ │ ├── lv_tlsf.h │ │ │ ├── lv_txt.c │ │ │ ├── lv_txt.h │ │ │ ├── lv_txt_ap.c │ │ │ ├── lv_txt_ap.h │ │ │ ├── lv_types.h │ │ │ ├── lv_utils.c │ │ │ └── lv_utils.h │ │ │ └── widgets │ │ │ ├── lv_arc.c │ │ │ ├── lv_arc.h │ │ │ ├── lv_bar.c │ │ │ ├── lv_bar.h │ │ │ ├── lv_btn.c │ │ │ ├── lv_btn.h │ │ │ ├── lv_btnmatrix.c │ │ │ ├── lv_btnmatrix.h │ │ │ ├── lv_canvas.c │ │ │ ├── lv_canvas.h │ │ │ ├── lv_checkbox.c │ │ │ ├── lv_checkbox.h │ │ │ ├── lv_dropdown.c │ │ │ ├── lv_dropdown.h │ │ │ ├── lv_img.c │ │ │ ├── lv_img.h │ │ │ ├── lv_label.c │ │ │ ├── lv_label.h │ │ │ ├── lv_line.c │ │ │ ├── lv_line.h │ │ │ ├── lv_objx_templ.c │ │ │ ├── lv_objx_templ.h │ │ │ ├── lv_roller.c │ │ │ ├── lv_roller.h │ │ │ ├── lv_slider.c │ │ │ ├── lv_slider.h │ │ │ ├── lv_switch.c │ │ │ ├── lv_switch.h │ │ │ ├── lv_table.c │ │ │ ├── lv_table.h │ │ │ ├── lv_textarea.c │ │ │ ├── lv_textarea.h │ │ │ └── lv_widgets.mk │ ├── HARDWARE │ │ ├── INA226 │ │ │ ├── INA226.c │ │ │ ├── INA226.h │ │ │ ├── myiic.c │ │ │ └── myiic.h │ │ ├── InternalFlash │ │ │ ├── bsp_internalFlash.c │ │ │ └── bsp_internalFlash.h │ │ ├── KEY │ │ │ ├── bsp_exti.c │ │ │ └── bsp_exti.h │ │ └── OLED │ │ │ ├── bmp.h │ │ │ ├── oled.c │ │ │ ├── oled.h │ │ │ └── oledfont.h │ ├── MDK-ARM │ │ ├── DebugConfig │ │ │ └── Mini-Monitor_STM32F401CCUx.dbgconf │ │ ├── EventRecorderStub.scvd │ │ ├── Mini-Monitor.uvguix.ChenJH │ │ ├── Mini-Monitor.uvoptx │ │ ├── Mini-Monitor.uvprojx │ │ ├── Mini-Monitor │ │ │ └── Mini-Monitor.hex │ │ ├── RTE │ │ │ └── _Mini-Monitor │ │ │ │ └── RTE_Components.h │ │ └── startup_stm32f401xc.s │ ├── Middlewares │ │ └── ST │ │ │ └── STM32_USB_Device_Library │ │ │ ├── Class │ │ │ └── CDC │ │ │ │ ├── Inc │ │ │ │ └── usbd_cdc.h │ │ │ │ └── Src │ │ │ │ └── usbd_cdc.c │ │ │ └── Core │ │ │ ├── Inc │ │ │ ├── usbd_core.h │ │ │ ├── usbd_ctlreq.h │ │ │ ├── usbd_def.h │ │ │ └── usbd_ioreq.h │ │ │ └── Src │ │ │ ├── usbd_core.c │ │ │ ├── usbd_ctlreq.c │ │ │ └── usbd_ioreq.c │ ├── Mini-Monitor.ioc │ ├── SYSTEM │ │ ├── delay │ │ │ ├── delay.c │ │ │ └── delay.h │ │ └── sys │ │ │ ├── sys.c │ │ │ └── sys.h │ ├── USB_DEVICE │ │ ├── App │ │ │ ├── usb_device.c │ │ │ ├── usb_device.h │ │ │ ├── usbd_cdc_if.c │ │ │ ├── usbd_cdc_if.h │ │ │ ├── usbd_desc.c │ │ │ └── usbd_desc.h │ │ └── Target │ │ │ ├── usbd_conf.c │ │ │ └── usbd_conf.h │ ├── keilkilll.bat │ └── lvgl-8.2.0.zip └── README.md ├── 02_Datasheet ├── OLED │ ├── CH1115 驱动手册.pdf │ ├── P39403 SPI Application Notes X01.pdf │ └── 焊接式-裸屏规格书ZJYM130-CH1115.pdf ├── STM32F401CCU6.pdf └── ina226.pdf ├── 03_3D_Model ├── M壳-上.STL └── M壳-下.STL ├── 04_Images ├── photograph │ ├── IMG_3699.JPG │ ├── IMG_3701.JPG │ ├── IMG_3709.JPG │ ├── IMG_3772.JPG │ ├── IMG_3781.JPG │ └── IMG_3813.JPG └── rendergraph │ ├── GEN_1.JPG │ ├── GEN_10.JPG │ ├── GEN_11.JPG │ ├── GEN_2.JPG │ ├── GEN_3.JPG │ ├── GEN_4.JPG │ ├── GEN_5.JPG │ ├── GEN_6.JPG │ ├── GEN_7.JPG │ ├── GEN_8.JPG │ └── GEN_9.JPG ├── 05_Video └── 自制一个迷你电流表.url └── README.md /00_Hardware/MiniMonitor_PCB.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/00_Hardware/MiniMonitor_PCB.PcbDoc -------------------------------------------------------------------------------- /00_Hardware/MiniMonitor_Project.PrjPcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/00_Hardware/MiniMonitor_Project.PrjPcb -------------------------------------------------------------------------------- /00_Hardware/MiniMonitor_Project.PrjPcbStructure: -------------------------------------------------------------------------------- 1 | Record=TopLevelDocument|FileName=MiniMonitor_SCH.SchDoc 2 | -------------------------------------------------------------------------------- /00_Hardware/MiniMonitor_SCH.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/00_Hardware/MiniMonitor_SCH.SchDoc -------------------------------------------------------------------------------- /00_Hardware/MiniMonitor_SCH.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/00_Hardware/MiniMonitor_SCH.pdf -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/.mxproject -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/.vscode/settings.json -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Core/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Core/Inc/gpio.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Core/Inc/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Core/Inc/i2c.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Core/Inc/main.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Core/Inc/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Core/Inc/rtc.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Core/Inc/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Core/Inc/spi.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Core/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Core/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Core/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Core/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Core/Inc/tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Core/Inc/tim.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Core/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Core/Src/gpio.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Core/Src/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Core/Src/i2c.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Core/Src/main.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Core/Src/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Core/Src/rtc.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Core/Src/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Core/Src/spi.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Core/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Core/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Core/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Core/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Core/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Core/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Core/Src/tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Core/Src/tim.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Device/ST/STM32F4xx/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Device/ST/STM32F4xx/License.md -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/cmsis_version.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/core_armv8mml.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/mpu_armv8.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/Include/tz_context.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/CMSIS/LICENSE.txt -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/STM32F4xx_HAL_Driver/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/STM32F4xx_HAL_Driver/License.md -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/HARDWARE/INA226/INA226.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/HARDWARE/INA226/INA226.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/HARDWARE/INA226/INA226.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/HARDWARE/INA226/INA226.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/HARDWARE/INA226/myiic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/HARDWARE/INA226/myiic.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/HARDWARE/INA226/myiic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/HARDWARE/INA226/myiic.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/HARDWARE/InternalFlash/bsp_internalFlash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/HARDWARE/InternalFlash/bsp_internalFlash.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/HARDWARE/InternalFlash/bsp_internalFlash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/HARDWARE/InternalFlash/bsp_internalFlash.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/HARDWARE/KEY/bsp_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/HARDWARE/KEY/bsp_exti.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/HARDWARE/KEY/bsp_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/HARDWARE/KEY/bsp_exti.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/HARDWARE/OLED/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/HARDWARE/OLED/bmp.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/HARDWARE/OLED/oled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/HARDWARE/OLED/oled.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/HARDWARE/OLED/oled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/HARDWARE/OLED/oled.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/HARDWARE/OLED/oledfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/HARDWARE/OLED/oledfont.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/MDK-ARM/Mini-Monitor.uvguix.ChenJH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/MDK-ARM/Mini-Monitor.uvguix.ChenJH -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/MDK-ARM/Mini-Monitor.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/MDK-ARM/Mini-Monitor.uvoptx -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/MDK-ARM/Mini-Monitor.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/MDK-ARM/Mini-Monitor.uvprojx -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/MDK-ARM/Mini-Monitor/Mini-Monitor.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/MDK-ARM/Mini-Monitor/Mini-Monitor.hex -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/MDK-ARM/RTE/_Mini-Monitor/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/MDK-ARM/RTE/_Mini-Monitor/RTE_Components.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/MDK-ARM/startup_stm32f401xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/MDK-ARM/startup_stm32f401xc.s -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Mini-Monitor-2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Mini-Monitor-2.bmp -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/Mini-Monitor.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/Mini-Monitor.ioc -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/SYSTEM/delay/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/SYSTEM/delay/delay.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/SYSTEM/delay/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/SYSTEM/delay/delay.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/SYSTEM/sys/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/SYSTEM/sys/sys.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/SYSTEM/sys/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/SYSTEM/sys/sys.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/USB_DEVICE/App/usb_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/USB_DEVICE/App/usb_device.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/USB_DEVICE/App/usb_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/USB_DEVICE/App/usb_device.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/USB_DEVICE/App/usbd_cdc_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/USB_DEVICE/App/usbd_cdc_if.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/USB_DEVICE/App/usbd_cdc_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/USB_DEVICE/App/usbd_cdc_if.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/USB_DEVICE/App/usbd_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/USB_DEVICE/App/usbd_desc.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/USB_DEVICE/App/usbd_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/USB_DEVICE/App/usbd_desc.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/USB_DEVICE/Target/usbd_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/USB_DEVICE/Target/usbd_conf.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/USB_DEVICE/Target/usbd_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/USB_DEVICE/Target/usbd_conf.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__no_lvgl/keilkilll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__no_lvgl/keilkilll.bat -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/.mxproject -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/.vscode/settings.json -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Core/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Core/Inc/gpio.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Core/Inc/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Core/Inc/i2c.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Core/Inc/main.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Core/Inc/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Core/Inc/rtc.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Core/Inc/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Core/Inc/spi.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Core/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Core/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Core/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Core/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Core/Inc/tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Core/Inc/tim.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Core/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Core/Src/gpio.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Core/Src/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Core/Src/i2c.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Core/Src/main.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Core/Src/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Core/Src/rtc.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Core/Src/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Core/Src/spi.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Core/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Core/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Core/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Core/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Core/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Core/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Core/Src/tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Core/Src/tim.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Device/ST/STM32F4xx/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Device/ST/STM32F4xx/License.md -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/cmsis_version.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/core_armv8mml.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/mpu_armv8.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/Include/tz_context.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/CMSIS/LICENSE.txt -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/STM32F4xx_HAL_Driver/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/STM32F4xx_HAL_Driver/License.md -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lv_conf.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/LICENCE.txt -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/README.md -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/anim/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/anim/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/anim/lv_example_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/anim/lv_example_anim.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/anim/lv_example_anim_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/anim/lv_example_anim_1.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/anim/lv_example_anim_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/anim/lv_example_anim_1.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/anim/lv_example_anim_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/anim/lv_example_anim_2.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/anim/lv_example_anim_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/anim/lv_example_anim_2.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/anim/lv_example_anim_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/anim/lv_example_anim_3.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/anim/lv_example_anim_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/anim/lv_example_anim_3.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/animimg001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/animimg001.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/animimg001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/animimg001.png -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/animimg002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/animimg002.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/animimg002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/animimg002.png -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/animimg003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/animimg003.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/animimg003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/animimg003.png -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/caret_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/caret_down.png -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/font/montserrat-16.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/font/montserrat-16.fnt -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/font/montserrat-22.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/font/montserrat-22.fnt -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_caret_down.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_caret_down.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_caret_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_caret_down.png -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_cogwheel_alpha16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_cogwheel_alpha16.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_cogwheel_argb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_cogwheel_argb.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_cogwheel_argb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_cogwheel_argb.png -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_cogwheel_rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_cogwheel_rgb.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_cogwheel_rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_cogwheel_rgb.png -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_hand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_hand.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_hand_hour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_hand_hour.png -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_hand_min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_hand_min.png -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_skew_strip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_skew_strip.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_skew_strip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_skew_strip.png -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_star.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_star.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_star.png -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_strip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/img_strip.png -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/imgbtn_left.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/imgbtn_left.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/imgbtn_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/imgbtn_left.png -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/imgbtn_mid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/imgbtn_mid.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/imgbtn_mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/imgbtn_mid.png -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/imgbtn_right.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/imgbtn_right.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/imgbtn_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/assets/imgbtn_right.png -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/event/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/event/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/event/lv_example_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/event/lv_example_event.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/event/lv_example_event_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/event/lv_example_event_1.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/event/lv_example_event_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/event/lv_example_event_1.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/event/lv_example_event_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/event/lv_example_event_2.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/event/lv_example_event_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/event/lv_example_event_2.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/event/lv_example_event_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/event/lv_example_event_3.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/event/lv_example_event_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/event/lv_example_event_3.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/event/lv_example_event_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/event/lv_example_event_4.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/examples.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/examples.mk -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/get_started/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/get_started/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/header.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/layouts/flex/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/layouts/flex/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/layouts/flex/lv_example_flex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/layouts/flex/lv_example_flex.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/layouts/grid/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/layouts/grid/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/layouts/grid/lv_example_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/layouts/grid/lv_example_grid.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/layouts/lv_example_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/layouts/lv_example_layout.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/bmp/example_16bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/bmp/example_16bit.bmp -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/bmp/example_24bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/bmp/example_24bit.bmp -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/bmp/example_32bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/bmp/example_32bit.bmp -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/bmp/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/bmp/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/bmp/lv_example_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/bmp/lv_example_bmp.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/bmp/lv_example_bmp_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/bmp/lv_example_bmp_1.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/bmp/lv_example_bmp_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/bmp/lv_example_bmp_1.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/ffmpeg/birds.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/ffmpeg/birds.mp4 -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/ffmpeg/ffmpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/ffmpeg/ffmpeg.png -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/ffmpeg/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/ffmpeg/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/freetype/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/freetype/arial.ttf -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/freetype/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/freetype/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/gif/bulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/gif/bulb.gif -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/gif/img_bulb_gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/gif/img_bulb_gif.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/gif/img_bulb_gif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/gif/img_bulb_gif.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/gif/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/gif/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/gif/lv_example_gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/gif/lv_example_gif.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/gif/lv_example_gif_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/gif/lv_example_gif_1.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/gif/lv_example_gif_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/gif/lv_example_gif_1.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/lv_example_libs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/lv_example_libs.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/png/img_wink_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/png/img_wink_png.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/png/img_wink_png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/png/img_wink_png.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/png/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/png/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/png/lv_example_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/png/lv_example_png.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/png/lv_example_png_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/png/lv_example_png_1.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/png/lv_example_png_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/png/lv_example_png_1.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/png/wink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/png/wink.png -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/qrcode/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/qrcode/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/rlottie/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/rlottie/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/sjpg/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/sjpg/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/sjpg/lv_example_sjpg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/sjpg/lv_example_sjpg.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/sjpg/lv_example_sjpg_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/sjpg/lv_example_sjpg_1.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/sjpg/lv_example_sjpg_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/sjpg/lv_example_sjpg_1.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/sjpg/small_image.sjpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/libs/sjpg/small_image.sjpg -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/lv_examples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/lv_examples.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/others/gridnav/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/others/gridnav/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/others/lv_example_others.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/others/lv_example_others.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/others/monkey/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/others/monkey/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/others/snapshot/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/others/snapshot/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll_1.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll_1.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll_2.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll_2.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll_3.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll_3.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll_4.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll_4.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll_5.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll_5.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll_6.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/scroll/lv_example_scroll_6.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_1.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_1.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_10.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_10.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_11.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_11.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_12.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_12.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_13.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_13.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_14.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_14.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_2.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_2.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_3.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_3.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_4.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_4.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_5.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_5.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_6.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_6.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_7.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_7.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_8.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_8.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_9.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/styles/lv_example_style_9.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/test_ex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/test_ex.sh -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/animimg/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/animimg/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/arc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/arc/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/arc/lv_example_arc_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/arc/lv_example_arc_1.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/arc/lv_example_arc_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/arc/lv_example_arc_2.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/bar/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/bar/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/bar/lv_example_bar_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/bar/lv_example_bar_1.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/bar/lv_example_bar_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/bar/lv_example_bar_2.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/bar/lv_example_bar_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/bar/lv_example_bar_3.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/bar/lv_example_bar_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/bar/lv_example_bar_4.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/bar/lv_example_bar_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/bar/lv_example_bar_5.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/bar/lv_example_bar_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/bar/lv_example_bar_6.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/bar/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/bar/test.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/btn/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/btn/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/btn/lv_example_btn_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/btn/lv_example_btn_1.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/btn/lv_example_btn_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/btn/lv_example_btn_2.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/btn/lv_example_btn_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/btn/lv_example_btn_3.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/btnmatrix/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/btnmatrix/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/calendar/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/calendar/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/canvas/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/canvas/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/chart/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/chart/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/checkbox/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/checkbox/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/colorwheel/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/colorwheel/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/dropdown/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/dropdown/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/img/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/img/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/img/lv_example_img_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/img/lv_example_img_1.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/img/lv_example_img_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/img/lv_example_img_2.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/img/lv_example_img_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/img/lv_example_img_3.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/img/lv_example_img_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/img/lv_example_img_4.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/imgbtn/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/imgbtn/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/keyboard/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/keyboard/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/label/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/label/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/led/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/led/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/led/lv_example_led_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/led/lv_example_led_1.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/line/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/line/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/list/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/list/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/list/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/list/test.py -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/lv_example_widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/lv_example_widgets.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/menu/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/menu/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/meter/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/meter/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/msgbox/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/msgbox/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/obj/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/obj/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/roller/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/roller/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/slider/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/slider/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/span/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/span/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/spinbox/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/spinbox/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/spinner/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/spinner/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/switch/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/switch/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/table/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/table/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/tabview/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/tabview/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/textarea/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/textarea/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/tileview/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/tileview/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/win/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/examples/widgets/win/index.rst -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/library.json -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/lvgl.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/porting/lv_port_disp_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/porting/lv_port_disp_template.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/porting/lv_port_disp_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/porting/lv_port_disp_template.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/porting/lv_port_fs_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/porting/lv_port_fs_template.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/porting/lv_port_fs_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/porting/lv_port_fs_template.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/porting/lv_port_indev_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/porting/lv_port_indev_template.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/porting/lv_port_indev_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/porting/lv_port_indev_template.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_core.mk -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_disp.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_disp.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_event.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_event.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_group.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_group.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_indev.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_indev.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_indev_scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_indev_scroll.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_indev_scroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_indev_scroll.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_class.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_class.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_draw.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_draw.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_pos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_pos.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_pos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_pos.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_scroll.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_scroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_scroll.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_style.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_style.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_style_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_style_gen.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_style_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_style_gen.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_tree.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_obj_tree.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_refr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_refr.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_refr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_refr.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_theme.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/core/lv_theme.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw.mk -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_arc.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_arc.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_img.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_img.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_label.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_label.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_line.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_line.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_mask.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_mask.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_rect.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_rect.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_triangle.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_draw_triangle.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_img_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_img_buf.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_img_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_img_buf.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_img_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_img_cache.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_img_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_img_cache.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_img_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_img_decoder.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_img_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/lv_img_decoder.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/nxp_pxp/lv_gpu_nxp_pxp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/nxp_pxp/lv_gpu_nxp_pxp.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/nxp_pxp/lv_gpu_nxp_pxp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/nxp_pxp/lv_gpu_nxp_pxp.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/README.md -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl.mk -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_arc.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_bg.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_composite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_composite.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_composite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_composite.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_img.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_img.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_label.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_line.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_mask.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_mask.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_polygon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_polygon.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_priv.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_rect.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_rect.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_utils.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sdl/lv_draw_sdl_utils.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw.mk -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw_arc.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw_blend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw_blend.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw_blend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw_blend.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw_dither.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw_dither.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw_dither.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw_dither.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw_gradient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw_gradient.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw_gradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw_gradient.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw_img.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw_letter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw_letter.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw_line.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw_polygon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw_polygon.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/draw/sw/lv_draw_sw_rect.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/README.md -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/extra.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/extra.mk -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/layouts/flex/lv_flex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/layouts/flex/lv_flex.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/layouts/flex/lv_flex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/layouts/flex/lv_flex.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/layouts/grid/lv_grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/layouts/grid/lv_grid.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/layouts/grid/lv_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/layouts/grid/lv_grid.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/layouts/lv_layouts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/layouts/lv_layouts.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/bmp/lv_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/bmp/lv_bmp.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/bmp/lv_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/bmp/lv_bmp.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/ffmpeg/lv_ffmpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/ffmpeg/lv_ffmpeg.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/ffmpeg/lv_ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/ffmpeg/lv_ffmpeg.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/freetype/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/freetype/arial.ttf -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/fsdrv/lv_fs_fatfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/fsdrv/lv_fs_fatfs.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/fsdrv/lv_fs_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/fsdrv/lv_fs_posix.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/fsdrv/lv_fs_stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/fsdrv/lv_fs_stdio.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/fsdrv/lv_fs_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/fsdrv/lv_fs_win32.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/fsdrv/lv_fsdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/fsdrv/lv_fsdrv.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/gif/gifdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/gif/gifdec.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/gif/gifdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/gif/gifdec.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/gif/lv_gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/gif/lv_gif.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/gif/lv_gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/gif/lv_gif.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/lv_libs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/lv_libs.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/png/lodepng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/png/lodepng.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/png/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/png/lodepng.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/png/lv_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/png/lv_png.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/png/lv_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/png/lv_png.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/qrcode/lv_qrcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/qrcode/lv_qrcode.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/qrcode/lv_qrcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/qrcode/lv_qrcode.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/qrcode/qrcodegen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/qrcode/qrcodegen.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/qrcode/qrcodegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/qrcode/qrcodegen.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/rlottie/lv_rlottie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/rlottie/lv_rlottie.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/rlottie/lv_rlottie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/rlottie/lv_rlottie.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/sjpg/lv_sjpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/sjpg/lv_sjpg.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/sjpg/lv_sjpg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/sjpg/lv_sjpg.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/sjpg/tjpgd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/sjpg/tjpgd.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/sjpg/tjpgd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/sjpg/tjpgd.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/sjpg/tjpgdcnf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/libs/sjpg/tjpgdcnf.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/lv_extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/lv_extra.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/lv_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/lv_extra.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/others/lv_others.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/others/lv_others.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/others/monkey/lv_monkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/others/monkey/lv_monkey.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/others/monkey/lv_monkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/others/monkey/lv_monkey.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/themes/lv_themes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/themes/lv_themes.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/chart/lv_chart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/chart/lv_chart.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/chart/lv_chart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/chart/lv_chart.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/imgbtn/lv_imgbtn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/imgbtn/lv_imgbtn.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/imgbtn/lv_imgbtn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/imgbtn/lv_imgbtn.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/led/lv_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/led/lv_led.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/led/lv_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/led/lv_led.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/list/lv_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/list/lv_list.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/list/lv_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/list/lv_list.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/lv_widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/lv_widgets.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/menu/lv_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/menu/lv_menu.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/menu/lv_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/menu/lv_menu.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/meter/lv_meter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/meter/lv_meter.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/meter/lv_meter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/meter/lv_meter.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/msgbox/lv_msgbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/msgbox/lv_msgbox.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/msgbox/lv_msgbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/msgbox/lv_msgbox.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/span/lv_span.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/span/lv_span.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/span/lv_span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/span/lv_span.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/win/lv_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/win/lv_win.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/win/lv_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/extra/widgets/win/lv_win.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/korean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/korean.ttf -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font.mk -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_fmt_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_fmt_txt.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_fmt_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_fmt_txt.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_loader.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_loader.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_10.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_12.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_14.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_16.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_18.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_18.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_20.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_22.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_22.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_24.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_26.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_26.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_28.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_28.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_30.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_32.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_34.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_34.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_36.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_36.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_38.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_38.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_40.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_42.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_42.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_44.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_44.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_46.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_46.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_48.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_montserrat_8.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_simsun_16_cjk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_simsun_16_cjk.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_unscii_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_unscii_16.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_unscii_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_font_unscii_8.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_symbol_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/font/lv_symbol_def.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/gpu/lv_gpu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/gpu/lv_gpu.mk -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/hal/lv_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/hal/lv_hal.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/hal/lv_hal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/hal/lv_hal.mk -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/hal/lv_hal_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/hal/lv_hal_disp.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/hal/lv_hal_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/hal/lv_hal_disp.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/hal/lv_hal_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/hal/lv_hal_indev.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/hal/lv_hal_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/hal/lv_hal_indev.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/hal/lv_hal_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/hal/lv_hal_tick.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/hal/lv_hal_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/hal/lv_hal_tick.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/lv_api_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/lv_api_map.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/lv_conf_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/lv_conf_internal.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/lv_conf_kconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/lv_conf_kconfig.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/lvgl.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_anim.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_anim.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_anim_timeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_anim_timeline.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_anim_timeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_anim_timeline.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_area.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_area.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_area.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_assert.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_async.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_async.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_bidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_bidi.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_bidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_bidi.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_color.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_color.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_fs.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_fs.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_gc.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_gc.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_ll.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_ll.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_log.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_log.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_lru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_lru.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_lru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_lru.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_math.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_math.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_mem.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_mem.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_misc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_misc.mk -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_printf.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_printf.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_style.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_style.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_style_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_style_gen.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_style_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_style_gen.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_templ.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_templ.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_timer.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_timer.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_tlsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_tlsf.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_tlsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_tlsf.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_txt.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_txt.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_txt_ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_txt_ap.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_txt_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_txt_ap.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_types.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_utils.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/misc/lv_utils.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_arc.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_arc.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_bar.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_bar.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_btn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_btn.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_btn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_btn.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_btnmatrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_btnmatrix.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_btnmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_btnmatrix.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_canvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_canvas.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_canvas.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_checkbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_checkbox.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_checkbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_checkbox.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_dropdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_dropdown.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_dropdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_dropdown.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_img.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_img.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_label.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_label.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_line.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_line.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_objx_templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_objx_templ.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_objx_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_objx_templ.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_roller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_roller.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_roller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_roller.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_slider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_slider.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_slider.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_switch.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_switch.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_table.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_table.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_textarea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_textarea.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_textarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_textarea.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_widgets.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/GUI/lvgl/src/widgets/lv_widgets.mk -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/HARDWARE/INA226/INA226.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/HARDWARE/INA226/INA226.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/HARDWARE/INA226/INA226.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/HARDWARE/INA226/INA226.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/HARDWARE/INA226/myiic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/HARDWARE/INA226/myiic.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/HARDWARE/INA226/myiic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/HARDWARE/INA226/myiic.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/HARDWARE/InternalFlash/bsp_internalFlash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/HARDWARE/InternalFlash/bsp_internalFlash.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/HARDWARE/InternalFlash/bsp_internalFlash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/HARDWARE/InternalFlash/bsp_internalFlash.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/HARDWARE/KEY/bsp_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/HARDWARE/KEY/bsp_exti.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/HARDWARE/KEY/bsp_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/HARDWARE/KEY/bsp_exti.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/HARDWARE/OLED/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/HARDWARE/OLED/bmp.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/HARDWARE/OLED/oled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/HARDWARE/OLED/oled.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/HARDWARE/OLED/oled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/HARDWARE/OLED/oled.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/HARDWARE/OLED/oledfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/HARDWARE/OLED/oledfont.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/MDK-ARM/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/MDK-ARM/EventRecorderStub.scvd -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/MDK-ARM/Mini-Monitor.uvguix.ChenJH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/MDK-ARM/Mini-Monitor.uvguix.ChenJH -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/MDK-ARM/Mini-Monitor.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/MDK-ARM/Mini-Monitor.uvoptx -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/MDK-ARM/Mini-Monitor.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/MDK-ARM/Mini-Monitor.uvprojx -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/MDK-ARM/Mini-Monitor/Mini-Monitor.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/MDK-ARM/Mini-Monitor/Mini-Monitor.hex -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/MDK-ARM/RTE/_Mini-Monitor/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/MDK-ARM/RTE/_Mini-Monitor/RTE_Components.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/MDK-ARM/startup_stm32f401xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/MDK-ARM/startup_stm32f401xc.s -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/Mini-Monitor.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/Mini-Monitor.ioc -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/SYSTEM/delay/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/SYSTEM/delay/delay.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/SYSTEM/delay/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/SYSTEM/delay/delay.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/SYSTEM/sys/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/SYSTEM/sys/sys.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/SYSTEM/sys/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/SYSTEM/sys/sys.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/USB_DEVICE/App/usb_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/USB_DEVICE/App/usb_device.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/USB_DEVICE/App/usb_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/USB_DEVICE/App/usb_device.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/USB_DEVICE/App/usbd_cdc_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/USB_DEVICE/App/usbd_cdc_if.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/USB_DEVICE/App/usbd_cdc_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/USB_DEVICE/App/usbd_cdc_if.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/USB_DEVICE/App/usbd_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/USB_DEVICE/App/usbd_desc.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/USB_DEVICE/App/usbd_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/USB_DEVICE/App/usbd_desc.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/USB_DEVICE/Target/usbd_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/USB_DEVICE/Target/usbd_conf.c -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/USB_DEVICE/Target/usbd_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/USB_DEVICE/Target/usbd_conf.h -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/keilkilll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/keilkilll.bat -------------------------------------------------------------------------------- /01_Software/Mini-Monitor__with_lvgl/lvgl-8.2.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/Mini-Monitor__with_lvgl/lvgl-8.2.0.zip -------------------------------------------------------------------------------- /01_Software/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/01_Software/README.md -------------------------------------------------------------------------------- /02_Datasheet/OLED/CH1115 驱动手册.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/02_Datasheet/OLED/CH1115 驱动手册.pdf -------------------------------------------------------------------------------- /02_Datasheet/OLED/P39403 SPI Application Notes X01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/02_Datasheet/OLED/P39403 SPI Application Notes X01.pdf -------------------------------------------------------------------------------- /02_Datasheet/OLED/焊接式-裸屏规格书ZJYM130-CH1115.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/02_Datasheet/OLED/焊接式-裸屏规格书ZJYM130-CH1115.pdf -------------------------------------------------------------------------------- /02_Datasheet/STM32F401CCU6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/02_Datasheet/STM32F401CCU6.pdf -------------------------------------------------------------------------------- /02_Datasheet/ina226.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/02_Datasheet/ina226.pdf -------------------------------------------------------------------------------- /03_3D_Model/M壳-上.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/03_3D_Model/M壳-上.STL -------------------------------------------------------------------------------- /03_3D_Model/M壳-下.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/03_3D_Model/M壳-下.STL -------------------------------------------------------------------------------- /04_Images/photograph/IMG_3699.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/04_Images/photograph/IMG_3699.JPG -------------------------------------------------------------------------------- /04_Images/photograph/IMG_3701.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/04_Images/photograph/IMG_3701.JPG -------------------------------------------------------------------------------- /04_Images/photograph/IMG_3709.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/04_Images/photograph/IMG_3709.JPG -------------------------------------------------------------------------------- /04_Images/photograph/IMG_3772.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/04_Images/photograph/IMG_3772.JPG -------------------------------------------------------------------------------- /04_Images/photograph/IMG_3781.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/04_Images/photograph/IMG_3781.JPG -------------------------------------------------------------------------------- /04_Images/photograph/IMG_3813.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/04_Images/photograph/IMG_3813.JPG -------------------------------------------------------------------------------- /04_Images/rendergraph/GEN_1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/04_Images/rendergraph/GEN_1.JPG -------------------------------------------------------------------------------- /04_Images/rendergraph/GEN_10.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/04_Images/rendergraph/GEN_10.JPG -------------------------------------------------------------------------------- /04_Images/rendergraph/GEN_11.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/04_Images/rendergraph/GEN_11.JPG -------------------------------------------------------------------------------- /04_Images/rendergraph/GEN_2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/04_Images/rendergraph/GEN_2.JPG -------------------------------------------------------------------------------- /04_Images/rendergraph/GEN_3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/04_Images/rendergraph/GEN_3.JPG -------------------------------------------------------------------------------- /04_Images/rendergraph/GEN_4.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/04_Images/rendergraph/GEN_4.JPG -------------------------------------------------------------------------------- /04_Images/rendergraph/GEN_5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/04_Images/rendergraph/GEN_5.JPG -------------------------------------------------------------------------------- /04_Images/rendergraph/GEN_6.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/04_Images/rendergraph/GEN_6.JPG -------------------------------------------------------------------------------- /04_Images/rendergraph/GEN_7.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/04_Images/rendergraph/GEN_7.JPG -------------------------------------------------------------------------------- /04_Images/rendergraph/GEN_8.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/04_Images/rendergraph/GEN_8.JPG -------------------------------------------------------------------------------- /04_Images/rendergraph/GEN_9.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/04_Images/rendergraph/GEN_9.JPG -------------------------------------------------------------------------------- /05_Video/自制一个迷你电流表.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/05_Video/自制一个迷你电流表.url -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Jihang/Mini-Monitor/HEAD/README.md --------------------------------------------------------------------------------