| 12345678910111213141516171819202122232425262728 |
- /*
- * DiveBitmap.h
- *
- * Created on: 14.02.2022
- * Author: FSmilari
- */
-
- #ifndef IMAGES_DIVEBITMAP_H_
- #define IMAGES_DIVEBITMAP_H_
-
- #define imageSide_D 15
-
- // 'Dive', 15x15px
- const unsigned char epd_bitmap_Dive [] PROGMEM = {
- 0x01, 0x00, 0x07, 0xc0, 0x09, 0x20, 0x13, 0x90, 0x25, 0x48, 0x49, 0x24, 0x53, 0x94, 0xff, 0xfe,
- 0x53, 0x94, 0x49, 0x24, 0x25, 0x48, 0x13, 0x90, 0x09, 0x20, 0x07, 0xc0, 0x01, 0x00
- };
-
- // Array of all bitmaps for convenience. (Total bytes used to store images in PROGMEM = 48)
- //const int epd_bitmap_allArray_LEN = 1;
- //const unsigned char* epd_bitmap_allArray[1] = {
- // epd_bitmap_Dive
- //};
-
-
-
-
- #endif /* IMAGES_DIVEBITMAP_H_ */
|