|
void | init (uint8_t fourbitmode, uint8_t rs, uint8_t rw, uint8_t enable, uint8_t d0, uint8_t d1, uint8_t d2, uint8_t d3, uint8_t d4, uint8_t d5, uint8_t d6, uint8_t d7) |
| RGB LCD shield constructor. More...
|
|
void | begin (uint8_t cols, uint8_t rows, uint8_t charsize=LCD_5x8DOTS) |
| Starts I2C connection with display. More...
|
|
void | clear () |
| High-level command to clear the display.
|
|
void | home () |
| High-level command to set the cursor position to zero.
|
|
void | noDisplay () |
| High-level command to turn the display off.
|
|
void | display () |
| High-level command to turn the display on.
|
|
void | noBlink () |
| High-level command to turn off the blinking cursor off.
|
|
void | blink () |
| High-level command to turn on the blinking cursor.
|
|
void | noCursor () |
| High-level command to turn the underline cursor off.
|
|
void | cursor () |
| High-level command to turn the underline cursor on.
|
|
void | scrollDisplayLeft () |
| High-level command to scroll display left without changing the RAM.
|
|
void | scrollDisplayRight () |
| High-level command to scroll display right without changing the RAM.
|
|
void | leftToRight () |
| High-level command to make text flow right to left.
|
|
void | rightToLeft () |
| High-level command to make text flow left to right.
|
|
void | autoscroll () |
| High-level command to 'right justify' text from cursor.
|
|
void | noAutoscroll () |
| High-level command to 'left justify' text from cursor.
|
|
void | setBacklight (uint8_t status) |
| High-level command to set the backlight, only if the LCD backpack is used. More...
|
|
void | createChar (uint8_t, uint8_t[]) |
| High-level command that creates custom characters in CGRAM. More...
|
|
void | setCursor (uint8_t, uint8_t) |
| High-level command that sets the location of the cursor. More...
|
|
virtual void | write (uint8_t) |
| Mid-level command that sends data to the display. More...
|
|
void | command (uint8_t) |
| Sends command to display. More...
|
|
uint8_t | readButtons () |
| reads the buttons from the shield More...
|
|
Base class for RGB LCD shield.