diff --git a/Marlin/src/pins/pins_lcd.h b/Marlin/src/pins/pins_lcd.h index b64dc52f1fe7..4474273c10e2 100644 --- a/Marlin/src/pins/pins_lcd.h +++ b/Marlin/src/pins/pins_lcd.h @@ -193,6 +193,27 @@ #define SD_DETECT_PIN AUX2_08 #endif +#elif IS_RRD_FG_SC && !defined(LCD_PINS_EN) + + // RepRap Discount Full Graphics Smart Controller and compatible + + #define BEEPER_PIN EXP1_01_PIN + + #define BTN_ENC EXP1_02_PIN + #define BTN_EN1 EXP2_05_PIN + #define BTN_EN2 EXP2_03_PIN + + #define LCD_PINS_EN EXP1_03_PIN + #define LCD_PINS_RS EXP1_04_PIN + #define LCD_PINS_D4 EXP1_05_PIN + + #ifndef SDSS + #define SDSS EXP2_04_PIN + #endif + #ifndef SD_DETECT_PIN + #define SD_DETECT_PIN EXP2_07_PIN + #endif + #else // More displays to come diff --git a/Marlin/src/pins/sanguino/pins_ANET_10.h b/Marlin/src/pins/sanguino/pins_ANET_10.h index fd1d2f9a83ac..f4e6df7358a9 100644 --- a/Marlin/src/pins/sanguino/pins_ANET_10.h +++ b/Marlin/src/pins/sanguino/pins_ANET_10.h @@ -260,24 +260,6 @@ #endif -/** - * ==================================================================== - * =============== Alternative RepRapDiscount Wiring ================== - * ==================================================================== - * - * An alternative wiring scheme for the RepRapDiscount Full Graphics Display is - * published by oderwat on Thingiverse at https://www.thingiverse.com/thing:2103748. - * - * Using that adapter requires changing the pin definition as follows: - * #define SERVO0_PIN 27 // free for BLTouch/3D-Touch - * #define BEEPER_PIN 28 - * #define LCD_PINS_RS 30 - * #define LCD_PINS_EN 29 - * #define LCD_PINS_D4 17 - * - * The BLTouch pin becomes LCD:3 - */ - /** * ==================================================================== * ===================== LCD PINOUTS ==================================