Added 2 function prototypes for drawing bmp images to screen and text

This commit is contained in:
xoreo
2023-11-06 13:32:51 +01:00
parent cce5fcfd25
commit cfe7af96eb
24 changed files with 2827 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
/*
* lcd_api.h
*
* Created on: 6 Nov 2023
* Author: Tim
*/
#ifndef INC_LCD_API_H_
#define INC_LCD_API_H_
void display_bmp_array(const uint8_t bmp_data, uint16_t x_pos, uint16_t y_pos);
void display_text(const char * text, );
#endif /* INC_LCD_API_H_ */