diff options
author | Stanley Huang <stanleyhuangyc@gmail.com> | 2014-03-18 22:37:18 +0800 |
---|---|---|
committer | Stanley Huang <stanleyhuangyc@gmail.com> | 2014-03-18 22:37:18 +0800 |
commit | be625d6ca4cf59fb4f4d0e2fe79d798a529b8c3d (patch) | |
tree | 5381012b46ad39362d5c08dbd7c82736eee73a6f /pbox/images.h | |
parent | 6aaf937f2c17d713966b3b3d647fa35980a3b8ce (diff) | |
download | 2021-arduino-obd-be625d6ca4cf59fb4f4d0e2fe79d798a529b8c3d.tar.gz 2021-arduino-obd-be625d6ca4cf59fb4f4d0e2fe79d798a529b8c3d.tar.bz2 2021-arduino-obd-be625d6ca4cf59fb4f4d0e2fe79d798a529b8c3d.zip |
Cleanup
Diffstat (limited to 'pbox/images.h')
-rw-r--r-- | pbox/images.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pbox/images.h b/pbox/images.h new file mode 100644 index 0000000..0a0f0b6 --- /dev/null +++ b/pbox/images.h @@ -0,0 +1,5 @@ +const PROGMEM uint8_t tick[16 *16 / 8] = +{0x00,0x80,0xC0,0xE0,0xC0,0x80,0x00,0x80,0xC0,0xE0,0xF0,0xF8,0xFC,0x78,0x30,0x00,0x00,0x01,0x03,0x07,0x0F,0x1F,0x1F,0x1F,0x0F,0x07,0x03,0x01,0x00,0x00,0x00,0x00}; + +const PROGMEM uint8_t cross[16 *16 / 8] = +{0x00,0x0C,0x1C,0x3C,0x78,0xF0,0xE0,0xC0,0xE0,0xF0,0x78,0x3C,0x1C,0x0C,0x00,0x00,0x00,0x30,0x38,0x3C,0x1E,0x0F,0x07,0x03,0x07,0x0F,0x1E,0x3C,0x38,0x30,0x00,0x00}; |