14 lines
203 B
C
14 lines
203 B
C
#ifndef Lsd_print_h
|
|
#define Lsd_print_h
|
|
|
|
struct DisplayData {
|
|
char topLine[64];
|
|
float value1;
|
|
float value2;
|
|
float value3;
|
|
};
|
|
|
|
void init_lcd();
|
|
void print_lcd(struct DisplayData* displayData);
|
|
|
|
#endif |