mirror of
https://github.com/SemvdH/OBD2-car-display.git
synced 2025-12-15 04:01:04 +00:00
16 lines
196 B
C
16 lines
196 B
C
#ifndef OBD2_DISPLAY_H
|
|
#define OBD2_DISPLAY_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
/* display size */
|
|
#define LCD_W 480
|
|
#define LCD_H 320
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif // !OBD2_DISPLAY_H
|