Line | |
---|
1 | #ifndef __ST7789_H |
---|
2 | #define __ST7789_H |
---|
3 | |
---|
4 | #include <stdint.h> |
---|
5 | |
---|
6 | #ifdef __cplusplus |
---|
7 | extern "C" { |
---|
8 | #endif |
---|
9 | |
---|
10 | void ST7789_Initial(void); |
---|
11 | void ST7789_Write_Cmd(uint8_t cmd); |
---|
12 | void ST7789_Write_Data(uint8_t dh, uint8_t dl); |
---|
13 | void ST7789_Write_Cmd_Data(uint8_t cmdp); |
---|
14 | void show_picture(void); |
---|
15 | void ST7789_SetPos(unsigned char x0, unsigned char x1, unsigned y0, unsigned y1); |
---|
16 | void ST7789_Write_Data_U16(unsigned y); |
---|
17 | void ST7789_WriteMultiData(uint8_t *pData, int NumItems); |
---|
18 | |
---|
19 | #ifdef __cplusplus |
---|
20 | } |
---|
21 | #endif |
---|
22 | |
---|
23 | #endif /* __ST7789_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.