Tactiliest/boards/waveshare_s3_touch/waveshare_s3_touch.c
Ken Van Hoeylandt 632d7ccccf
Implemented power management (#67)
- Implemented HAL for for power management
- Implemented the Power app (accessible via Settings app)
- Implemented status bar icon for battery status
2024-11-02 23:40:26 +01:00

16 lines
353 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_graphics = &ws3t_init_lvgl,
.sdcard = NULL,
.power = NULL
};