:6.86MB : :1 :2022-10-11 14:32:02
lvgl 模拟器如果开发者对于本文件有需要的可以参考。
基于qt的lvgl模拟实例程序
.
└── pc_simulator
├── Dockerfile
├── README.md
├── interface
│ ├── interface.c
│ ├── interface.h
│ ├── page_home.c
│ ├── page_home.h
│ ├── page_setup.c
│ ├── page_setup.h
│ ├── ui_common.c
│ ├── ui_common.h
│ ├── ui_header.h
│ ├── ui_language.c
│ ├── ui_language.h
│ ├── widget_menu.c
│ ├── widget_menu.h
│ ├── widget_prepare.c
│ ├── widget_prepare.h
│ ├── widget_print.c
│ └── widget_print.h
├── licence.txt
├── lvgl
│ ├── CHANGELOG.md
│ ├── LICENCE.txt
│ ├── README.md
│ ├── docs
│ │ ├── CODING_STYLE.md
│ │ ├── CONTRIBUTING.md
│ │ └── ROADMAP.md
│ ├── examples
│ │ └── 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
│ ├── lv_conf_template.h
│ ├── lvgl.h
│ ├── lvgl.mk
│ └── src
│ ├── lv_api_map.h
│ ├── lv_conf_internal.h
│ ├── lv_conf_kconfig.h
│ ├── lv_core
│ │ ├── lv_core.mk
│ │ ├── lv_disp.c
│ │ ├── lv_disp.h
│ │ ├── lv_group.c
│ │ ├── lv_group.h
│ │ ├── lv_indev.c
│ │ ├── lv_indev.h
│ │ ├── lv_obj.c
│ │ ├── lv_obj.h
│ │ ├── lv_obj_style_dec.h
│ │ ├── lv_refr.c
│ │ ├── lv_refr.h
│ │ ├── lv_style.c
│ │ └── lv_style.h
│ ├── lv_draw
│ │ ├── lv_draw.h
│ │ ├── lv_draw.mk
│ │ ├── lv_draw_arc.c
│ │ ├── lv_draw_arc.h
│ │ ├── lv_draw_blend.c
│ │ ├── lv_draw_blend.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
│ ├── lv_font
│ │ ├── 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
│ ├── lv_gpu
│ │ ├── lv_gpu.mk
│ │ ├── lv_gpu_nxp_pxp.c
│ │ ├── lv_gpu_nxp_pxp.h
│ │ ├── lv_gpu_nxp_pxp_osa.c
│ │ ├── lv_gpu_nxp_pxp_osa.h
│ │ ├── lv_gpu_nxp_vglite.c
│ │ ├── lv_gpu_nxp_vglite.h
│ │ ├── lv_gpu_stm32_dma2d.c
│ │ └── lv_gpu_stm32_dma2d.h
│ ├── lv_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_misc
│ │ ├── lv_anim.c
│ │ ├── lv_anim.h
│ │ ├── lv_area.c
│ │ ├── lv_area.h
│ │ ├── lv_async.c
│ │ ├── lv_async.h
│ │ ├── lv_bidi.c
│ │ ├── lv_bidi.h
│ │ ├── lv_color.c
│ │ ├── lv_color.h
│ │ ├── lv_debug.c
│ │ ├── lv_debug.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_math.c
│ │ ├── lv_math.h
│ │ ├── lv_mem.c
│ │ ├── lv_mem.h
│ │ ├── lv_misc.mk
│ │ ├── lv_printf.c
│ │ ├── lv_printf.h
│ │ ├── lv_task.c
│ │ ├── lv_task.h
│ │ ├── lv_templ.c
│ │ ├── lv_templ.h
│ │ ├── lv_txt.c
│ │ ├── lv_txt.h
│ │ ├── lv_txt_ap.c
│ │ ├── lv_txt_ap.h
│ │ ├── lv_types.h
│ │ ├── lv_utils.c
│ │ └── lv_utils.h
│ ├── lv_themes
│ │ ├── lv_theme.c
│ │ ├── lv_theme.h
│ │ ├── lv_theme_empty.c
│ │ ├── lv_theme_empty.h
│ │ ├── lv_theme_material.c
│ │ ├── lv_theme_material.h
│ │ ├── lv_theme_mono.c
│ │ ├── lv_theme_mono.h
│ │ ├── lv_theme_template.c
│ │ ├── lv_theme_template.h
│ │ └── lv_themes.mk
│ ├── lv_widgets
│ │ ├── lv_anim_img.c
│ │ ├── lv_anim_img.h
│ │ ├── 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_calendar.c
│ │ ├── lv_calendar.h
│ │ ├── lv_canvas.c
│ │ ├── lv_canvas.h
│ │ ├── lv_chart.c
│ │ ├── lv_chart.h
│ │ ├── lv_checkbox.c
│ │ ├── lv_checkbox.h
│ │ ├── lv_cont.c
│ │ ├── lv_cont.h
│ │ ├── lv_cpicker.c
│ │ ├── lv_cpicker.h
│ │ ├── lv_dropdown.c
│ │ ├── lv_dropdown.h
│ │ ├── lv_gauge.c
│ │ ├── lv_gauge.h
│ │ ├── lv_img.c
│ │ ├── lv_img.h
│ │ ├── lv_imgbtn.c
│ │ ├── lv_imgbtn.h
│ │ ├── lv_keyboard.c
│ │ ├── lv_keyboard.h
│ │ ├── lv_label.c
│ │ ├── lv_label.h
│ │ ├── lv_led.c
│ │ ├── lv_led.h
│ │ ├── lv_line.c
│ │ ├── lv_line.h
│ │ ├── lv_linemeter.c
│ │ ├── lv_linemeter.h
│ │ ├── lv_list.c
│ │ ├── lv_list.h
│ │ ├── lv_msgbox.c
│ │ ├── lv_msgbox.h
│ │ ├── lv_objmask.c
│ │ ├── lv_objmask.h
│ │ ├── lv_objx_templ.c
│ │ ├── lv_objx_templ.h
│ │ ├── lv_page.c
│ │ ├── lv_page.h
│ │ ├── lv_roller.c
│ │ ├── lv_roller.h
│ │ ├── lv_slider.c
│ │ ├── lv_slider.h
│ │ ├── lv_spinbox.c
│ │ ├── lv_spinbox.h
│ │ ├── lv_spinner.c
│ │ ├── lv_spinner.h
│ │ ├── lv_switch.c
│ │ ├── lv_switch.h
│ │ ├── lv_table.c
│ │ ├── lv_table.h
│ │ ├── lv_tabview.c
│ │ ├── lv_tabview.h
│ │ ├── lv_textarea.c
│ │ ├── lv_textarea.h
│ │ ├── lv_tileview.c
│ │ ├── lv_tileview.h
│ │ ├── lv_widgets.mk
│ │ ├── lv_win.c
│ │ └── lv_win.h
│ └── lvgl.h
├── lvgl-simulator
│ ├── README.md
│ ├── SDL2
│ │ ├── i686-w64-mingw32
│ │ │ ├── bin
│ │ │ │ ├── SDL2.dll
│ │ │ │ └── sdl2-config
│ │ │ ├── include
│ │ │ │ └── SDL2
│ │ │ │ ├── SDL.h
│ │ │ │ ├── SDL_assert.h
│ │ │ │ ├── SDL_atomic.h
│ │ │ │ ├── SDL_audio.h
│ │ │ │ ├── SDL_bits.h
│ │ │ │ ├── SDL_blendmode.h
│ │ │ │ ├── SDL_clipboard.h
│ │ │ │ ├── SDL_config.h
│ │ │ │ ├── SDL_cpuinfo.h
│ │ │ │ ├── SDL_egl.h
│ │ │ │ ├── SDL_endian.h
│ │ │ │ ├── SDL_error.h
│ │ │ │ ├── SDL_events.h
│ │ │ │ ├── SDL_filesystem.h
│ │ │ │ ├── SDL_gamecontroller.h
│ │ │ │ ├── SDL_gesture.h
│ │ │ │ ├── SDL_haptic.h
│ │ │ │ ├── SDL_hints.h
│ │ │ │ ├── SDL_joystick.h
│ │ │ │ ├── SDL_keyboard.h
│ │ │ │ ├── SDL_keycode.h
│ │ │ │ ├── SDL_loadso.h
│ │ │ │ ├── SDL_log.h
│ │ │ │ ├── SDL_main.h
│ │ │ │ ├── SDL_messagebox.h
│ │ │ │ ├── SDL_metal.h
│ │ │ │ ├── SDL_mouse.h
│ │ │ │ ├── SDL_mutex.h
│ │ │ │ ├── SDL_name.h
│ │ │ │ ├── SDL_opengl.h
│ │ │ │ ├── SDL_opengl_glext.h
│ │ │ │ ├── SDL_opengles.h
│ │ │ │ ├── SDL_opengles2.h
│ │ │ │ ├── SDL_opengles2_gl2.h
│ │ │ │ ├── SDL_opengles2_gl2ext.h
│ │ │ │ ├── SDL_opengles2_gl2platform.h
│ │ │ │ ├── SDL_opengles2_khrplatform.h
│ │ │ │ ├── SDL_pixels.h
│ │ │ │ ├── SDL_platform.h
│ │ │ │ ├── SDL_power.h
│ │ │ │ ├── SDL_quit.h
│ │ │ │ ├── SDL_rect.h
│ │ │ │ ├── SDL_render.h
│ │ │ │ ├── SDL_revision.h
│ │ │ │ ├── SDL_rwops.h
│ │ │ │ ├── SDL_scancode.h
│ │ │ │ ├── SDL_sensor.h
│ │ │ │ ├── SDL_shape.h
│ │ │ │ ├── SDL_stdinc.h
│ │ │ │ ├── SDL_surface.h
│ │ │ │ ├── SDL_system.h
│ │ │ │ ├── SDL_syswm.h
│ │ │ │ ├── SDL_test.h
│ │ │ │ ├── SDL_test_assert.h
│ │ │ │ ├── SDL_test_common.h
│ │ │ │ ├── SDL_test_compare.h
│ │ │ │ ├── SDL_test_crc32.h
│ │ │ │ ├── SDL_test_font.h
│ │ │ │ ├── SDL_test_fuzzer.h
│ │ │ │ ├── SDL_test_harness.h
│ │ │ │ ├── SDL_test_images.h
│ │ │ │ ├── SDL_test_log.h
│ │ │ │ ├── SDL_test_md5.h
│ │ │ │ ├── SDL_test_memory.h
│ │ │ │ ├── SDL_test_random.h
│ │ │ │ ├── SDL_thread.h
│ │ │ │ ├── SDL_timer.h
│ │ │ │ ├── SDL_touch.h
│ │ │ │ ├── SDL_types.h
│ │ │ │ ├── SDL_version.h
│ │ │ │ ├── SDL_video.h
│ │ │ │ ├── SDL_vulkan.h
│ │ │ │ ├── begin_code.h
│ │ │ │ └── close_code.h
│ │ │ ├── lib
│ │ │ │ ├── cmake
│ │ │ │ │ └── SDL2
│ │ │ │ │ ├── sdl2-config-version.cmake
│ │ │ │ │ └── sdl2-config.cmake
│ │ │ │ ├── libSDL2.a
│ │ │ │ ├── libSDL2.dll.a
│ │ │ │ ├── libSDL2.la
│ │ │ │ ├── libSDL2_test.a
│ │ │ │ ├── libSDL2_test.la
│ │ │ │ ├── libSDL2main.a
│ │ │ │ ├── libSDL2main.la
│ │ │ │ └── pkgconfig
│ │ │ │ └── sdl2.pc
│ │ │ └── share
│ │ │ └── aclocal
│ │ │ └── sdl2.m4
│ │ ├── include
│ │ │ └── SDL2
│ │ │ ├── SDL.h
│ │ │ ├── SDL_assert.h
│ │ │ ├── SDL_atomic.h
│ │ │ ├── SDL_audio.h
│ │ │ ├── SDL_bits.h
│ │ │ ├── SDL_blendmode.h
│ │ │ ├── SDL_clipboard.h
│ │ │ ├── SDL_config.h
│ │ │ ├── SDL_cpuinfo.h
│ │ │ ├── SDL_egl.h
│ │ │ ├── SDL_endian.h
│ │ │ ├── SDL_error.h
│ │ │ ├── SDL_events.h
│ │ │ ├── SDL_filesystem.h
│ │ │ ├── SDL_gamecontroller.h
│ │ │ ├── SDL_gesture.h
│ │ │ ├── SDL_haptic.h
│ │ │ ├── SDL_hints.h
│ │ │ ├── SDL_joystick.h
│ │ │ ├── SDL_keyboard.h
│ │ │ ├── SDL_keycode.h
│ │ │ ├── SDL_loadso.h
│ │ │ ├── SDL_log.h
│ │ │ ├── SDL_main.h
│ │ │ ├── SDL_messagebox.h
│ │ │ ├── SDL_metal.h
│ │ │ ├── SDL_mouse.h
│ │ │ ├── SDL_mutex.h
│ │ │ ├── SDL_name.h
│ │ │ ├── SDL_opengl.h
│ │ │ ├── SDL_opengl_glext.h
│ │ │ ├── SDL_opengles.h
│ │ │ ├── SDL_opengles2.h
│ │ │ ├── SDL_opengles2_gl2.h
│ │ │ ├── SDL_opengles2_gl2ext.h
│ │ │ ├── SDL_opengles2_gl2platform.h
│ │ │ ├── SDL_opengles2_khrplatform.h
│ │ │ ├── SDL_pixels.h
│ │ │ ├── SDL_platform.h
│ │ │ ├── SDL_power.h
│ │ │ ├── SDL_quit.h
│ │ │ ├── SDL_rect.h
│ │ │ ├── SDL_render.h
│ │ │ ├── SDL_revision.h
│ │ │ ├── SDL_rwops.h
│ │ │ ├── SDL_scancode.h
│ │ │ ├── SDL_sensor.h
│ │ │ ├── SDL_shape.h
│ │ │ ├── SDL_stdinc.h
│ │ │ ├── SDL_surface.h
│ │ │ ├── SDL_system.h
│ │ │ ├── SDL_syswm.h
│ │ │ ├── SDL_test.h
│ │ │ ├── SDL_test_assert.h
│ │ │ ├── SDL_test_common.h
│ │ │ ├── SDL_test_compare.h
│ │ │ ├── SDL_test_crc32.h
│ │ │ ├── SDL_test_font.h
│ │ │ ├── SDL_test_fuzzer.h
│ │ │ ├── SDL_test_harness.h
│ │ │ ├── SDL_test_images.h
│ │ │ ├── SDL_test_log.h
│ │ │ ├── SDL_test_md5.h
│ │ │ ├── SDL_test_memory.h
│ │ │ ├── SDL_test_random.h
│ │ │ ├── SDL_thread.h
│ │ │ ├── SDL_timer.h
│ │ │ ├── SDL_touch.h
│ │ │ ├── SDL_types.h
│ │ │ ├── SDL_version.h
│ │ │ ├── SDL_video.h
│ │ │ ├── SDL_vulkan.h
│ │ │ ├── begin_code.h
│ │ │ └── close_code.h
│ │ ├── lib
│ │ │ └── SDL2.dll
│ │ └── x86_64-w64-mingw32
│ │ ├── bin
│ │ │ ├── SDL2.dll
│ │ │ └── sdl2-config
│ │ ├── include
│ │ │ └── SDL2
│ │ │ ├── SDL.h
│ │ │ ├── SDL_assert.h
│ │ │ ├── SDL_atomic.h
│ │ │ ├── SDL_audio.h
│ │ │ ├── SDL_bits.h
│ │ │ ├── SDL_blendmode.h
│ │ │ ├── SDL_clipboard.h
│ │ │ ├── SDL_config.h
│ │ │ ├── SDL_cpuinfo.h
│ │ │ ├── SDL_egl.h
│ │ │ ├── SDL_endian.h
│ │ │ ├── SDL_error.h
│ │ │ ├── SDL_events.h
│ │ │ ├── SDL_filesystem.h
│ │ │ ├── SDL_gamecontroller.h
│ │ │ ├── SDL_gesture.h
│ │ │ ├── SDL_haptic.h
│ │ │ ├── SDL_hints.h
│ │ │ ├── SDL_joystick.h
│ │ │ ├── SDL_keyboard.h
│ │ │ ├── SDL_keycode.h
│ │ │ ├── SDL_loadso.h
│ │ │ ├── SDL_log.h
│ │ │ ├── SDL_main.h
│ │ │ ├── SDL_messagebox.h
│ │ │ ├── SDL_metal.h
│ │ │ ├── SDL_mouse.h
│ │ │ ├── SDL_mutex.h
│ │ │ ├── SDL_name.h
│ │ │ ├── SDL_opengl.h
│ │ │ ├── SDL_opengl_glext.h
│ │ │ ├── SDL_opengles.h
│ │ │ ├── SDL_opengles2.h
│ │ │ ├── SDL_opengles2_gl2.h
│ │ │ ├── SDL_opengles2_gl2ext.h
│ │ │ ├── SDL_opengles2_gl2platform.h
│ │ │ ├── SDL_opengles2_khrplatform.h
│ │ │ ├── SDL_pixels.h
│ │ │ ├── SDL_platform.h
│ │ │ ├── SDL_power.h
│ │ │ ├── SDL_quit.h
│ │ │ ├── SDL_rect.h
│ │ │ ├── SDL_render.h
│ │ │ ├── SDL_revision.h
│ │ │ ├── SDL_rwops.h
│ │ │ ├── SDL_scancode.h
│ │ │ ├── SDL_sensor.h
│ │ │ ├── SDL_shape.h
│ │ │ ├── SDL_stdinc.h
│ │ │ ├── SDL_surface.h
│ │ │ ├── SDL_system.h
│ │ │ ├── SDL_syswm.h
│ │ │ ├── SDL_test.h
│ │ │ ├── SDL_test_assert.h
│ │ │ ├── SDL_test_common.h
│ │ │ ├── SDL_test_compare.h
│ │ │ ├── SDL_test_crc32.h
│ │ │ ├── SDL_test_font.h
│ │ │ ├── SDL_test_fuzzer.h
│ │ │ ├── SDL_test_harness.h
│ │ │ ├── SDL_test_images.h
│ │ │ ├── SDL_test_log.h
│ │ │ ├── SDL_test_md5.h
│ │ │ ├── SDL_test_memory.h
│ │ │ ├── SDL_test_random.h
│ │ │ ├── SDL_thread.h
│ │ │ ├── SDL_timer.h
│ │ │ ├── SDL_touch.h
│ │ │ ├── SDL_types.h
│ │ │ ├── SDL_version.h
│ │ │ ├── SDL_video.h
│ │ │ ├── SDL_vulkan.h
│ │ │ ├── begin_code.h
│ │ │ └── close_code.h
│ │ ├── lib
│ │ │ ├── cmake
│ │ │ │ └── SDL2
│ │ │ │ ├── sdl2-config-version.cmake
│ │ │ │ └── sdl2-config.cmake
│ │ │ ├── libSDL2.a
│ │ │ ├── libSDL2.dll.a
│ │ │ ├── libSDL2.la
│ │ │ ├── libSDL2_test.a
│ │ │ ├── libSDL2_test.la
│ │ │ ├── libSDL2main.a
│ │ │ ├── libSDL2main.la
│ │ │ └── pkgconfig
│ │ │ └── sdl2.pc
│ │ └── share
│ │ └── aclocal
│ │ └── sdl2.m4
│ ├── build
│ │ ├── bin
│ │ │ └── simulator.exe
│ │ └── object
│ │ ├── FT5406EE8.d
│ │ ├── R61581.d
│ │ ├── SHARP_MIP.d
│ │ ├── SSD1963.d
│ │ ├── ST7565.d
│ │ ├── UC1610.d
│ │ ├── XPT2046.d
│ │ ├── evdev.d
│ │ ├── fbdev.d
│ │ ├── generated
│ │ │ ├── _bright_alpha_24x24.d
│ │ │ ├── _btn2_alpha_115x140.d
│ │ │ ├── _btn2_alpha_85x100.d
│ │ │ ├── _btn3_alpha_115x140.d
│ │ │ ├── _btn3_alpha_85x100.d
│ │ │ ├── _btn4_alpha_115x140.d
│ │ │ ├── _btn4_alpha_85x100.d
│ │ │ ├── _btn_bg_1_alpha_85x100.d
│ │ │ ├── _cloud_alpha_55x40.d
│ │ │ ├── _copy_alpha_29x29.d
│ │ │ ├── _eco_alpha_21x21.d
│ │ │ ├── _example_alpha_250x150.d
│ │ │ ├── _example_alpha_300x172.d
│ │ │ ├── _hue_alpha_21x21.d
│ │ │ ├── _internet_alpha_30x30.d
│ │ │ ├── _mobile_alpha_30x30.d
│ │ │ ├── _no_internet_alpha_25x25.d
│ │ │ ├── _pc_alpha_21x21.d
│ │ │ ├── _phone_alpha_45x55.d
│ │ │ ├── _print_alpha_29x29.d
│ │ │ ├── _printer2_alpha_60x55.d
│ │ │ ├── _ready_alpha_100x100.d
│ │ │ ├── _scan_alpha_29x29.d
│ │ │ ├── _setup_alpha_29x29.d
│ │ │ ├── _tel_alpha_21x21.d
│ │ │ ├── _usb_alpha_30x30.d
│ │ │ ├── _wave_alpha_25x25.d
│ │ │ ├── _wifi_alpha_29x19.d
│ │ │ ├── custom.d
│ │ │ ├── events_init.d
│ │ │ ├── gui_guider.d
│ │ │ ├── lv_font_simsun_12.d
│ │ │ ├── lv_font_simsun_14.d
│ │ │ ├── lv_font_simsun_16.d
│ │ │ ├── lv_font_simsun_18.d
│ │ │ ├── lv_font_simsun_20.d
│ │ │ ├── lv_font_simsun_22.d
│ │ │ ├── setup_scr_copyhome.d
│ │ │ ├── setup_scr_copynext.d
│ │ │ ├── setup_scr_home.d
│ │ │ ├── setup_scr_loader.d
│ │ │ ├── setup_scr_printit.d
│ │ │ ├── setup_scr_prthome.d
│ │ │ ├── setup_scr_prtmb.d
│ │ │ ├── setup_scr_prtusb.d
│ │ │ ├── setup_scr_saved.d
│ │ │ ├── setup_scr_scanhome.d
│ │ │ └── setup_scr_setup.d
│ │ ├── icon.d
│ │ ├── keyboard.d
│ │ ├── libinput.d
│ │ ├── lv_anim.d
│ │ ├── lv_anim_img.d
│ │ ├── lv_arc.d
│ │ ├── lv_area.d
│ │ ├── lv_async.d
│ │ ├── lv_bar.d
│ │ ├── lv_bidi.d
│ │ ├── lv_btn.d
│ │ ├── lv_btnmatrix.d
│ │ ├── lv_calendar.d
│ │ ├── lv_canvas.d
│ │ ├── lv_chart.d
│ │ ├── lv_checkbox.d
│ │ ├── lv_color.d
│ │ ├── lv_cont.d
│ │ ├── lv_cpicker.d
│ │ ├── lv_debug.d
│ │ ├── lv_disp.d
│ │ ├── lv_draw_arc.d
│ │ ├── lv_draw_blend.d
│ │ ├── lv_draw_img.d
│ │ ├── lv_draw_label.d
│ │ ├── lv_draw_line.d
│ │ ├── lv_draw_mask.d
│ │ ├── lv_draw_rect.d
│ │ ├── lv_draw_triangle.d
│ │ ├── lv_dropdown.d
│ │ ├── lv_font.d
│ │ ├── lv_font_dejavu_16_persian_hebrew.d
│ │ ├── lv_font_fmt_txt.d
│ │ ├── lv_font_loader.d
│ │ ├── lv_font_montserrat_10.d
│ │ ├── lv_font_montserrat_12.d
│ │ ├── lv_font_montserrat_12_subpx.d
│ │ ├── lv_font_montserrat_14.d
│ │ ├── lv_font_montserrat_16.d
│ │ ├── lv_font_montserrat_18.d
│ │ ├── lv_font_montserrat_20.d
│ │ ├── lv_font_montserrat_22.d
│ │ ├── lv_font_montserrat_24.d
│ │ ├── lv_font_montserrat_26.d
│ │ ├── lv_font_montserrat_28.d
│ │ ├── lv_font_montserrat_28_compressed.d
│ │ ├── lv_font_montserrat_30.d
│ │ ├── lv_font_montserrat_32.d
│ │ ├── lv_font_montserrat_34.d
│ │ ├── lv_font_montserrat_36.d
│ │ ├── lv_font_montserrat_38.d
│ │ ├── lv_font_montserrat_40.d
│ │ ├── lv_font_montserrat_42.d
│ │ ├── lv_font_montserrat_44.d
│ │ ├── lv_font_montserrat_46.d
│ │ ├── lv_font_montserrat_48.d
│ │ ├── lv_font_montserrat_8.d
│ │ ├── lv_font_simsun_16_cjk.d
│ │ ├── lv_font_unscii_16.d
│ │ ├── lv_font_unscii_8.d
│ │ ├── lv_fs.d
│ │ ├── lv_gauge.d
│ │ ├── lv_gc.d
│ │ ├── lv_gpu_stm32_dma2d.d
│ │ ├── lv_group.d
│ │ ├── lv_hal_disp.d
│ │ ├── lv_hal_indev.d
│ │ ├── lv_hal_tick.d
│ │ ├── lv_img.d
│ │ ├── lv_img_buf.d
│ │ ├── lv_img_cache.d
│ │ ├── lv_img_decoder.d
│ │ ├── lv_imgbtn.d
│ │ ├── lv_indev.d
│ │ ├── lv_keyboard.d
│ │ ├── lv_label.d
│ │ ├── lv_led.d
│ │ ├── lv_line.d
│ │ ├── lv_linemeter.d
│ │ ├── lv_list.d
│ │ ├── lv_ll.d
│ │ ├── lv_log.d
│ │ ├── lv_math.d
│ │ ├── lv_mem.d
│ │ ├── lv_msgbox.d
│ │ ├── lv_obj.d
│ │ ├── lv_objmask.d
│ │ ├── lv_page.d
│ │ ├── lv_printf.d
│ │ ├── lv_refr.d
│ │ ├── lv_roller.d
│ │ ├── lv_slider.d
│ │ ├── lv_spinbox.d
│ │ ├── lv_spinner.d
│ │ ├── lv_style.d
│ │ ├── lv_switch.d
│ │ ├── lv_table.d
│ │ ├── lv_tabview.d
│ │ ├── lv_task.d
│ │ ├── lv_textarea.d
│ │ ├── lv_theme.d
│ │ ├── lv_theme_empty.d
│ │ ├── lv_theme_material.d
│ │ ├── lv_theme_mono.d
│ │ ├── lv_theme_template.d
│ │ ├── lv_tileview.d
│ │ ├── lv_txt.d
│ │ ├── lv_txt_ap.d
│ │ ├── lv_utils.d
│ │ ├── lv_win.d
│ │ ├── main.d
│ │ ├── monitor.d
│ │ ├── mouse.d
│ │ ├── mousewheel.d
│ │ └── win_drv.d
│ ├── licence.txt
│ ├── lv_conf.h
│ ├── lv_drivers
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── display
│ │ │ ├── R61581.c
│ │ │ ├── R61581.h
│ │ │ ├── SHARP_MIP.c
│ │ │ ├── SHARP_MIP.h
│ │ │ ├── SSD1963.c
│ │ │ ├── SSD1963.h
│ │ │ ├── ST7565.c
│ │ │ ├── ST7565.h
│ │ │ ├── UC1610.c
│ │ │ ├── UC1610.h
│ │ │ ├── display.mk
│ │ │ ├── fbdev.c
│ │ │ ├── fbdev.h
│ │ │ ├── icon.c
│ │ │ ├── monitor.c
│ │ │ ├── monitor.h
│ │ │ └── pro_name.h
│ │ ├── docs
│ │ │ ├── astyle_c
│ │ │ └── astyle_h
│ │ ├── indev
│ │ │ ├── AD_touch.c
│ │ │ ├── AD_touch.h
│ │ │ ├── FT5406EE8.c
│ │ │ ├── FT5406EE8.h
│ │ │ ├── XPT2046.c
│ │ │ ├── XPT2046.h
│ │ │ ├── evdev.c
│ │ │ ├── evdev.h
│ │ │ ├── indev.mk
│ │ │ ├── keyboard.c
│ │ │ ├── keyboard.h
│ │ │ ├── libinput.c
│ │ │ ├── libinput_drv.h
│ │ │ ├── mouse.c
│ │ │ ├── mouse.h
│ │ │ ├── mousewheel.c
│ │ │ └── mousewheel.h
│ │ ├── library.json
│ │ ├── lv_drivers.mk
│ │ ├── lv_drv_conf_templ.h
│ │ ├── win_drv.c
│ │ └── win_drv.h
│ ├── lv_drv_conf.h
│ ├── lv_ex_conf.h
│ └── main.c
├── pc_sim.pro
├── pc_sim.pro.user
└── resource
├── fonts
├── imgs
└── source
52 directories, 722 files
02-16jsd模块控制模拟器网页填表
02-15模拟器中控游戏基础脚本上添加了云控端
02-04木鱼模拟器一个简单的代码
10-19freeRTOS的VSCODE模拟器
10-08lvgl的上位机软件qt开发
10-07lvgl的codeblocks仿真工程
09-22雷电模拟器绿色修改去广告便携制作器