home method

void home()

Moves the cursor to the top-left corner (home) of the terminal.

Implementation

void home() {
  backend.write('\x1b[H');
}