diff options
author | Stanley Huang <stanleyhuangyc@gmail.com> | 2013-11-07 22:29:31 +1100 |
---|---|---|
committer | Stanley Huang <stanleyhuangyc@gmail.com> | 2013-11-07 22:29:31 +1100 |
commit | 91c65f3d117d942b1b4f8fd4bcc77683c3ef71c8 (patch) | |
tree | 33b1b866f95b6df03f800dc30812c285038debca /obdlogger/images.h | |
parent | cabaa89f83d4e6124728f005c50fb0da8cbd0935 (diff) | |
download | 2021-arduino-obd-91c65f3d117d942b1b4f8fd4bcc77683c3ef71c8.tar.gz 2021-arduino-obd-91c65f3d117d942b1b4f8fd4bcc77683c3ef71c8.tar.bz2 2021-arduino-obd-91c65f3d117d942b1b4f8fd4bcc77683c3ef71c8.zip |
update OBD logger,
config.h added for storing configurations
default in acceleration timing mode
Diffstat (limited to 'obdlogger/images.h')
-rw-r--r-- | obdlogger/images.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/obdlogger/images.h b/obdlogger/images.h index 2f92ee1..0a0f0b6 100644 --- a/obdlogger/images.h +++ b/obdlogger/images.h @@ -1,5 +1,5 @@ -static const PROGMEM uint8_t tick[16 *16 / 8] = +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] = +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}; |