Support simple sentances

This commit is contained in:
Jaby
2023-06-21 22:36:31 +02:00
parent 70f73084e9
commit a4a7abe9b0
3 changed files with 102 additions and 13 deletions

View File

@@ -0,0 +1,14 @@
#ifndef __FONT_WRITER_HPP__
#define __FONT_WRITER_HPP__
#include <stdint.h>
namespace FontWriter {
static constexpr auto TextBufferSize = 1024;
void setup();
void write(int16_t x, int16_t y, const char* text);
void render();
}
#endif //!__FONT_WRITER_HPP__