阶段1: 将 dzbj 项目的 LVGL 8.3.11 LCD 显示集成到 AI小智 主项目, 开机显示 ScreenHome 界面,同时优化配网模式下的内存使用, 确保 WiFi+BLE+LVGL 三者共存运行。 ## 新增功能 ### dzbj 显示模块集成 - 新增 main/dzbj/ 目录,移植 LCD 驱动(ST77916 QSPI)、触摸驱动(CST816S)、 LVGL 初始化和 SquareLine Studio UI 界面 - I2C 总线共享:dzbj 触摸控制器复用主项目的 I2C_NUM_1 总线 - GPIO 冲突解决:LED(GPIO21)、Touch1(GPIO1)、Touch4(GPIO7) 改为 NC, 电池 ADC 从 GPIO6 改为 GPIO3 - 添加 LVGL、esp_lcd_st77916、esp_lcd_touch_cst816s 等组件依赖 - managed_components 纳入版本管理 ### 配网模式轻量化启动 - BoxAudioCodec: 新增 output_only 模式,仅创建 I2S TX 通道(省 ~13KB DMA) 跳过 ES7210 ADC 初始化(省 ~2-4KB) - AudioCodec: 新增 StartOutputOnly() 方法,仅启用扬声器输出 - Application: 配网模式跳过 Opus 编码器、输入重采样器、协议初始化、 天气位置检测等网络业务 - 板级构造函数: 配网模式跳过电池检测、IMU传感器、PowerSaveTimer ### WifiBoard 配网流程修复 - NeedsProvisioning() 静态方法: 读取 NVS force_ap 和 SSID 列表, 用于提前判断配网模式 - force_ap 竞态修复: 构造函数不再清零 force_ap,改在 StartNetwork() 清零, 确保 NeedsProvisioning() 能正确读到 force_ap=1 - Application 缓存 provisioning_mode_ 成员变量,避免重复读 NVS ### BLE 配网重启修复 - 配网成功后用 esp_timer 延迟重启替代 xTaskCreate, 避免内存紧张时任务创建失败导致设备不重启 - 注释掉 WiFi 连接成功后的 MAC 地址发送步骤 ### sdkconfig 内存优化 - BT_ALLOCATION_FROM_SPIRAM_FIRST=y (BLE 动态分配优先 PSRAM) - SPIRAM_MALLOC_RESERVE_INTERNAL=32768 - NVS_ALLOCATE_CACHE_IN_SPIRAM=y - WiFi 静态缓冲区数量优化 (RX=10, TX=8) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
5.2 KiB
Flex
Overview
The Flexbox (or Flex for short) is a subset of CSS Flexbox.
It can arrange items into rows or columns (tracks), handle wrapping, adjust the spacing between the items and tracks, handle grow to make the item(s) fill the remaining space with respect to min/max width and height.
To make an object flex container call lv_obj_set_layout(obj, LV_LAYOUT_FLEX).
Note that the flex layout feature of LVGL needs to be globally enabled with LV_USE_FLEX in lv_conf.h.
Terms
- tracks: the rows or columns
- main direction: row or column, the direction in which the items are placed
- cross direction: perpendicular to the main direction
- wrap: if there is no more space in the track a new track is started
- grow: if set on an item it will grow to fill the remaining space on the track. The available space will be distributed among items respective to their grow value (larger value means more space)
- gap: the space between the rows and columns or the items on a track
Simple interface
With the following functions you can set a Flex layout on any parent.
Flex flow
lv_obj_set_flex_flow(obj, flex_flow)
The possible values for flex_flow are:
LV_FLEX_FLOW_ROWPlace the children in a row without wrappingLV_FLEX_FLOW_COLUMNPlace the children in a column without wrappingLV_FLEX_FLOW_ROW_WRAPPlace the children in a row with wrappingLV_FLEX_FLOW_COLUMN_WRAPPlace the children in a column with wrappingLV_FLEX_FLOW_ROW_REVERSEPlace the children in a row without wrapping but in reversed orderLV_FLEX_FLOW_COLUMN_REVERSEPlace the children in a column without wrapping but in reversed orderLV_FLEX_FLOW_ROW_WRAP_REVERSEPlace the children in a row with wrapping but in reversed orderLV_FLEX_FLOW_COLUMN_WRAP_REVERSEPlace the children in a column with wrapping but in reversed order
Flex align
To manage the placement of the children use lv_obj_set_flex_align(obj, main_place, cross_place, track_cross_place)
main_placedetermines how to distribute the items in their track on the main axis. E.g. flush the items to the right onLV_FLEX_FLOW_ROW_WRAP. (It's calledjustify-contentin CSS)cross_placedetermines how to distribute the items in their track on the cross axis. E.g. if the items have different height place them to the bottom of the track. (It's calledalign-itemsin CSS)track_cross_placedetermines how to distribute the tracks (It's calledalign-contentin CSS)
The possible values are:
LV_FLEX_ALIGN_STARTmeans left on a horizontally and top vertically. (default)LV_FLEX_ALIGN_ENDmeans right on a horizontally and bottom verticallyLV_FLEX_ALIGN_CENTERsimply centerLV_FLEX_ALIGN_SPACE_EVENLYitems are distributed so that the spacing between any two items (and the space to the edges) is equal. Does not apply totrack_cross_place.LV_FLEX_ALIGN_SPACE_AROUNDitems are evenly distributed in the track with equal space around them. Note that visually the spaces aren’t equal, since all the items have equal space on both sides. The first item will have one unit of space against the container edge, but two units of space between the next item because that next item has its own spacing that applies. Not applies totrack_cross_place.LV_FLEX_ALIGN_SPACE_BETWEENitems are evenly distributed in the track: first item is on the start line, last item on the end line. Not applies totrack_cross_place.
Flex grow
Flex grow can be used to make one or more children fill the available space on the track. When more children have grow parameters, the available space will be distributed proportionally to the grow values. For example, there is 400 px remaining space and 4 objects with grow:
Awith grow = 1Bwith grow = 1Cwith grow = 2
A and B will have 100 px size, and C will have 200 px size.
Flex grow can be set on a child with lv_obj_set_flex_grow(child, value). value needs to be > 1 or 0 to disable grow on the child.
Style interface
All the Flex-related values are style properties under the hood and you can use them similarly to any other style property. The following flex related style properties exist:
FLEX_FLOWFLEX_MAIN_PLACEFLEX_CROSS_PLACEFLEX_TRACK_PLACEFLEX_GROW
Internal padding
To modify the minimum space flexbox inserts between objects, the following properties can be set on the flex container style:
-
pad_rowSets the padding between the rows. -
pad_columnSets the padding between the columns.
These can for example be used if you don't want any padding between your objects: lv_style_set_pad_column(&row_container_style,0)
Other features
RTL
If the base direction of the container is set the LV_BASE_DIR_RTL the meaning of LV_FLEX_ALIGN_START and LV_FLEX_ALIGN_END is swapped on ROW layouts. I.e. START will mean right.
The items on ROW layouts, and tracks of COLUMN layouts will be placed from right to left.
New track
You can force Flex to put an item into a new line with lv_obj_add_flag(child, LV_OBJ_FLAG_FLEX_IN_NEW_TRACK).
Example
.. include:: ../../examples/layouts/flex/index.rst
API
.. doxygenfile:: lv_flex.h
:project: lvgl