icons.h 261 B

12345678910111213
  1. #ifndef ICONS_H
  2. #define ICONS_H
  3. #define ICON_X 7
  4. #define ICON_Y 8
  5. #define ICON_SIZE (ICON_X * ICON_Y)
  6. const uint8_t icon_rise[ICON_SIZE];
  7. const uint8_t icon_rise_on[ICON_SIZE];
  8. const uint8_t icon_fall[ICON_SIZE];
  9. const uint8_t icon_toggle[ICON_SIZE];
  10. #endif