Return the number of fonts
| 46 | |
| 47 | // Return the number of fonts |
| 48 | size_t Lcd::GetNumFonts() const noexcept |
| 49 | { |
| 50 | #if USE_FONT_CHIP |
| 51 | return fontChip.GetNumFonts(); |
| 52 | #else |
| 53 | return numFonts; |
| 54 | #endif |
| 55 | } |
| 56 | |
| 57 | void Lcd::SetFont(size_t newFont) noexcept |
| 58 | { |