* cleanup * brightness control and app * cleanup * persistant storage of display settings * fix for missing include * header cleanup * fix pc build * add docs * move display app to tactility project
14 lines
310 B
C
14 lines
310 B
C
#include "waveshare_s3_touch.h"
|
|
|
|
#include "lvgl_i.h"
|
|
|
|
bool ws3t_bootstrap();
|
|
|
|
const HardwareConfig waveshare_s3_touch = {
|
|
.bootstrap = &ws3t_bootstrap,
|
|
.display = {
|
|
.set_backlight_duty = NULL // TODO: This requires implementing the CH422G IO expander
|
|
},
|
|
.init_lvgl = &ws3t_init_lvgl
|
|
};
|