Added import of Wire Library to make I2C LCD support compilable
This commit is contained in:
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…
Reference in New Issue
Block a user