1 #ifndef __HUMITURE_H__
2 #define __HUMITURE_H__
3 
4 #include "../menu.h"
5 
6 extern MENU_TYP humiture;
7 
8 int  humiture_init(void);
9 int  humiture_uninit(void);
10 void humiture_task(void);
11 
12 static uint8_t icon_data_hygrometer_24_24[] = {
13     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0x01, 0xFE, 0x00, 0x24,
14     0x24, 0x24, 0x24, 0x04, 0x80, 0xC0, 0xE0, 0xC0, 0x00, 0x00, 0x00, 0x00,
15     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0xFF, 0x00, 0x49,
16     0x09, 0x01, 0x00, 0x3E, 0x7F, 0x7F, 0x7F, 0x59, 0x63, 0x3E, 0x00, 0x00,
17     0x00, 0x00, 0x00, 0x00, 0x3C, 0x7E, 0xFF, 0xFF, 0xFE, 0xFD, 0xFB, 0x66,
18     0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
19 static icon_t icon_hygrometer_24_24 = {icon_data_hygrometer_24_24, 24, 24,
20                                        NULL};
21 
22 static uint8_t icon_data_thermometer_24_24[] = {
23     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0x01, 0xFE, 0x00, 0x24,
24     0x24, 0x24, 0x24, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
25     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0xFF, 0x00, 0x49,
26     0x09, 0x01, 0x00, 0x04, 0x0A, 0xE4, 0x10, 0x10, 0x10, 0x20, 0x00, 0x00,
27     0x00, 0x00, 0x00, 0x00, 0x3C, 0x7E, 0xFF, 0xFF, 0xFE, 0xFD, 0xFB, 0x66,
28     0x3C, 0x00, 0x00, 0x00, 0x00, 0x03, 0x04, 0x04, 0x04, 0x02, 0x00, 0x00};
29 static icon_t icon_thermometer_24_24 = {icon_data_thermometer_24_24, 24, 24,
30                                         NULL};
31 #endif
32