First files added
This commit is contained in:
37
firmware/Core/Inc/icons.h
Normal file
37
firmware/Core/Inc/icons.h
Normal file
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
* icons.h
|
||||
*
|
||||
* Created on: Aug 19, 2022
|
||||
* Author: mcfly
|
||||
*/
|
||||
|
||||
#ifndef INC_ICONS_H_
|
||||
#define INC_ICONS_H_
|
||||
|
||||
//Humidity icon 16x16
|
||||
static const unsigned char humidity16[] = {
|
||||
0x00, 0x00, 0x00, 0xC0, 0xF0, 0xF8, 0xFC, 0xFE, 0xFE, 0xFC, 0x78, 0xF0, 0xC0, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x07, 0x1F, 0x3F, 0x3F, 0x7F, 0x77, 0x73, 0x70, 0x38, 0x3F, 0x1F, 0x07, 0x00, 0x00
|
||||
};
|
||||
//Temperature icon 24x24
|
||||
static const unsigned char temperature24[] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0x01, 0x01, 0xF9, 0xFE, 0xFE, 0x48, 0x48, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x60, 0x10, 0x18, 0x9F, 0x80, 0x80, 0xFF, 0xFF, 0xFF, 0xF2, 0xE2, 0xC2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x07, 0x1F, 0x38, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x7F, 0x3F, 0x1F, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00
|
||||
};
|
||||
//Heat flash icon 18x8
|
||||
static const unsigned char heat_icon[] = {
|
||||
0x30, 0x38, 0x18, 0x1C, 0x1C, 0x0E, 0x0E, 0xFF, 0xFF, 0xFF, 0xFF, 0x70, 0x70, 0x38, 0x38, 0x18, 0x1C, 0x0C
|
||||
};
|
||||
//Fan icon 16x8
|
||||
static const unsigned char fan_icon[] = {
|
||||
0x00, 0x38, 0x7C, 0x7C, 0x7C, 0x3D, 0xDB, 0xE7, 0xE7, 0xDB, 0xBC, 0x3E, 0x3E, 0x3E, 0x1C, 0x00
|
||||
};
|
||||
//Error icon 14x16
|
||||
static const unsigned char error_icon[] = {
|
||||
0xFA, 0xFD, 0xFD, 0x1D, 0xED, 0xF5, 0x95, 0x95, 0xF5, 0xED, 0x1D, 0xFD, 0xFD, 0xFA,
|
||||
0x07, 0x0F, 0x0F, 0x0E, 0x0D, 0x2B, 0x6A, 0x6A, 0x2B, 0x0D, 0x0E, 0x0F, 0x0F, 0x07
|
||||
};
|
||||
|
||||
|
||||
#endif /* INC_ICONS_H_ */
|
Reference in New Issue
Block a user