LCDGFX LCD display driver  1.2.0
Lightweight graphics library for SSD1306, SSD1325, SSD1327, SSD1331, SSD1351, SH1106, SH1107, IL9163, ST7735, ST7789, ILI9341, PCD8544 displays over I2C/SPI
lcdgfx.h File Reference

LCDGFX main header. More...

Include dependency graph for lcdgfx.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void ssd1306_enableUtf8Mode2 (void)
 Enables utf8 support for all text-functions. More...
 
void ssd1306_enableAsciiMode2 (void)
 Enables ascii mode for all text-functions. More...
 

Detailed Description

LCDGFX main header.

Main include file for the LCDGFX library.

Include this single header to get access to all display classes, drawing operations, fonts, NanoCanvas, and NanoEngine.

#include "lcdgfx.h"
DisplaySSD1306_128x64_I2C display(-1);
void setup() {
display.begin();
display.setFixedFont(ssd1306xled_font6x8);
display.clear();
display.printFixed(0, 0, "Hello!");
}
See also
Getting Started for a complete tutorial
Display Selection Guide for choosing the right display class

Definition in file lcdgfx.h.