Set the cursor position
| 441 | |
| 442 | // Set the cursor position |
| 443 | void Lcd::SetCursor(PixelNumber r, PixelNumber c) noexcept |
| 444 | { |
| 445 | row = r; |
| 446 | column = c; |
| 447 | lastCharColData = 0u; // flag that we just set the cursor position, so no space before next character |
| 448 | justSetCursor = true; |
| 449 | } |
| 450 | |
| 451 | #endif |
| 452 |
no outgoing calls
no test coverage detected