mirror of
https://github.com/meshtastic/firmware.git
synced 2025-08-30 00:19:54 +00:00

* Adding medium and large RU fonts. Fixing string width calculation for RU font * Update src/graphics/draw/MessageRenderer.cpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Ben Meadors <benmmeadors@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
13 lines
296 B
C
13 lines
296 B
C
#ifndef OLEDDISPLAYFONTSRU_h
|
|
#define OLEDDISPLAYFONTSRU_h
|
|
|
|
#ifdef ARDUINO
|
|
#include <Arduino.h>
|
|
#elif __MBED__
|
|
#define PROGMEM
|
|
#endif
|
|
|
|
extern const uint8_t ArialMT_Plain_10_RU[] PROGMEM;
|
|
extern const uint8_t ArialMT_Plain_16_RU[] PROGMEM;
|
|
extern const uint8_t ArialMT_Plain_24_RU[] PROGMEM;
|
|
#endif |