Clear part of the display and select non-inverted text.
| 281 | |
| 282 | // Clear part of the display and select non-inverted text. |
| 283 | void Lcd::Clear(PixelNumber top, PixelNumber left, PixelNumber bottom, PixelNumber right) noexcept |
| 284 | { |
| 285 | ClearBlock(top, left, bottom, right, false); |
| 286 | |
| 287 | SetCursor(top, left); |
| 288 | textInverted = false; |
| 289 | leftMargin = left; |
| 290 | rightMargin = right; |
| 291 | } |
| 292 | |
| 293 | // Write some spaces |
| 294 | void Lcd::WriteSpaces(PixelNumber numPixels) noexcept |
no outgoing calls
no test coverage detected