kopia lustrzana https://github.com/pimoroni/pimoroni-pico
12 wiersze
188 B
C++
12 wiersze
188 B
C++
![]() |
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace pimoroni {
|
||
|
struct Font {
|
||
|
const uint8_t height;
|
||
|
const uint8_t max_width;
|
||
|
const uint8_t widths[96];
|
||
|
const uint8_t data[];
|
||
|
};
|
||
|
}
|