sparkfun/SparkFun_Micro_OLED_Arduino_Library

Example mistakenly uses `oled.getFontWidth()` instead of `getFontHeight()`

georgestephanis opened this issue · 1 comments

// Try to set the cursor in the middle of the screen
oled.setCursor(middleX - (oled.getFontWidth() * (title.length()/2)),
middleY - (oled.getFontWidth() / 2));

Fixed with c768ea4