mirror of https://github.com/meshcore-dev/MeshCore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
284 B
13 lines
284 B
#ifndef OLEDDISPLAYFONTS_h
|
|
#define OLEDDISPLAYFONTS_h
|
|
|
|
#ifdef ARDUINO
|
|
#include <Arduino.h>
|
|
#elif __MBED__
|
|
#define PROGMEM
|
|
#endif
|
|
|
|
extern const uint8_t ArialMT_Plain_10[] PROGMEM;
|
|
extern const uint8_t ArialMT_Plain_16[] PROGMEM;
|
|
extern const uint8_t ArialMT_Plain_24[] PROGMEM;
|
|
#endif
|
|
|