aiie/images.h

20 lines
332 B
C
Raw Normal View History

2018-01-07 19:43:17 +00:00
#ifdef TEENSYDUINO
#include <Arduino.h>
#else
#include <stdint.h>
#endif
#define DBITMAP_HEIGHT 240
#define DBITMAP_WIDTH 320
2018-01-07 19:43:17 +00:00
// RGB
extern const uint8_t displayBitmap[];
2018-01-07 19:43:17 +00:00
// 43 x 20 RGB
extern const uint8_t driveLatch[];
2018-01-07 19:43:17 +00:00
// 43 x 20 RGB
extern const uint8_t driveLatchOpen[];
// 10 x 11, RGBA
2018-01-07 19:43:17 +00:00
extern const uint8_t appleBitmap[];