Go to the source code of this file.
|
| static void | lcd_open_window (uint16_t x, uint16_t y, uint16_t width, uint16_t height) |
| | Set the LCD window range ;设置LCD窗口范围 More...
|
| |
| void | lcd_draw_point (uint16_t x, uint16_t y, uint16_t color) |
| | Draw a point ;绘画一个点 More...
|
| |
| void | lcd_draw_line (uint16_t start_x, uint16_t start_y, uint16_t end_x, uint16_t end_y, uint16_t color) |
| | Draw a line ;绘画一条线 More...
|
| |
| void | lcd_draw_rectangle (uint16_t start_x, uint16_t start_y, uint16_t end_x, uint16_t end_y, uint16_t color) |
| | Draw rectangle ;绘画矩形 More...
|
| |
| void | lcd_draw_circle (uint16_t x, uint16_t y, uint16_t radius, uint16_t color) |
| | Draw circle ;绘画圆形 More...
|
| |
| void | lcd_fill_rectangle (uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint16_t color) |
| | Fill rectangle ;填充矩形 More...
|
| |
| void | lcd_fill_screen (uint16_t color) |
| | Fill the entire screen ;填充整个屏幕 More...
|
| |