1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
-
-
-
-
-
-
-
-
-
- #include "Configuration.h"
- #include "pins.h"
-
- #ifdef ULTRA_LCD
- #if defined(LCD_I2C_TYPE_PCF8575)
- #include <Wire.h>
- #include <LiquidCrystal_I2C.h>
- #elif defined(LCD_I2C_TYPE_MCP23017) || defined(LCD_I2C_TYPE_MCP23008)
- #include <Wire.h>
- #include <LiquidTWI2.h>
- #elif defined(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 defined(DIGIPOTSS_PIN) && DIGIPOTSS_PIN > -1
- #include <SPI.h>
- #endif
-
- #if defined(DIGIPOT_I2C)
- #include <Wire.h>
- #endif
|