Defines | |
| #define | ClearPage(line, color) |
| Clear an 8 pixel high row. | |
| #define | ClearSysTextLine(line) |
| Clear a line of system text. | |
| #define | DrawHoriLine(x, y, width, color) |
| Draw a Horizontal line. | |
| #define | DrawVertLine(x, y, height, color) |
| Draw a Vertical line. | |
| #define | SetInverted(invert) |
| Set LCD display mode. | |
The following functions have been deprecated from the GLCD inerface. They are temporarily available by adding the following include to your sketch:
#include "include/glcd_Deprecated.h"
| #define ClearPage | ( | line, | |||
| color | ) |
Clear an 8 pixel high row.
This function should no longer be used.
It has been replaced by glcd::FillRect()
| #define ClearSysTextLine | ( | line | ) |
Clear a line of system text.
This function should no longer be used.
It has been replaced by the text area function gText::EraseTextLine(uint8_t row) and gText::EraseTextLine(eraseLine_t type).
| #define DrawHoriLine | ( | x, | |||
| y, | |||||
| width, | |||||
| color | ) |
Draw a Horizontal line.
This functions has been replaced by glcd::DrawHLine()
| #define DrawVertLine | ( | x, | |||
| y, | |||||
| height, | |||||
| color | ) |
Draw a Vertical line.
This functions has been replaced by glcd::DrawVLine()
| #define SetInverted | ( | invert | ) |
Set LCD display mode.
This functions has been replaced by glcd::SetDisplayMode()
1.6.3