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