The FTOLED library is an Arduino library providing graphics support for the OLED128 display module.
Some minor updates today:
Features
- drawString() can now take a string stored in flash to save RAM, using the F() macro. The fonts_demo example sketch (part of the library) shows how.
- New drawString_P() method for advanced users, takes a PROGMEM pointer directly. Equivalent to some of the _P string methods in avrlibc.
- Better flicker-free OLED_TextBox update technique, removes the previous need to print spurious spaces. See the strip_chart example or the Displaying Text wiki page for details.
- Can now scroll a one-line OLED_TextBox without hanging the sketch.