Functions for accessing and modifying display module features. More...
Defines | |
| #define | ClearLine(_line) __TextOutEx(0, _line, __BlankLine, 0) |
| Clear a line on the LCD screen. | |
| #define | PointOutEx(_x, _y, _options) __PointOutEx(_x,_y,_options) |
| Draw a point with drawing options. | |
| #define | PointOut(_x, _y) __PointOutEx(_x,_y,0) |
| Draw a point. | |
| #define | ClearScreen() __PointOutEx(200, 200, 1) |
| Clear LCD screen. | |
| #define | LineOutEx(_x1, _y1, _x2, _y2, _options) __LineOutEx(_x1,_y1,_x2,_y2,_options) |
| Draw a line with drawing options. | |
| #define | LineOut(_x1, _y1, _x2, _y2) __LineOutEx(_x1,_y1,_x2,_y2,0) |
| Draw a line. | |
| #define | RectOutEx(_x, _y, _w, _h, _options) __RectOutEx(_x,_y,_w,_h,_options) |
| Draw a rectangle with drawing options. | |
| #define | RectOut(_x, _y, _w, _h) __RectOutEx(_x,_y,_w,_h,0) |
| Draw a rectangle. | |
| #define | CircleOutEx(_x, _y, _r, _options) __CircleOutEx(_x,_y,_r,_options) |
| Draw a circle with drawing options. | |
| #define | CircleOut(_x, _y, _r) __CircleOutEx(_x,_y,_r,0) |
| Draw a circle. | |
| #define | NumOutEx(_x, _y, _num, _options) __NumOutEx(_x,_y,_num,_options) |
| Draw a number with drawing options. | |
| #define | NumOut(_x, _y, _num) __NumOutEx(_x,_y,_num,0) |
| Draw a number. | |
| #define | TextOutEx(_x, _y, _txt, _options) __TextOutEx(_x,_y,_txt,_options) |
| Draw text. | |
| #define | TextOut(_x, _y, _txt) __TextOutEx(_x,_y,_txt,0) |
| Draw text. | |
| #define | GraphicOutEx(_x, _y, _file, _vars, _options) __GraphicOutEx(_x,_y,_file,_vars,_options) |
| Draw a graphic image with parameters and drawing options. | |
| #define | GraphicOut(_x, _y, _file) __GraphicOutEx(_x,_y,_file,__GraphicOutEmptyVars,0) |
| Draw a graphic image. | |
| #define | GraphicArrayOutEx(_x, _y, _data, _vars, _options) __GraphicArrayOutEx(_x,_y,_data,_vars,_options) |
| Draw a graphic image from byte array with parameters and drawing options. | |
| #define | GraphicArrayOut(_x, _y, _data) __GraphicArrayOutEx(_x,_y,_data,__GraphicOutEmptyVars,0) |
| Draw a graphic image from byte array. | |
| #define | EllipseOutEx(_x, _y, _rX, _rY, _options) __EllipseOutEx(_x,_y,_rX,_rY,_options) |
| Draw an ellipse with drawing options. | |
| #define | EllipseOut(_x, _y, _rX, _rY) __EllipseOutEx(_x,_y,_rX,_rY,0) |
| Draw an ellipse. | |
| #define | PolyOutEx(_points, _options) __PolyOutEx(_points,_options) |
| Draw a polygon with drawing options. | |
| #define | PolyOut(_points) __PolyOutEx(_points,0) |
| Draw a polygon. | |
| #define | FontTextOutEx(_x, _y, _fnt, _txt, _options) __FontTextOutEx(_x,_y,_fnt,_txt,_options) |
| Draw text with font and drawing options. | |
| #define | FontTextOut(_x, _y, _fnt, _txt) __FontTextOutEx(_x,_y,_fnt,_txt,0) |
| Draw text with font. | |
| #define | FontNumOutEx(_x, _y, _fnt, _num, _options) __FontNumOutEx(_x,_y,_fnt,_num,_options) |
| Draw a number with font and drawing options. | |
| #define | FontNumOut(_x, _y, _fnt, _num) __FontNumOutEx(_x,_y,_fnt,_num,0) |
| Draw a number with font. | |
| #define | GetDisplayEraseMask(_n) __GetDisplayEraseMask(_n) |
| Read the display erase mask value. | |
| #define | GetDisplayUpdateMask(_n) __GetDisplayUpdateMask(_n) |
| Read the display update mask value. | |
| #define | GetDisplayFont(_n) __GetDisplayFont(_n) |
| Read the display font memory address. | |
| #define | GetDisplayDisplay(_n) __GetDisplayDisplay(_n) |
| Read the display memory address. | |
| #define | GetDisplayFlags(_n) __GetDisplayFlags(_n) |
| Read the display flags. | |
| #define | GetDisplayTextLinesCenterFlags(_n) __GetDisplayTextLinesCenterFlags(_n) |
| Read the display text lines center flags. | |
| #define | GetDisplayContrast(_n) __GetDisplayContrast(_n) |
| Read the display contrast setting. | |
| #define | GetDisplayNormal(_x, _line, _cnt, _data) __getDisplayNormal(_x, _line, _cnt, _data) |
| Read pixel data from the normal display buffer. | |
| #define | GetDisplayPopup(_x, _line, _cnt, _data) __getDisplayPopup(_x, _line, _cnt, _data) |
| Read pixel data from the popup display buffer. | |
| #define | SetDisplayFont(_n) __setDisplayFont(_n) |
| Set the display font memory address. | |
| #define | SetDisplayDisplay(_n) __setDisplayDisplay(_n) |
| Set the display memory address. | |
| #define | SetDisplayEraseMask(_n) __setDisplayEraseMask(_n) |
| Set the display erase mask. | |
| #define | SetDisplayFlags(_n) __setDisplayFlags(_n) |
| Set the display flags. | |
| #define | SetDisplayTextLinesCenterFlags(_n) __setDisplayTextLinesCenterFlags(_n) |
| Set the display text lines center flags. | |
| #define | SetDisplayUpdateMask(_n) __setDisplayUpdateMask(_n) |
| Set the display update mask. | |
| #define | SetDisplayContrast(_n) __setDisplayContrast(_n) |
| Set the display contrast. | |
| #define | SetDisplayNormal(_x, _line, _cnt, _data) __setDisplayNormal(_x, _line, _cnt, _data) |
| Write pixel data to the normal display buffer. | |
| #define | SetDisplayPopup(_x, _line, _cnt, _data) __setDisplayPopup(_x, _line, _cnt, _data) |
| Write pixel data to the popup display buffer. | |
Functions for accessing and modifying display module features.
1.6.2