Files
esDashboard/src/config/server/DisplayConfig.h
T
2026-01-09 12:55:28 +00:00

15 lines
297 B
C++

#pragma once
#include <chrono>
#include <string>
namespace config::server
{
struct DisplayConfig
{
int rotation = 0;
std::chrono::milliseconds refreshMs = std::chrono::milliseconds(1000);
std::string framebuffer = "/dev/fb0";
};
} // namespace config::server