<h1 align="center"> LittlevGL - Open-source Embedded GUI Library</h1>
<p align="center">
<a href="https://github.com/littlevgl/lvgl/blob/master/LICENCE.txt"><img src="https://img.shields.io/badge/licence-MIT-blue.svg"></a>
<a href="https://github.com/littlevgl/lvgl/releases/tag/v6.0"><img src="https://img.shields.io/badge/version-6.0-blue.svg"></a>
</p>
<p align="center">
<img src="https://littlevgl.com/github/cover_ori_reduced_2.gif">
</p>
<p align="center">
LittlevGL provides everything you need to create a Graphical User Interface (GUI) on embedded systems with easy-to-use graphical elements, beautiful visual effects and low memory footprint.
</p>
<h4 align="center">
<a href="https://littlevgl.com">Website </a> ·
<a href="https://littlevgl.com/live-demo">Live demo</a> ·
<a href="https://docs.littlevgl.com/en/html/get-started/pc-simulator.html">Simulator</a> ·
<a href="https://forum.littlevgl.com">Forum</a> ·
<a href="https://docs.littlevgl.com/">Docs</a> ·
<a href="https://blog.littlevgl.com/">Blog</a>
</h4>
---
- [Features](#features)
- [Supported devices](#supported-devices)
- [Quick start in a simulator](#quick-start-in-a-simulator)
- [Add LittlevGL to your project](#add-littlevgl-to-your-project)
- [Learn the basics](#learn-the-basics)
- [Examples](#examples)
- [Contributing](#contributing)
- [Donate](#donate)
## Features
* **Powerful building blocks** buttons, charts, lists, sliders, images, etc.
* **Advanced graphics** with animations, anti-aliasing, opacity, smooth scrolling
* **Simultaneously use various input devices** touchscreen, mouse, keyboard, encoder, buttons, etc.
* **Simultaneously use multiple displays** i.e. monochrome and color display
* **Multi-language support** with UTF-8 encoding
* **Fully customizable** graphical elements
* **Hardware independent** to use with any microcontroller or display
* **Scalable** to operate with little memory (64 kB Flash, 10 kB RAM)
* **OS, External memory and GPU** supported but not required
* **Single frame buffer** operation even with advances graphical effects
* **Written in C** for maximal compatibility
* **Micropython Binding** exposes [LittlevGL API in Micropython](https://blog.littlevgl.com/2019-02-20/micropython-bindings)
* **Simulator** to develop on PC without embedded hardware
* **Tutorials, examples, themes** for rapid development
* **Documentation** and API references
## Supported devices
Basically, every modern controller - which is able to drive a display - is suitable to run LittlevGL. The minimal requirements:
- 16, 32 or 64 bit microcontroller or processor
- > 16 MHz clock speed is recommended
- Flash/ROM: > 64 kB for the very essential components (> 180 kB is recommended)
- RAM:
- Static RAM usage: ~8..16 kB depending on the used features and objects types
- Stack: > 2kB (> 4 kB is recommended)
- Dynamic data (heap): > 4 KB (> 16 kB is recommended if using several objects).
Set by `LV_MEM_SIZE` in *lv_conf.h*.
- Display buffer: > *"Horizontal resolution"* pixels (> 10 × *"Horizontal resolution"* is recommended)
- C99 or newer compiler
*Note that the memory usage might vary depending on the architecture, compiler and build options.*
Just to mention some **platforms**:
- STM32F1, STM32F3, [STM32F4](https://blog.littlevgl.com/2017-07-15/stm32f429_disco_port), [STM32F7](https://github.com/littlevgl/stm32f746_disco_no_os_sw4stm32)
- Microchip dsPIC33, PIC24, PIC32MX, PIC32MZ
- NXP Kinetis, LPC, iMX
- [Linux frame buffer](https://blog.littlevgl.com/2018-01-03/linux_fb) (/dev/fb)
- [Raspberry PI](http://www.vk3erw.com/index.php/16-software/63-raspberry-pi-official-7-touchscreen-and-littlevgl)
- [Espressif ESP32](https://github.com/littlevgl/esp32_ili9431)
- Nordic nrf52
- Quectell M66
## Quick start in a simulator
The easiest way to get started with LittlevGL is to run it in a simulator on your PC without any embedded hardware.
Choose a project with your favourite IDE:
| Eclipse | CodeBlocks | Visual Studio | PlatformIO | Qt Creator |
|-------------|-------------|---------------|-----------|------------|
| [![Eclipse](https://littlevgl.com/logo/ide/eclipse.jpg)](https://github.com/littlevgl/pc_simulator_sdl_eclipse) | [![CodeBlocks](https://littlevgl.com/logo/ide/codeblocks.jpg)](https://github.com/littlevgl/pc_simulator_win_codeblocks) | [![VisualStudio](https://littlevgl.com/logo/ide/visualstudio.jpg)](https://github.com/littlevgl/visual_studio_2017_sdl_x64) | [![PlatformIO](https://littlevgl.com/logo/ide/platformio.jpg)](https://github.com/littlevgl/pc_simulator_sdl_platformio) | [![QtCreator](https://littlevgl.com/logo/ide/qtcreator.jpg)](https://blog.littlevgl.com/2019-01-03/qt-creator) |
| Cross-platform<br>with SDL | Native Windows | Cross-platform<br>with SDL | Cross-platform<br>with SDL | Cross-platform<br>with SDL |
## Add LittlevGL to your project
The steps below show how to setup LittlevGL on an embedded system with a display and a touchpad.
You can use the [Simulators](https://docs.littlevgl.com/en/html/get-started/pc-simulator) to get ready to use projects which can be run on your PC.
1. [Download](https://littlevgl.com/download) or [Clone](https://github.com/littlevgl/lvgl) the library
2. Copy the `lvgl` folder into your project
3. Copy `lvgl/lv_conf_template.h` as `lv_conf.h` next to the `lvgl` folder and set at least `LV_HOR_RES_MAX`, `LV_VER_RES_MAX` and `LV_COLOR_DEPTH`.
4. Include `lvgl/lvgl.h` where you need to use LittlevGL related functions.
5. Call `lv_tick_inc(x)` every `x` milliseconds **in a Timer or Task** (`x` should be between 1 and 10). It is required for the internal timing of LittlevGL.
6. Call `lv_init()`
7. Create a display buffer for LittlevGL
```c
static lv_disp_buf_t disp_buf;
static lv_color_t buf[LV_HOR_RES_MAX * 10]; /*Declare a buffer for 10 lines*/
lv_disp_buf_init(&disp_buf, buf, NULL, LV_HOR_RES_MAX * 10); /*Initialize the display buffer*/
```
8. Implement and register a function which can **copy a pixel array** to an area of your display:
```c
lv_disp_drv_t disp_drv; /*Descriptor of a display driver*/
lv_disp_drv_init(&disp_drv); /*Basic initialization*/
disp_drv.flush_cb = my_disp_flush; /*Set your driver function*/
disp_drv.buffer = &disp_buf; /*Assign the buffer to the display*/
lv_disp_drv_register(&disp_drv); /*Finally register the driver*/
void my_disp_flush(lv_disp_t * disp, const lv_area_t * area, lv_color_t * color_p)
{
int32_t x, y;
for(y = area->y1; y <= area->y2; y++) {
for(x = area->x1; x <= area->x2; x++) {
set_pixel(x, y, *color_p); /* Put a pixel to the display.*/
color_p++;
}
}
lv_disp_flush_ready(disp); /* Indicate you are ready with the flushing*/
}
```
9. Implement and register a function which can **read an input device**. E.g. for a touch pad:
```c
lv_indev_drv_init(&indev_drv); /*Descriptor of a input device driver*/
indev_drv.type = LV_INDEV_TYPE_POINTER; /*Touch pad is a pointer-like device*/
indev_drv.read_cb = my_touchpad_read; /*Set your driver function*/
lv_indev_drv_register(&indev_drv); /*Finally register the driver*/
bool my_touchpad_read(lv_indev_drv_t * indev_driver, lv_indev_data_t * data)
{
static lv_coord_t last_x = 0;
static lv_coord_t last_y = 0;
/*Save the state and save the pressed coordinate*/
data->state = touchpad_is_pressed() ? LV_INDEV_STATE_PR : LV_INDEV_STATE_REL;
if(data->state == LV_INDEV_STATE_PR) touchpad_get_xy(&last_x, &last_y);
/*Set the coordinates (if released use the last pressed coordinates)*/
data->point.x = last_x;
data->point.y = last_y;
return false; /*Return `false` because we are not buffering and no more data to read*/
}
```
10. Call `lv_task_handler()` periodically every few milliseconds in the main `while(1)` loop, in Timer interrupt or in an Ope
没有合适的资源?快使用搜索试试~ 我知道了~
STM32F407+TIM+ADC+FFT+DAC+lVGL界面简易信号发生器加示波器源码
共714个文件
h:262个
c:237个
mk:57个
需积分: 0 75 下载量 87 浏览量
2023-08-04
14:53:39
上传
评论 11
收藏 273.16MB RAR 举报
温馨提示
STM32F407+TIM+ADC+FFT+DAC+lVGL界面简易信号发生器加示波器源码,频率测量在上下0.3左右,可以直接接信号发神器输出信号测量,建议加一个运放电路,把相位偏移,避免芯片被烧坏,输入电压幅度3.3V.
资源推荐
资源详情
资源评论
收起资源包目录
STM32F407+TIM+ADC+FFT+DAC+lVGL界面简易信号发生器加示波器源码 (714个子文件)
FreeRTOS.uvguix.admin 176KB
astyle_c 169B
astyle_h 33B
keilkilll.bat 399B
blue_flower_32.bin 29KB
blue_flower_16.bin 15KB
blue_flower_16_swap.bin 15KB
blue_flower_8.bin 7KB
blue_rose_16.bin 3KB
flower_icon_alpha.bin 1KB
img_bubble_pattern.c 5.79MB
red_flower.c 397KB
imgbtn_img_3.c 339KB
imgbtn_img_4.c 339KB
tasks.c 221KB
imgbtn_img_1.c 212KB
imgbtn_img_2.c 212KB
lv_font_roboto_28.c 176KB
benchmark_bg.c 133KB
lv_font_roboto_22.c 124KB
queue.c 123KB
stm32f4xx_tim.c 122KB
arial_20.c 121KB
img_flower_icon.c 114KB
trcSnapshotRecorder.c 114KB
bsp_tftlcd.c 102KB
stm32f4xx_rtc.c 100KB
stm32f4xx_rcc.c 97KB
lv_font_roboto_16.c 80KB
trcStreamingRecorder.c 69KB
stm32f4xx_adc.c 67KB
apple_icon_alpha.c 65KB
lv_obj.c 64KB
lv_ta.c 62KB
stm32f4xx_flash.c 62KB
lv_draw_rect.c 60KB
stm32f4xx_can.c 59KB
lv_font_roboto_12.c 58KB
stm32f4xx_cryp_aes.c 57KB
stm32f4xx_usart.c 57KB
stm32f4xx_fmc.c 55KB
stm32f4xx_i2c.c 53KB
stream_buffer.c 53KB
stm32f4xx_dma.c 52KB
stm32f4xx_spi.c 51KB
timers.c 49KB
apple_icon_chroma.c 49KB
lv_page.c 47KB
system_stm32f4xx.c 47KB
lv_indev.c 46KB
SEGGER_RTT.c 46KB
lv_chart.c 46KB
stm32f4xx_sai.c 45KB
lv_tabview.c 41KB
stm32f4xx_fsmc.c 41KB
lv_label.c 41KB
trcKernelPort.c 40KB
port.c 39KB
stm32f4xx_ltdc.c 39KB
lv_btnm.c 39KB
stm32f4xx_sdio.c 38KB
stm32f4xx_pwr.c 37KB
lv_calendar.c 36KB
stm32f4xx_cryp.c 35KB
lv_ddlist.c 33KB
lv_list.c 32KB
port.c 32KB
event_groups.c 31KB
port.c 31KB
lv_theme_alien.c 30KB
port.c 30KB
lv_table.c 29KB
lv_theme_nemo.c 28KB
lv_theme_material.c 28KB
lv_canvas.c 27KB
stm32f4xx_dma2d.c 27KB
lv_roller.c 26KB
stm32f4xx_dac.c 26KB
lv_theme_night.c 26KB
lv_draw_basic.c 26KB
stm32f4xx_hash.c 26KB
lv_theme_zen.c 26KB
stm32f4xx_gpio.c 25KB
lv_img_decoder.c 25KB
lv_draw_line.c 24KB
lv_txt.c 24KB
lv_btn.c 23KB
lv_cont.c 23KB
lv_slider.c 22KB
port.c 21KB
heap_5.c 21KB
red_rose_16.c 20KB
lv_draw_img.c 20KB
lv_group.c 20KB
lv_tileview.c 19KB
heap_4.c 19KB
port.c 19KB
lv_refr.c 18KB
stm32f4xx_dcmi.c 18KB
lv_win.c 17KB
共 714 条
- 1
- 2
- 3
- 4
- 5
- 6
- 8
资源评论
LIbiDo293
- 粉丝: 1
- 资源: 1
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- W3CSchool全套Web开发手册中文CHM版15MB最新版本
- Light Table 的 Python 语言插件.zip
- UIkit中文帮助文档pdf格式最新版本
- kubernetes 的官方 Python 客户端库.zip
- 公开整理-2024年全国产业园区数据集.csv
- Justin Seitz 所著《Black Hat Python》一书的源代码 代码已完全转换为 Python 3,重新格式化以符合 PEP8 标准,并重构以消除涉及弃用库实现的依赖性问题 .zip
- java炸弹人游戏.zip学习资料程序资源
- Jay 分享的一些 Python 代码.zip
- 彩色形状的爱心代码.zip学习资料程序资源
- SQLAlchemy库:Python数据库操作的全方位指南
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功