Added 2 function prototypes for drawing bmp images to screen and text
This commit is contained in:
13
project/Core/Inc/lcd_api.h
Normal file
13
project/Core/Inc/lcd_api.h
Normal file
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
* lcd_api.h
|
||||
*
|
||||
* Created on: 6 Nov 2023
|
||||
* Author: Tim
|
||||
*/
|
||||
|
||||
#ifndef INC_LCD_API_H_
|
||||
#define INC_LCD_API_H_
|
||||
|
||||
|
||||
|
||||
#endif /* INC_LCD_API_H_ */
|
||||
14
project/Core/Src/lcd_api.c
Normal file
14
project/Core/Src/lcd_api.c
Normal 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_ */
|
||||
Reference in New Issue
Block a user