|
@@ -11,6 +11,8 @@
|
11
|
11
|
void lcd_setstatuspgm(const char* message);
|
12
|
12
|
void lcd_setalertstatuspgm(const char* message);
|
13
|
13
|
void lcd_reset_alert_level();
|
|
14
|
+
|
|
15
|
+ static unsigned char blink = 0; // Variable for visualisation of fan rotation in GLCD
|
14
|
16
|
|
15
|
17
|
#define LCD_MESSAGEPGM(x) lcd_setstatuspgm(PSTR(x))
|
16
|
18
|
#define LCD_ALERTMESSAGEPGM(x) lcd_setalertstatuspgm(PSTR(x))
|
|
@@ -71,6 +73,7 @@ char *itostr3left(const int &xx);
|
71
|
73
|
char *itostr4(const int &xx);
|
72
|
74
|
|
73
|
75
|
char *ftostr3(const float &x);
|
|
76
|
+char *ftostr31ns(const float &x); // float to string without sign character
|
74
|
77
|
char *ftostr31(const float &x);
|
75
|
78
|
char *ftostr32(const float &x);
|
76
|
79
|
char *ftostr5(const float &x);
|