Files
trail-mate/platform/esp/boards/include/display/DisplayConfig.h
vicliuandGitHub d320b6511d Unify PlatformIO and ESP-IDF around a shared UI/runtime shellRefactor/repo structure (#11)
* Unify PlatformIO and ESP-IDF around a shared UI/runtime shell
2026-03-12 01:17:46 +08:00

30 lines
284 B
C++

#pragma once
#include <cstdint>
namespace display
{
enum class Driver
{
Unknown = 0,
ST7796,
ST7789V2,
};
struct ScreenSize
{
int width;
int height;
};
struct Config
{
Driver driver;
ScreenSize screen;
};
Config get_config();
} // namespace display