| 123456789101112131415161718192021222324252627 |
- /*
- * gear.h
- *
- * Created on: 07.01.2026
- * Author: FSmilari
- */
-
- #ifndef IMAGES_GEAR_H_
- #define IMAGES_GEAR_H_
-
- // 'gear', 24x24px
- const unsigned char epd_bitmap_gear [] PROGMEM = {
- 0x00, 0x3c, 0x00, 0x00, 0x24, 0x00, 0x00, 0x24, 0x00, 0x0e, 0x42, 0x70, 0x11, 0xc3, 0x88, 0x10,
- 0x00, 0x08, 0x10, 0x00, 0x08, 0x08, 0x00, 0x10, 0x08, 0x3c, 0x10, 0x18, 0x42, 0x18, 0xe0, 0x81,
- 0x07, 0x80, 0x81, 0x01, 0x80, 0x81, 0x01, 0xe0, 0x81, 0x07, 0x18, 0x42, 0x18, 0x08, 0x3c, 0x10,
- 0x08, 0x00, 0x10, 0x10, 0x00, 0x08, 0x10, 0x00, 0x08, 0x11, 0xc3, 0x88, 0x0e, 0x42, 0x70, 0x00,
- 0x24, 0x00, 0x00, 0x24, 0x00, 0x00, 0x3c, 0x00
- };
-
- // Array of all bitmaps for convenience. (Total bytes used to store images in PROGMEM = 96)
- //const int epd_bitmap_allArray_LEN = 1;
- //const unsigned char *epd_bitmap_allArray[1] = {
- // epd_bitmap_gear
- //};
-
-
- #endif /* IMAGES_GEAR_H_ */
|