diff options
author | Stanley Huang <stanleyhuangyc@gmail.com> | 2016-06-10 09:22:09 +1000 |
---|---|---|
committer | Stanley Huang <stanleyhuangyc@gmail.com> | 2016-06-10 09:22:09 +1000 |
commit | 3c7d7fb4c31f08af0499ddae7dd9a04a28b8ae90 (patch) | |
tree | 3809f0ad3584112a954e7f2a3e9427d794005c53 /esplogger/images.h | |
parent | 34a126726ecf78ee5e9438c992cccc8fe7b6c0e8 (diff) | |
download | 2021-arduino-obd-3c7d7fb4c31f08af0499ddae7dd9a04a28b8ae90.tar.gz 2021-arduino-obd-3c7d7fb4c31f08af0499ddae7dd9a04a28b8ae90.tar.bz2 2021-arduino-obd-3c7d7fb4c31f08af0499ddae7dd9a04a28b8ae90.zip |
Experimental ESP8266 OBD-II data logger
Diffstat (limited to 'esplogger/images.h')
-rw-r--r-- | esplogger/images.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/esplogger/images.h b/esplogger/images.h new file mode 100644 index 0000000..226c8ec --- /dev/null +++ b/esplogger/images.h @@ -0,0 +1,5 @@ +const 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 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}; |