|
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
|
Class implements custom interface functions for custom displays. More...
#include <lcd_any.h>
Public Member Functions | |
| InterfaceAny (DisplayInterface &intf) | |
| Creates instance of interface to LCD display. More... | |
| void | startBlock (lcduint_t x, lcduint_t y, lcduint_t w) |
| Sets block in RAM of lcd display controller to write data to. More... | |
| void | nextBlock () |
| Switches to the start of next RAM page for the block, specified by startBlock(). | |
| void | endBlock () |
| Closes data send operation to lcd display. | |
| void | send (uint8_t data) |
| Sends byte to display device. More... | |
Class implements custom interface functions for custom displays.
|
inlineexplicit |
Creates instance of interface to LCD display.
| intf | DisplayInterface object |
|
inline |
Sets block in RAM of lcd display controller to write data to.
Sets block in RAM of lcd display controller to write data to. Width can be specified as 0, thus the library will set the right boundary to region of RAM block to the right column of the display.
| x | - column (left region) |
| y | - row (top region) |
| w | - width of the block in pixels to control |