Add library selection between GLCD and char. LCD

hackerspace-green
Dirk Eichel 2013-03-19 20:03:47 +01:00
parent 4a141a694f
commit 26d8863111
1 changed files with 5 additions and 1 deletions

View File

@ -34,7 +34,11 @@
#include "pins.h"
#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
#if DIGIPOTSS_PIN > -1