mirror of
https://github.com/Genaker/LoraSA.git
synced 2026-06-11 09:25:00 +02:00
12 lines
225 B
C++
12 lines
225 B
C++
|
|
#ifndef __IMAGES_H__
|
|
#define __IMAGES_H__
|
|
#include <cstdint>
|
|
|
|
// Array of all bitmaps for convenience. (Total bytes used to store images in
|
|
// PROGMEM = 1040)
|
|
|
|
extern const uint8_t epd_bitmap_ucog[];
|
|
|
|
#endif // __IMAGES_H__
|