diff options
author | Stanley Huang <stanleyhuangyc@gmail.com> | 2015-08-18 10:16:50 +1000 |
---|---|---|
committer | Stanley Huang <stanleyhuangyc@gmail.com> | 2015-08-18 10:16:50 +1000 |
commit | 6a1af67c1ce67f5ce07fe601785f309eef7567ce (patch) | |
tree | b176b5d30331801b0c3e892d1dc0f41b8624f1d1 /bikelogger/images.h | |
parent | 45309cc02d17e47fe751637e5135071acffca6d0 (diff) | |
download | 2021-arduino-obd-6a1af67c1ce67f5ce07fe601785f309eef7567ce.tar.gz 2021-arduino-obd-6a1af67c1ce67f5ce07fe601785f309eef7567ce.tar.bz2 2021-arduino-obd-6a1af67c1ce67f5ce07fe601785f309eef7567ce.zip |
Cycling data logger prototype
Diffstat (limited to 'bikelogger/images.h')
-rw-r--r-- | bikelogger/images.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bikelogger/images.h b/bikelogger/images.h new file mode 100644 index 0000000..2f92ee1 --- /dev/null +++ b/bikelogger/images.h @@ -0,0 +1,5 @@ +static 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}; + +static 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}; |