Files
rp_pico_test/font_data.h
T
Stanislav N Mikhailov 3cdfa81da8 Font is displayed correctly
2025-01-01 18:07:19 +03:00

13 lines
319 B
C

#ifndef FONT_DATA_H
#define FONT_DATA_H
#include <stdint.h>
#include <wchar.h>
extern const uint16_t font_width;
extern const uint16_t font_height;
extern const uint8_t font_data[];
void draw_string(uint16_t x, uint16_t y, const wchar_t *str);
void draw_char(uint16_t x, uint16_t y, wchar_t c);
#endif // FONT_DATA_H