Clear a rectangle from the current position to the right margin. The height of the rectangle is the height of the current font.
| 341 | |
| 342 | // Clear a rectangle from the current position to the right margin. The height of the rectangle is the height of the current font. |
| 343 | void Lcd::ClearToMargin() noexcept |
| 344 | { |
| 345 | if (column < rightMargin) |
| 346 | { |
| 347 | WriteSpaces(rightMargin - column); |
| 348 | } |
| 349 | } |
| 350 | |
| 351 | // Select normal or inverted text |
| 352 | void Lcd::TextInvert(bool b) noexcept |
no outgoing calls
no test coverage detected