├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── examples ├── LirygoEPD47 │ ├── LirygoEPD47.ino │ └── data │ │ └── AlexBrush.ttf └── truetypeToSerialTest │ └── truetypeToSerialTest.ino ├── library.properties └── src ├── truetype_Arduino.cpp └── truetype_Arduino.h /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-omura/truetype_Arduino/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-omura/truetype_Arduino/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-omura/truetype_Arduino/HEAD/README.md -------------------------------------------------------------------------------- /examples/LirygoEPD47/LirygoEPD47.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-omura/truetype_Arduino/HEAD/examples/LirygoEPD47/LirygoEPD47.ino -------------------------------------------------------------------------------- /examples/LirygoEPD47/data/AlexBrush.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-omura/truetype_Arduino/HEAD/examples/LirygoEPD47/data/AlexBrush.ttf -------------------------------------------------------------------------------- /examples/truetypeToSerialTest/truetypeToSerialTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-omura/truetype_Arduino/HEAD/examples/truetypeToSerialTest/truetypeToSerialTest.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-omura/truetype_Arduino/HEAD/library.properties -------------------------------------------------------------------------------- /src/truetype_Arduino.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-omura/truetype_Arduino/HEAD/src/truetype_Arduino.cpp -------------------------------------------------------------------------------- /src/truetype_Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-omura/truetype_Arduino/HEAD/src/truetype_Arduino.h --------------------------------------------------------------------------------