Fixed small error in lcd define statements.
This commit is contained in:
parent
6a81291c57
commit
2ca6c5fbd7
|
@ -303,13 +303,8 @@ static void lcd_implementation_init()
|
|||
B00000,
|
||||
B00000
|
||||
}; //thanks Sonny Mounicou
|
||||
#ifdef LCD_I2C_TYPE_PCA8574
|
||||
lcd.init();
|
||||
lcd.backlight();
|
||||
#else
|
||||
if defined(LCDI2C_TYPE_PCF8575)
|
||||
#if defined(LCDI2C_TYPE_PCF8575)
|
||||
lcd.begin(LCD_WIDTH, LCD_HEIGHT);
|
||||
#endif
|
||||
#ifdef LCD_I2C_PIN_BL
|
||||
lcd.setBacklightPin(LCD_I2C_PIN_BL,POSITIVE);
|
||||
lcd.setBacklight(HIGH);
|
||||
|
@ -324,6 +319,10 @@ static void lcd_implementation_init()
|
|||
lcd.setMCPType(LTI_TYPE_MCP23008);
|
||||
lcd.begin(LCD_WIDTH, LCD_HEIGHT);
|
||||
|
||||
#elif defined(LCD_I2C_TYPE_PCA8574)
|
||||
lcd.init();
|
||||
lcd.backlight();
|
||||
|
||||
#else
|
||||
lcd.begin(LCD_WIDTH, LCD_HEIGHT);
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue