GT2560 v4.1B, YHCB2004 SPI character LCD (#21091)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
This commit is contained in:
		| @@ -1953,6 +1953,14 @@ | ||||
| // | ||||
| //#define REPRAP_DISCOUNT_SMART_CONTROLLER | ||||
|  | ||||
| // | ||||
| // GT2560 (YHCB2004) LCD Display | ||||
| // | ||||
| // Requires Testato, Koepel softwarewire library and | ||||
| // Andriy Golovnya's LiquidCrystal_AIP31068 library. | ||||
| // | ||||
| //#define YHCB2004 | ||||
|  | ||||
| // | ||||
| // Original RADDS LCD Display+Encoder+SDCardReader | ||||
| // http://doku.radds.org/dokumentation/lcd-display/ | ||||
|   | ||||
| @@ -50,6 +50,10 @@ | ||||
|  | ||||
|   #define MINIPANEL | ||||
|  | ||||
| #elif ENABLED(YHCB2004) | ||||
|  | ||||
|   #define IS_ULTIPANEL 1 | ||||
|  | ||||
| #elif ENABLED(CARTESIO_UI) | ||||
|  | ||||
|   #define DOGLCD | ||||
|   | ||||
| @@ -2296,8 +2296,6 @@ static_assert(hbm[Z_AXIS] >= 0, "HOMING_BUMP_MM.Z must be greater than or equal | ||||
| #if 1 < 0 \ | ||||
|   + ENABLED(REPRAP_DISCOUNT_SMART_CONTROLLER) \ | ||||
|   + ENABLED(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER) \ | ||||
|   + ENABLED(ULTIPANEL) \ | ||||
|   + ENABLED(ULTRA_LCD) \ | ||||
|   + (ENABLED(U8GLIB_SSD1306) && DISABLED(IS_U8GLIB_SSD1306)) \ | ||||
|   + (ENABLED(MINIPANEL) && NONE(MKS_MINI_12864, ENDER2_STOCKDISPLAY)) \ | ||||
|   + (ENABLED(MKS_MINI_12864) && DISABLED(MKS_LCD12864)) \ | ||||
| @@ -2346,6 +2344,9 @@ static_assert(hbm[Z_AXIS] >= 0, "HOMING_BUMP_MM.Z must be greater than or equal | ||||
|   + ENABLED(U8GLIB_SH1106_EINSTART) \ | ||||
|   + ENABLED(ULTI_CONTROLLER) \ | ||||
|   + ENABLED(ULTIMAKERCONTROLLER) \ | ||||
|   + ENABLED(ULTIPANEL) \ | ||||
|   + ENABLED(ULTRA_LCD) \ | ||||
|   + ENABLED(YHCB2004) \ | ||||
|   + ENABLED(ZONESTAR_LCD) | ||||
|   #error "Please select only one LCD controller option." | ||||
| #endif | ||||
|   | ||||
| @@ -93,6 +93,10 @@ | ||||
|  | ||||
|   LCD_CLASS lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE); | ||||
|  | ||||
| #elif ENABLED(YHCB2004) | ||||
|  | ||||
|   LCD_CLASS lcd(YHCB2004_CLK, 20, 4, YHCB2004_MOSI, YHCB2004_MISO); // CLK, cols, rows, MOSI, MISO | ||||
|  | ||||
| #else | ||||
|  | ||||
|   // Standard direct-connected LCD implementations | ||||
|   | ||||
| @@ -90,6 +90,11 @@ | ||||
|   #include <LiquidCrystal_I2C.h> | ||||
|   #define LCD_CLASS LiquidCrystal_I2C | ||||
|  | ||||
| #elif ENABLED(YHCB2004) | ||||
|  | ||||
|   #include <LiquidCrystal_AIP31068_SPI.h> | ||||
|   #define LCD_CLASS LiquidCrystal_AIP31068_SPI | ||||
|  | ||||
| #else | ||||
|  | ||||
|   // Standard directly connected LCD implementations | ||||
|   | ||||
| @@ -22,7 +22,7 @@ | ||||
| #pragma once | ||||
|  | ||||
| /** | ||||
|  * GT2560 RevB + GT2560 V3.0 + GT2560 V3.1 + GT2560 V4.0 pin assignment | ||||
|  * Geeetech GT2560 RevB + GT2560 3.0/3.1 + GT2560 4.0/4.1 pin assignments | ||||
|  */ | ||||
|  | ||||
| #if NOT_TARGET(__AVR_ATmega1280__, __AVR_ATmega2560__) | ||||
| @@ -30,13 +30,13 @@ | ||||
| #endif | ||||
|  | ||||
| #ifndef BOARD_INFO_NAME | ||||
|   #define BOARD_INFO_NAME "GT2560 V3.0" | ||||
|   #define BOARD_INFO_NAME "GT2560 RevB/3.x/4.x" | ||||
| #endif | ||||
|  | ||||
| // | ||||
| // Servos | ||||
| // | ||||
| #define SERVO0_PIN                            11  //13 untested  3Dtouch | ||||
| #define SERVO0_PIN                            11  // 13 untested  3Dtouch | ||||
|  | ||||
| // | ||||
| // Limit Switches | ||||
| @@ -142,7 +142,10 @@ | ||||
| #define SDSS                                  53 | ||||
| #define LED_PIN                               13  // Use 6 (case light) for external LED. 13 is internal (yellow) LED. | ||||
| #define PS_ON_PIN                             12 | ||||
| #define SUICIDE_PIN                           54  // This pin must be enabled at boot to keep power flowing | ||||
|  | ||||
| #if NUM_RUNOUT_SENSORS < 3 | ||||
|   #define SUICIDE_PIN                         54  // This pin must be enabled at boot to keep power flowing | ||||
| #endif | ||||
|  | ||||
| #ifndef CASE_LIGHT_PIN | ||||
|   #define CASE_LIGHT_PIN                       6  // 21 | ||||
| @@ -153,26 +156,48 @@ | ||||
| // | ||||
| #define BEEPER_PIN                            18 | ||||
|  | ||||
| #ifndef LCD_PINS_RS | ||||
|   #define LCD_PINS_RS                         20 | ||||
| #endif | ||||
| #ifndef LCD_PINS_ENABLE | ||||
|   #define LCD_PINS_ENABLE                     17 | ||||
| #endif | ||||
| #ifndef LCD_PINS_D4 | ||||
|   #define LCD_PINS_D4                         16 | ||||
| #endif | ||||
| #ifndef LCD_PINS_D5 | ||||
|   #define LCD_PINS_D5                         21 | ||||
| #endif | ||||
| #ifndef LCD_PINS_D6 | ||||
|   #define LCD_PINS_D6                          5 | ||||
| #endif | ||||
| #ifndef LCD_PINS_D7 | ||||
|   #define LCD_PINS_D7                         36 | ||||
| #if ENABLED(YHCB2004) | ||||
|   #ifndef YHCB2004_SCK | ||||
|     #define YHCB2004_SCK                      5 | ||||
|   #endif | ||||
|   #ifndef YHCB2004_MOSI | ||||
|     #define YHCB2004_MOSI                     21 | ||||
|   #endif | ||||
|   #ifndef YHCB2004_MISO | ||||
|     #define YHCB2004_MISO                     36 | ||||
|   #endif | ||||
| #elif HAS_WIRED_LCD | ||||
|   #ifndef LCD_PINS_RS | ||||
|     #define LCD_PINS_RS                       20 | ||||
|   #endif | ||||
|   #ifndef LCD_PINS_ENABLE | ||||
|     #define LCD_PINS_ENABLE                   17 | ||||
|   #endif | ||||
|   #ifndef LCD_PINS_D4 | ||||
|     #define LCD_PINS_D4                       16 | ||||
|   #endif | ||||
|   #ifndef LCD_PINS_D5 | ||||
|     #define LCD_PINS_D5                       21 | ||||
|   #endif | ||||
|   #ifndef LCD_PINS_D6 | ||||
|     #define LCD_PINS_D6                        5 | ||||
|   #endif | ||||
|   #ifndef LCD_PINS_D7 | ||||
|     #define LCD_PINS_D7                       36 | ||||
|   #endif | ||||
| #endif | ||||
|  | ||||
| #if IS_NEWPANEL | ||||
| #if ENABLED(YHCB2004) | ||||
|   #ifndef BTN_EN1 | ||||
|     #define BTN_EN1                           16 | ||||
|   #endif | ||||
|   #ifndef BTN_EN2 | ||||
|     #define BTN_EN2                           17 | ||||
|   #endif | ||||
|   #ifndef BTN_ENC | ||||
|     #define BTN_ENC                           19 | ||||
|   #endif | ||||
| #elif IS_NEWPANEL | ||||
|   #ifndef BTN_EN1 | ||||
|     #define BTN_EN1                           42 | ||||
|   #endif | ||||
|   | ||||
| @@ -22,7 +22,7 @@ | ||||
| #pragma once | ||||
|  | ||||
| /** | ||||
|  * Geeetech A20M pin assignment | ||||
|  * Geeetech A20M board pin assignments | ||||
|  */ | ||||
|  | ||||
| #define LCD_PINS_RS                            5 | ||||
| @@ -30,7 +30,7 @@ | ||||
| #define LCD_PINS_D4                           21 | ||||
| #define LCD_PINS_D7                            6 | ||||
|  | ||||
| #define SPEAKER  // The speaker can produce tones | ||||
| #define SPEAKER                                  // The speaker can produce tones | ||||
|  | ||||
| #if IS_NEWPANEL | ||||
|   #define BTN_EN1                             16 | ||||
|   | ||||
| @@ -21,9 +21,9 @@ | ||||
|  */ | ||||
| #pragma once | ||||
|  | ||||
| /***************************************************************** | ||||
|  * GT2560 V3.0 pin assignment (for Mecreator 2) | ||||
|  *****************************************************************/ | ||||
| /** | ||||
|  * Geeetech GT2560 V 3.0 board pin assignments (for Mecreator 2) | ||||
|  */ | ||||
|  | ||||
| #define BOARD_INFO_NAME "GT2560 V3.0 (MC2)" | ||||
|  | ||||
|   | ||||
| @@ -22,7 +22,7 @@ | ||||
| #pragma once | ||||
|  | ||||
| /** | ||||
|  * HJC2560-C Rev2.x pin assignments | ||||
|  * Geeetech HJC2560-C Rev 2.x board pin assignments | ||||
|  */ | ||||
|  | ||||
| #if NOT_TARGET(__AVR_ATmega2560__) | ||||
|   | ||||
| @@ -22,8 +22,7 @@ | ||||
| #pragma once | ||||
|  | ||||
| /** | ||||
|  * 24 May 2018 - @chepo for STM32F103VET6 | ||||
|  * Schematic: https://github.com/chepo92/Smartto/blob/master/circuit_diagram/Rostock301/Hardware_GTM32_PRO_VB.pdf | ||||
|  * Geeetech GTM32 Mini board pin assignments | ||||
|  */ | ||||
|  | ||||
| #if NOT_TARGET(__STM32F1__) | ||||
|   | ||||
| @@ -22,8 +22,7 @@ | ||||
| #pragma once | ||||
|  | ||||
| /** | ||||
|  * 24 May 2018 - @chepo for STM32F103VET6 | ||||
|  * Schematic: https://github.com/chepo92/Smartto/blob/master/circuit_diagram/Rostock301/Hardware_GTM32_PRO_VB.pdf | ||||
|  * Geeetech GTM32 Mini A30 board pin assignments | ||||
|  */ | ||||
|  | ||||
| #if NOT_TARGET(__STM32F1__) | ||||
|   | ||||
| @@ -22,15 +22,15 @@ | ||||
| #pragma once | ||||
|  | ||||
| /** | ||||
|  * 24 May 2018 - @chepo for STM32F103VET6 | ||||
|  * Schematic: https://github.com/chepo92/Smartto/blob/master/circuit_diagram/Rostock301/Hardware_GTM32_PRO_VB.pdf | ||||
|  * Geeetech GTM32 Pro VB/VD board pin assignments | ||||
|  * http://www.geeetech.com/wiki/index.php/File:Hardware_GTM32_PRO_VB.pdf | ||||
|  */ | ||||
|  | ||||
| #if NOT_TARGET(__STM32F1__) | ||||
|   #error "Oops! Select an STM32F1 board in 'Tools > Board.'" | ||||
| #endif | ||||
|  | ||||
| #define BOARD_INFO_NAME      "GTM32 Pro VB" | ||||
| #define BOARD_INFO_NAME      "GTM32 Pro VB/VD" | ||||
| #define DEFAULT_MACHINE_NAME "STM32F103VET6" | ||||
|  | ||||
| #define BOARD_NO_NATIVE_USB | ||||
|   | ||||
| @@ -22,15 +22,14 @@ | ||||
| #pragma once | ||||
|  | ||||
| /** | ||||
|  * 24 May 2018 - @chepo for STM32F103VET6 | ||||
|  * Schematic: https://github.com/chepo92/Smartto/blob/master/circuit_diagram/Rostock301/Hardware_GTM32_PRO_VB.pdf | ||||
|  * Geeetech GTM32 Rev. B board pin assignments | ||||
|  */ | ||||
|  | ||||
| #if NOT_TARGET(__STM32F1__) | ||||
|   #error "Oops! Select an STM32F1 board in 'Tools > Board.'" | ||||
| #endif | ||||
|  | ||||
| #define BOARD_INFO_NAME      "GTM32 Pro VB" | ||||
| #define BOARD_INFO_NAME      "GTM32 Rev B" | ||||
| #define DEFAULT_MACHINE_NAME "M201" | ||||
|  | ||||
| #define BOARD_NO_NATIVE_USB | ||||
|   | ||||
		Reference in New Issue
	
	Block a user