Add library selection between GLCD and char. LCD
This commit is contained in:
parent
4a141a694f
commit
26d8863111
1 changed files with 5 additions and 1 deletions
|
@ -34,7 +34,11 @@
|
||||||
#include "pins.h"
|
#include "pins.h"
|
||||||
|
|
||||||
#ifdef ULTRA_LCD
|
#ifdef ULTRA_LCD
|
||||||
#include <LiquidCrystal.h>
|
#ifdef DOGLCD
|
||||||
|
#include <U8glib.h> // library for graphics LCD by Oli Kraus (https://code.google.com/p/u8glib/)
|
||||||
|
#else
|
||||||
|
#include <LiquidCrystal.h> // library for character LCD
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if DIGIPOTSS_PIN > -1
|
#if DIGIPOTSS_PIN > -1
|
||||||
|
|
Reference in a new issue