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