Write some spaces
| 292 | |
| 293 | // Write some spaces |
| 294 | void Lcd::WriteSpaces(PixelNumber numPixels) noexcept |
| 295 | { |
| 296 | uint8_t ySize = GetFontHeight(); |
| 297 | if (row < numRows) |
| 298 | { |
| 299 | if (row + ySize > numRows) |
| 300 | { |
| 301 | ySize = numRows - row; |
| 302 | } |
| 303 | ClearBlock(row, column, row + ySize, column + numPixels, textInverted); |
| 304 | } |
| 305 | column += numPixels; |
| 306 | lastCharColData = 0; |
| 307 | justSetCursor = false; |
| 308 | } |
| 309 | |
| 310 | // printf to LCD |
| 311 | int Lcd::printf(const char *_ecv_array fmt, ...) noexcept |
no outgoing calls
no test coverage detected