10 lines
177 B
C
10 lines
177 B
C
#ifndef ST7789V2_H
|
|
#define ST7789V2_H
|
|
|
|
#include "system/includes.h"
|
|
|
|
int st7789v2_open(void);
|
|
int st7789v2_close(void);
|
|
int st7789v2_fill_rgb(u8 red, u8 green, u8 blue);
|
|
|
|
#endif |