Added import of Wire Library to make I2C LCD support compilable

master
Bob Clough 12 years ago
parent 2b567d1df5
commit b6209c86dd

@ -34,7 +34,12 @@
#include "pins.h"
#ifdef ULTRA_LCD
#include <LiquidCrystal.h>
#ifdef LCD_I2C
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
#else
#include <LiquidCrystal.h>
#endif
#endif
#if DIGIPOTSS_PIN > -1

@ -11,6 +11,7 @@
#define LCD_CLASS LiquidCrystalRus
#else
#ifdef LCD_I2C
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
#define LCD_CLASS LiquidCrystal_I2C
#else

Loading…
Cancel
Save