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/MicroLCD.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/MicroLCD.h')
-rw-r--r-- | obdlogger/MicroLCD.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/obdlogger/MicroLCD.h b/obdlogger/MicroLCD.h index a22a2ce..1206414 100644 --- a/obdlogger/MicroLCD.h +++ b/obdlogger/MicroLCD.h @@ -21,6 +21,13 @@ typedef enum { #define FLAG_PIXEL_DOUBLE_V 4 #define FLAG_PIXEL_DOUBLE (FLAG_PIXEL_DOUBLE_H | FLAG_PIXEL_DOUBLE_V) +extern const PROGMEM unsigned char font5x8[][5]; +extern const PROGMEM unsigned char digits8x8[][8] ; +extern const PROGMEM unsigned char digits16x16[][32]; +extern const PROGMEM unsigned char digits16x24[][48]; +extern const PROGMEM unsigned char font8x16_doslike[][16]; +extern const PROGMEM unsigned char font8x16_terminal[][16]; + class LCD_Common { public: |