text1306 is a small and straight-forward library to display text on displays driven by an ssd1306. The entire library is roughly 10kb in size (and hopefully smaller in the future), and should fit on most chips. It supports the standard ASCII palette.
- Download .zip file. Import to Arduino IDE (Sketch -> Include Library -> Add .ZIP Library...)
init()
Initialize text1306 object. Connects to the ssd1306 peripheral via the
0x3CI2C device address (this is specifically for 128x64 displays).
inverted(bool invert)
invertspecifies whether the displays colors will be inverted.falsewill display a black background with white text, whiletruewill display a white background with black text.
write(int line, char * buffer)
Writes a
bufferto the specifiedline. On a 128x64 display, there are 8 lines, beginning at the top of the display (line 0) to the bottom (line 7).
clearLine(int line)
Clear the specified
lineof all text.
clearAll()
Clear all lines of text, effectively resetting the display.
flipDisplay(bool flip)
Flip the display.
☐ Reduce font library size by removing empty characters.
☑ Submit to Arduino Library repo for easier install.
☐ Support 128x32 displays.