mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
- Implement M5Stack Cardputer: display, SD card and keyboard - `St7789Display` now supports a "gap" configuration - `ElfApp` has improved errors
10 lines
198 B
C++
10 lines
198 B
C++
#include <PwmBacklight.h>
|
|
#include <Tactility/Log.h>
|
|
|
|
constexpr auto* TAG = "Cardputer";
|
|
|
|
bool initBoot() {
|
|
TT_LOG_I(TAG, "initBoot");
|
|
|
|
return driver::pwmbacklight::init(GPIO_NUM_38, 256);
|
|
} |