init method

void init()

Initializes printer (ESC @) to reset modes. Safe to call multiple times.

Implementation

void init() {
  _bytes.addAll([0x1B, 0x40]);
}