15 lines
297 B
C++
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
|