This repository has been archived on 2025-06-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
compLIB/server_v2/include/Display.hpp
2022-10-07 01:22:27 +02:00

16 lines
260 B
C++

#ifndef COMPLIB_SERVER_DISPLAY_HPP
#define COMPLIB_SERVER_DISPLAY_HPP
#include <cstdint>
#include <string>
class Display {
public:
static void write(uint8_t line, std::string text);
private:
Display() = default;
};
#endif //COMPLIB_SERVER_DISPLAY_HPP