14 lines
261 B
C
14 lines
261 B
C
|
#ifndef ICONS_H
|
||
|
#define ICONS_H
|
||
|
|
||
|
#define ICON_X 7
|
||
|
#define ICON_Y 8
|
||
|
#define ICON_SIZE (ICON_X * ICON_Y)
|
||
|
|
||
|
const uint8_t icon_rise[ICON_SIZE];
|
||
|
const uint8_t icon_rise_on[ICON_SIZE];
|
||
|
const uint8_t icon_fall[ICON_SIZE];
|
||
|
const uint8_t icon_toggle[ICON_SIZE];
|
||
|
|
||
|
#endif
|