UI_Lib  a1366e08a59cc549a65fa26081e6409aa12f26d5
This is a user interface library for graphical LCDs. It offers many different controls and indicators that can be nested depending on the element types.
Loading...
Searching...
No Matches
UI_Icons.h
Go to the documentation of this file.
1
5
6#ifndef UI_ICONS_H_
7#define UI_ICONS_H_
8
9#include "../Core/UIElement.h"
10
11#define icon_info_width 16
12#define icon_info_height 16
13extern const unsigned char icon_info_bits[] PROGMEM;
14
15#define icon_warning_width 16
16#define icon_warning_height 16
17extern const unsigned char icon_warning_bits[] PROGMEM;
18
19#define icon_error_width 16
20#define icon_error_height 16
21extern const unsigned char icon_error_bits[] PROGMEM;
22
23#define icon_pencil_width 16
24#define icon_pencil_height 16
25extern const unsigned char icon_pencil_bits[] PROGMEM;
26
27#endif /* UI_ICONS_H_ */
Containing the abstract base class for all user interface elements (controls, indicators,...