1、原有ESP32-S3功能基本实现,有些小Bug需要修复; 2、RAM内存不够导致Img界面图片显示画质不完整,并且当前未开启蓝牙功能,开机蓝牙功能后RAM内存压力加剧;
11 lines
315 B
C
11 lines
315 B
C
#include <stdbool.h>
|
|
#include "esp_lvgl_port.h"
|
|
#include "esp_lcd_st77916.h"
|
|
|
|
|
|
void lcd_init();
|
|
void lvgl_lcd_init();
|
|
void touch_init();
|
|
void get_touch(uint16_t* touchx,uint16_t* touchy);
|
|
void lcd_clear_screen_black(void); // 清空LCD GRAM为黑色
|
|
void lcd_disp_on_off(bool on_off); // LCD显示开关
|