| 55 | } |
| 56 | |
| 57 | void Lcd::SetFont(size_t newFont) noexcept |
| 58 | { |
| 59 | if (newFont < GetNumFonts()) |
| 60 | { |
| 61 | currentFontNumber = newFont; |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | // Get the current font height |
| 66 | PixelNumber Lcd::GetFontHeight() const noexcept |
no outgoing calls
no test coverage detected