setCursor method

void setCursor(
  1. int x,
  2. int y
)

set starting position of a text string on the oled

Implementation

void setCursor(int x, int y) {
  _cursor_x = x;
  _cursor_y = y;
}