mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
- Implemented HAL for for power management - Implemented the Power app (accessible via Settings app) - Implemented status bar icon for battery status
19 lines
392 B
C
19 lines
392 B
C
#include "lilygo_tdeck.h"
|
|
#include "display_i.h"
|
|
#include <stdbool.h>
|
|
|
|
bool tdeck_bootstrap();
|
|
bool tdeck_init_lvgl();
|
|
|
|
extern const SdCard tdeck_sdcard;
|
|
|
|
const HardwareConfig lilygo_tdeck = {
|
|
.bootstrap = &tdeck_bootstrap,
|
|
.display = {
|
|
.set_backlight_duty = &tdeck_backlight_set
|
|
},
|
|
.init_graphics = &tdeck_init_lvgl,
|
|
.sdcard = &tdeck_sdcard,
|
|
.power = NULL
|
|
};
|