From a5033c36528348afe700527bdc62024f16b0b6b3 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Fri, 3 Jul 2015 21:29:31 -0700 Subject: [PATCH] Enable LCD_PIN_RESET if it exists (PR#2375) --- Marlin/dogm_lcd_implementation.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Marlin/dogm_lcd_implementation.h b/Marlin/dogm_lcd_implementation.h index bdf0c0978..1e58f03f6 100644 --- a/Marlin/dogm_lcd_implementation.h +++ b/Marlin/dogm_lcd_implementation.h @@ -197,6 +197,11 @@ static void lcd_implementation_init() { digitalWrite(LCD_PIN_BL, HIGH); #endif + #ifdef LCD_PIN_RESET + pinMode(LCD_PIN_RESET, OUTPUT); + digitalWrite(LCD_PIN_RESET, HIGH); + #endif + u8g.setContrast(lcd_contrast); // FIXME: remove this workaround // Uncomment this if you have the first generation (V1.10) of STBs board