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