/* * air.h * * Created on: 07.01.2026 * Author: FSmilari */ #ifndef IMAGES_AIR_H_ #define IMAGES_AIR_H_ // 'air', 24x24px const unsigned char epd_bitmap_air [] PROGMEM = { 0x00, 0x0f, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x39, 0xc0, 0x00, 0x30, 0xc0, 0x0e, 0x30, 0xc0, 0x3f, 0x30, 0x00, 0x7b, 0xb8, 0x00, 0x61, 0x9f, 0xfe, 0x61, 0x8f, 0xfe, 0x60, 0x00, 0x00, 0x70, 0x00, 0x00, 0x3f, 0xff, 0xfe, 0x1f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0xff, 0xfe, 0x3f, 0xff, 0xfe, 0x70, 0x00, 0x00, 0x60, 0x00, 0x00, 0x61, 0x80, 0x00, 0x61, 0x80, 0x00, 0x73, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x1e, 0x00, 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_air //}; #endif /* IMAGES_AIR_H_ */