Browse Source

Fixed small error in lcd define statements.

pull/1/head
kiyoshigawa 11 years ago
parent
commit
2ca6c5fbd7
  1. 11
      Marlin/ultralcd_implementation_hitachi_HD44780.h

11
Marlin/ultralcd_implementation_hitachi_HD44780.h

@ -303,13 +303,8 @@ static void lcd_implementation_init()
B00000, B00000,
B00000 B00000
}; //thanks Sonny Mounicou }; //thanks Sonny Mounicou
#ifdef LCD_I2C_TYPE_PCA8574 #if defined(LCDI2C_TYPE_PCF8575)
lcd.init();
lcd.backlight();
#else
if defined(LCDI2C_TYPE_PCF8575)
lcd.begin(LCD_WIDTH, LCD_HEIGHT); lcd.begin(LCD_WIDTH, LCD_HEIGHT);
#endif
#ifdef LCD_I2C_PIN_BL #ifdef LCD_I2C_PIN_BL
lcd.setBacklightPin(LCD_I2C_PIN_BL,POSITIVE); lcd.setBacklightPin(LCD_I2C_PIN_BL,POSITIVE);
lcd.setBacklight(HIGH); lcd.setBacklight(HIGH);
@ -324,6 +319,10 @@ static void lcd_implementation_init()
lcd.setMCPType(LTI_TYPE_MCP23008); lcd.setMCPType(LTI_TYPE_MCP23008);
lcd.begin(LCD_WIDTH, LCD_HEIGHT); lcd.begin(LCD_WIDTH, LCD_HEIGHT);
#elif defined(LCD_I2C_TYPE_PCA8574)
lcd.init();
lcd.backlight();
#else #else
lcd.begin(LCD_WIDTH, LCD_HEIGHT); lcd.begin(LCD_WIDTH, LCD_HEIGHT);
#endif #endif

Loading…
Cancel
Save