♻️ LCD_PINS_ENABLE => LCD_PINS_EN
This commit is contained in:
parent
56f2da8c9d
commit
cd5dc7203c
|
@ -27,6 +27,7 @@
|
|||
* Hardware Pin : 02 03 06 07 01 05 15 16 17 18 23 24 25 26 64 63 13 12 46 45 44 43 78 77 76 75 74 73 72 71 60 59 58 57 56 55 54 53 50 70 52 51 42 41 40 39 38 37 36 35 22 21 20 19 97 96 95 94 93 92 91 90 89 88 87 86 85 84 83 82 | 04 08 09 10 11 14 27 28 29 30 31 32 33 34 47 48 49 61 62 65 66 67 68 69 79 80 81 98 99 100
|
||||
* Port : E0 E1 E4 E5 G5 E3 H3 H4 H5 H6 B4 B5 B6 B7 J1 J0 H1 H0 D3 D2 D1 D0 A0 A1 A2 A3 A4 A5 A6 A7 C7 C6 C5 C4 C3 C2 C1 C0 D7 G2 G1 G0 L7 L6 L5 L4 L3 L2 L1 L0 B3 B2 B1 B0 F0 F1 F2 F3 F4 F5 F6 F7 K0 K1 K2 K3 K4 K5 K6 K7 | E2 E6 E7 xx xx H2 H7 G3 G4 xx xx xx xx xx D4 D5 D6 xx xx J2 J3 J4 J5 J6 J7 xx xx xx xx xx
|
||||
* Logical Pin : 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | 78 79 80 xx xx 84 85 71 70 xx xx xx xx xx 81 82 83 xx xx 72 73 75 76 77 74 xx xx xx xx xx
|
||||
* Analog Input : 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
||||
*
|
||||
* Arduino Pin Layout video: https://youtu.be/rIqeVCX09FA
|
||||
* AVR alternate pin function overview video: https://youtu.be/1yd8wuI5Plg
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include "../../core/macros.h"
|
||||
#include "../../inc/MarlinConfigPre.h"
|
||||
|
||||
#if BOTH(HAS_MARLINUI_U8GLIB, SDSUPPORT) && (LCD_PINS_D4 == SD_SCK_PIN || LCD_PINS_ENABLE == SD_MOSI_PIN || DOGLCD_SCK == SD_SCK_PIN || DOGLCD_MOSI == SD_MOSI_PIN)
|
||||
#if BOTH(HAS_MARLINUI_U8GLIB, SDSUPPORT) && (LCD_PINS_D4 == SD_SCK_PIN || LCD_PINS_EN == SD_MOSI_PIN || DOGLCD_SCK == SD_SCK_PIN || DOGLCD_MOSI == SD_MOSI_PIN)
|
||||
#define SOFTWARE_SPI // If the SD card and LCD adapter share the same SPI pins, then software SPI is currently
|
||||
// needed due to the speed and mode required for communicating with each device being different.
|
||||
// This requirement can be removed if the SPI access to these devices is updated to use
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
|
||||
#include "../../core/macros.h"
|
||||
|
||||
#if BOTH(SDSUPPORT, HAS_MARLINUI_U8GLIB) && (LCD_PINS_D4 == SD_SCK_PIN || LCD_PINS_ENABLE == SD_MOSI_PIN || DOGLCD_SCK == SD_SCK_PIN || DOGLCD_MOSI == SD_MOSI_PIN)
|
||||
#if BOTH(SDSUPPORT, HAS_MARLINUI_U8GLIB) && (LCD_PINS_D4 == SD_SCK_PIN || LCD_PINS_EN == SD_MOSI_PIN || DOGLCD_SCK == SD_SCK_PIN || DOGLCD_MOSI == SD_MOSI_PIN)
|
||||
#define SOFTWARE_SPI // If the SD card and LCD adapter share the same SPI pins, then software SPI is currently
|
||||
// needed due to the speed and mode required for communicating with each device being different.
|
||||
// This requirement can be removed if the SPI access to these devices is updated to use
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include "../../core/macros.h"
|
||||
#include "../../inc/MarlinConfigPre.h"
|
||||
|
||||
#if BOTH(HAS_MARLINUI_U8GLIB, SDSUPPORT) && (LCD_PINS_D4 == SD_SCK_PIN || LCD_PINS_ENABLE == SD_MOSI_PIN || DOGLCD_SCK == SD_SCK_PIN || DOGLCD_MOSI == SD_MOSI_PIN)
|
||||
#if BOTH(HAS_MARLINUI_U8GLIB, SDSUPPORT) && (LCD_PINS_D4 == SD_SCK_PIN || LCD_PINS_EN == SD_MOSI_PIN || DOGLCD_SCK == SD_SCK_PIN || DOGLCD_MOSI == SD_MOSI_PIN)
|
||||
#define SOFTWARE_SPI // If the SD card and LCD adapter share the same SPI pins, then software SPI is currently
|
||||
// needed due to the speed and mode required for communicating with each device being different.
|
||||
// This requirement can be removed if the SPI access to these devices is updated to use
|
||||
|
|
|
@ -700,6 +700,8 @@
|
|||
#error "DEFAULT_STEPPER_DEACTIVE_TIME is now DEFAULT_STEPPER_TIMEOUT_SEC."
|
||||
#elif defined(TFT_SHARED_SPI)
|
||||
#error "TFT_SHARED_SPI is now TFT_SHARED_IO."
|
||||
#elif defined(LCD_PINS_ENABLE)
|
||||
#error "LCD_PINS_ENABLE is now LCD_PINS_EN."
|
||||
#endif
|
||||
|
||||
// L64xx stepper drivers have been removed
|
||||
|
|
|
@ -108,7 +108,7 @@
|
|||
#else
|
||||
|
||||
// Standard direct-connected LCD implementations
|
||||
LCD_CLASS lcd(LCD_PINS_RS, LCD_PINS_ENABLE, LCD_PINS_D4, LCD_PINS_D5, LCD_PINS_D6, LCD_PINS_D7);
|
||||
LCD_CLASS lcd(LCD_PINS_RS, LCD_PINS_EN, LCD_PINS_D4, LCD_PINS_D5, LCD_PINS_D6, LCD_PINS_D7);
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -36,17 +36,15 @@
|
|||
|
||||
// RepRapWorld Graphical LCD
|
||||
|
||||
|
||||
#if DISABLED(SDSUPPORT) && (LCD_PINS_D4 == SD_SCK_PIN) && (LCD_PINS_ENABLE == SD_MOSI_PIN)
|
||||
#if DISABLED(SDSUPPORT) && (LCD_PINS_D4 == SD_SCK_PIN) && (LCD_PINS_EN == SD_MOSI_PIN)
|
||||
#define U8G_CLASS U8GLIB_ST7920_128X64_4X_HAL
|
||||
#define U8G_PARAM LCD_PINS_RS
|
||||
#elif ENABLED(SDSUPPORT) && __SAMD21__
|
||||
|
||||
#define U8G_CLASS U8GLIB_ST7920_128X64_4X
|
||||
#define U8G_PARAM LCD_PINS_RS
|
||||
#else
|
||||
#define U8G_CLASS U8GLIB_ST7920_128X64_4X
|
||||
#define U8G_PARAM LCD_PINS_D4, LCD_PINS_ENABLE, LCD_PINS_RS
|
||||
#define U8G_PARAM LCD_PINS_D4, LCD_PINS_EN, LCD_PINS_RS
|
||||
#endif
|
||||
|
||||
#elif IS_U8GLIB_ST7920
|
||||
|
@ -54,7 +52,7 @@
|
|||
// RepRap Discount Full Graphics Smart Controller
|
||||
// and other variant LCDs using ST7920
|
||||
|
||||
#if DISABLED(SDSUPPORT) && (LCD_PINS_D4 == SD_SCK_PIN) && (LCD_PINS_ENABLE == SD_MOSI_PIN)
|
||||
#if DISABLED(SDSUPPORT) && (LCD_PINS_D4 == SD_SCK_PIN) && (LCD_PINS_EN == SD_MOSI_PIN)
|
||||
#define U8G_CLASS U8GLIB_ST7920_128X64_4X_HAL // 2 stripes, HW SPI (Shared with SD card. Non-standard LCD adapter on AVR.)
|
||||
#define U8G_PARAM LCD_PINS_RS
|
||||
#else
|
||||
|
@ -63,7 +61,7 @@
|
|||
#else
|
||||
#define U8G_CLASS U8GLIB_ST7920_128X64_RRD // Adjust stripes with PAGE_HEIGHT in ultralcd_st7920_u8glib_rrd.h
|
||||
#endif
|
||||
#define U8G_PARAM LCD_PINS_D4, LCD_PINS_ENABLE, LCD_PINS_RS // AVR version ignores these pin settings
|
||||
#define U8G_PARAM LCD_PINS_D4, LCD_PINS_EN, LCD_PINS_RS // AVR version ignores these pin settings
|
||||
// HAL version uses these pin settings
|
||||
#endif
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include "../../HAL/shared/Delay.h"
|
||||
|
||||
#define ST7920_CLK_PIN LCD_PINS_D4
|
||||
#define ST7920_DAT_PIN LCD_PINS_ENABLE
|
||||
#define ST7920_DAT_PIN LCD_PINS_EN
|
||||
#define ST7920_CS_PIN LCD_PINS_RS
|
||||
|
||||
//#define PAGE_HEIGHT 8 // 128 byte framebuffer
|
||||
|
|
|
@ -42,13 +42,13 @@
|
|||
#elif ENABLED(CR10_TFT_PINMAP) // FYSETC S6 - STM32F4 - with TOUCH_UI_ULTIPANEL
|
||||
|
||||
#define CLCD_USE_SOFT_SPI
|
||||
#define CLCD_SOFT_SPI_SCLK LCD_PINS_D4 // PORTA1 Pin 6
|
||||
#define CLCD_SOFT_SPI_MOSI LCD_PINS_ENABLE // PORTC1 Pin 8
|
||||
#define CLCD_SPI_CS LCD_PINS_RS // PORTA3 Pin 7
|
||||
#define CLCD_SOFT_SPI_MISO 16 // PORTC0 BTN_ENC Pin 2
|
||||
#define CLCD_MOD_RESET 11 // PORTD3 BTN_EN1 Pin 3
|
||||
#define CLCD_AUX_0 10 // PORTD2 BTN_EN2 Pin 5
|
||||
#define CLCD_AUX_1 BEEPER_PIN // PORTA4 Pin 1
|
||||
#define CLCD_SOFT_SPI_SCLK LCD_PINS_D4 // PORTA1 Pin 6
|
||||
#define CLCD_SOFT_SPI_MOSI LCD_PINS_EN // PORTC1 Pin 8
|
||||
#define CLCD_SPI_CS LCD_PINS_RS // PORTA3 Pin 7
|
||||
#define CLCD_SOFT_SPI_MISO 16 // PORTC0 BTN_ENC Pin 2
|
||||
#define CLCD_MOD_RESET 11 // PORTD3 BTN_EN1 Pin 3
|
||||
#define CLCD_AUX_0 10 // PORTD2 BTN_EN2 Pin 5
|
||||
#define CLCD_AUX_1 BEEPER_PIN // PORTA4 Pin 1
|
||||
|
||||
#elif ENABLED(AO_EXP1_DEPRECATED_PINMAP)
|
||||
|
||||
|
@ -60,7 +60,7 @@
|
|||
#define CLCD_MOD_RESET LCD_PINS_D4
|
||||
#define CLCD_SPI_CS LCD_PINS_D5
|
||||
|
||||
#define CLCD_AUX_0 LCD_PINS_ENABLE
|
||||
#define CLCD_AUX_0 LCD_PINS_EN
|
||||
#define CLCD_AUX_1 BTN_ENC
|
||||
#define CLCD_AUX_2 BEEPER_PIN
|
||||
|
||||
|
@ -93,7 +93,7 @@
|
|||
* functionality over software SPI.
|
||||
*/
|
||||
|
||||
#define CLCD_MOD_RESET LCD_PINS_ENABLE
|
||||
#define CLCD_MOD_RESET LCD_PINS_EN
|
||||
#define CLCD_SPI_CS LCD_PINS_D4
|
||||
|
||||
#define CLCD_USE_SOFT_SPI
|
||||
|
|
|
@ -158,7 +158,7 @@
|
|||
|
||||
#if HAS_WIRED_LCD
|
||||
#define BEEPER_PIN EXP1_01_PIN
|
||||
#define LCD_PINS_ENABLE EXP1_03_PIN
|
||||
#define LCD_PINS_EN EXP1_03_PIN
|
||||
#define LCD_PINS_RS EXP1_04_PIN
|
||||
#define BTN_ENC EXP1_02_PIN
|
||||
#define BTN_EN1 EXP2_03_PIN
|
||||
|
|
|
@ -126,7 +126,7 @@
|
|||
#if HAS_WIRED_LCD
|
||||
|
||||
#define LCD_PINS_RS 13
|
||||
#define LCD_PINS_ENABLE 17
|
||||
#define LCD_PINS_EN 17
|
||||
#define LCD_PINS_D4 16
|
||||
|
||||
#if ENABLED(CR10_STOCKDISPLAY)
|
||||
|
|
|
@ -123,6 +123,6 @@
|
|||
#define BTN_EN2 EXP2_05_PIN
|
||||
|
||||
#define LCD_PINS_RS EXP1_04_PIN
|
||||
#define LCD_PINS_ENABLE EXP1_03_PIN
|
||||
#define LCD_PINS_EN EXP1_03_PIN
|
||||
#define LCD_PINS_D4 EXP1_05_PIN
|
||||
#endif
|
||||
|
|
|
@ -474,13 +474,13 @@
|
|||
#if ENABLED(REPRAPWORLD_GRAPHICAL_LCD)
|
||||
|
||||
#define LCD_PINS_RS 49 // CS chip select /SS chip slave select
|
||||
#define LCD_PINS_ENABLE 51 // SID (MOSI)
|
||||
#define LCD_PINS_EN 51 // SID (MOSI)
|
||||
#define LCD_PINS_D4 52 // SCK (CLK) clock
|
||||
|
||||
#elif BOTH(IS_NEWPANEL, PANEL_ONE)
|
||||
|
||||
#define LCD_PINS_RS 40
|
||||
#define LCD_PINS_ENABLE 42
|
||||
#define LCD_PINS_EN 42
|
||||
#define LCD_PINS_D4 65
|
||||
#define LCD_PINS_D5 66
|
||||
#define LCD_PINS_D6 44
|
||||
|
@ -491,7 +491,7 @@
|
|||
#if ENABLED(CR10_STOCKDISPLAY)
|
||||
|
||||
#define LCD_PINS_RS 27
|
||||
#define LCD_PINS_ENABLE 29
|
||||
#define LCD_PINS_EN 29
|
||||
#define LCD_PINS_D4 25
|
||||
|
||||
#if !IS_NEWPANEL
|
||||
|
@ -501,7 +501,7 @@
|
|||
#elif ENABLED(ZONESTAR_LCD)
|
||||
|
||||
#define LCD_PINS_RS 64
|
||||
#define LCD_PINS_ENABLE 44
|
||||
#define LCD_PINS_EN 44
|
||||
#define LCD_PINS_D4 63
|
||||
#define LCD_PINS_D5 40
|
||||
#define LCD_PINS_D6 42
|
||||
|
@ -519,7 +519,7 @@
|
|||
#define DOGLCD_A0 LCD_PINS_DC
|
||||
#else
|
||||
#define LCD_PINS_RS 16
|
||||
#define LCD_PINS_ENABLE 17
|
||||
#define LCD_PINS_EN 17
|
||||
#define LCD_PINS_D4 23
|
||||
#define LCD_PINS_D5 25
|
||||
#define LCD_PINS_D6 27
|
||||
|
|
|
@ -127,7 +127,7 @@
|
|||
|
||||
#define SD_DETECT_PIN P0_27 // EXP2-7
|
||||
#define LCD_PINS_RS P0_16 // EXP1-4
|
||||
#define LCD_PINS_ENABLE P0_18 // (MOSI) EXP1-3
|
||||
#define LCD_PINS_EN P0_18 // (MOSI) EXP1-3
|
||||
#define LCD_PINS_D4 P0_15 // (SCK) EXP1-5
|
||||
|
||||
#if BOTH(HAS_MARLINUI_HD44780, IS_RRD_SC)
|
||||
|
@ -159,7 +159,7 @@
|
|||
*
|
||||
* There are 6 PWMS. Each PWM can be assigned to one of two pins.
|
||||
*
|
||||
* PWM1.1 P0_18 LCD_PINS_ENABLE
|
||||
* PWM1.1 P0_18 LCD_PINS_EN
|
||||
* PWM1.1 P2_0 X_STEP_PIN
|
||||
* PWM1.2 P1_20 <none>
|
||||
* PWM1.2 P2_1 Y_STEP_PIN
|
||||
|
|
|
@ -104,7 +104,7 @@
|
|||
|
||||
#define SD_DETECT_PIN P0_27 // EXP2-7
|
||||
#define LCD_PINS_RS P0_16 // EXP1-4
|
||||
#define LCD_PINS_ENABLE P0_18 // (MOSI) EXP1-3
|
||||
#define LCD_PINS_EN P0_18 // (MOSI) EXP1-3
|
||||
#define LCD_PINS_D4 P0_15 // (SCK) EXP1-5
|
||||
|
||||
#if BOTH(HAS_MARLINUI_HD44780, IS_RRD_SC)
|
||||
|
@ -138,7 +138,7 @@
|
|||
*
|
||||
* There are 6 PWMS. Each PWM can be assigned to one of two pins.
|
||||
*
|
||||
* PWM1.1 P0_18 LCD_PINS_ENABLE
|
||||
* PWM1.1 P0_18 LCD_PINS_EN
|
||||
* PWM1.1 P2_0 X_STEP_PIN
|
||||
* PWM1.2 P1_20 <none>
|
||||
* PWM1.2 P2_1 Y_STEP_PIN
|
||||
|
|
|
@ -112,7 +112,7 @@
|
|||
|
||||
#define LCD_SDSS EXP2_04_PIN
|
||||
#define LCD_PINS_RS EXP1_04_PIN
|
||||
#define LCD_PINS_ENABLE EXP2_06_PIN
|
||||
#define LCD_PINS_EN EXP2_06_PIN
|
||||
#define LCD_PINS_D4 EXP2_02_PIN
|
||||
|
||||
#if ENABLED(MKS_MINI_12864)
|
||||
|
|
|
@ -254,7 +254,7 @@
|
|||
#define BTN_EN2 EXP1_07_PIN
|
||||
#define BTN_ENC EXP1_03_PIN
|
||||
|
||||
#define LCD_PINS_ENABLE EXP1_06_PIN
|
||||
#define LCD_PINS_EN EXP1_06_PIN
|
||||
#define LCD_PINS_D4 EXP1_04_PIN
|
||||
|
||||
#elif ENABLED(WYH_L12864)
|
||||
|
@ -299,7 +299,7 @@
|
|||
#define BTN_EN2 EXP1_05_PIN
|
||||
#define BTN_ENC EXP1_02_PIN // (58) open-drain
|
||||
|
||||
#define LCD_PINS_ENABLE EXP1_08_PIN
|
||||
#define LCD_PINS_EN EXP1_08_PIN
|
||||
#define LCD_PINS_D4 EXP1_06_PIN
|
||||
|
||||
#elif HAS_ADC_BUTTONS
|
||||
|
@ -385,7 +385,7 @@
|
|||
#define BTN_EN2 EXP2_05_PIN // (33) J3-4 & AUX-4
|
||||
#define BTN_ENC EXP1_02_PIN // (58) open-drain
|
||||
|
||||
#define LCD_PINS_ENABLE EXP1_03_PIN
|
||||
#define LCD_PINS_EN EXP1_03_PIN
|
||||
#define LCD_PINS_D4 EXP1_05_PIN
|
||||
|
||||
#define LCD_SDSS EXP2_04_PIN // (16) J3-7 & AUX-4
|
||||
|
|
|
@ -316,7 +316,7 @@
|
|||
#define BTN_EN2 EXP1_07_PIN
|
||||
#define BTN_ENC EXP1_01_PIN
|
||||
|
||||
#define LCD_PINS_ENABLE EXP1_03_PIN
|
||||
#define LCD_PINS_EN EXP1_03_PIN
|
||||
#define LCD_PINS_D4 EXP1_05_PIN
|
||||
#define BEEPER_PIN EXP1_08_PIN
|
||||
|
||||
|
@ -352,7 +352,7 @@
|
|||
#define BTN_EN2 EXP1_07_PIN
|
||||
#define BTN_ENC EXP1_03_PIN
|
||||
|
||||
#define LCD_PINS_ENABLE EXP1_06_PIN
|
||||
#define LCD_PINS_EN EXP1_06_PIN
|
||||
#define LCD_PINS_D4 EXP1_04_PIN
|
||||
|
||||
#define BEEPER_PIN EXP1_01_PIN
|
||||
|
@ -364,7 +364,7 @@
|
|||
#define BTN_EN2 EXP1_05_PIN
|
||||
#define BTN_ENC EXP1_02_PIN
|
||||
|
||||
#define LCD_PINS_ENABLE EXP1_08_PIN
|
||||
#define LCD_PINS_EN EXP1_08_PIN
|
||||
#define LCD_PINS_D4 EXP1_06_PIN
|
||||
|
||||
#elif ENABLED(ENDER2_STOCKDISPLAY)
|
||||
|
@ -429,7 +429,7 @@
|
|||
#define BTN_EN1 EXP2_03_PIN // (31) J3-2 & AUX-4
|
||||
#define BTN_EN2 EXP2_05_PIN // (33) J3-4 & AUX-4
|
||||
|
||||
#define LCD_PINS_ENABLE EXP1_03_PIN
|
||||
#define LCD_PINS_EN EXP1_03_PIN
|
||||
#define LCD_PINS_D4 EXP1_05_PIN
|
||||
|
||||
#define LCD_SDSS EXP2_04_PIN // (16) J3-7 & AUX-4
|
||||
|
|
|
@ -141,7 +141,7 @@
|
|||
#define BTN_EN2 P1_24
|
||||
#define BTN_ENC P1_25
|
||||
#define LCD_PINS_RS P0_20
|
||||
#define LCD_PINS_ENABLE P0_21
|
||||
#define LCD_PINS_EN P0_21
|
||||
#define LCD_PINS_D4 P2_11
|
||||
#define LCD_PINS_D5 P0_22
|
||||
#define LCD_PINS_D6 P1_29
|
||||
|
|
|
@ -238,7 +238,7 @@
|
|||
#define BTN_EN2 P3_25 // EXP2.3
|
||||
#define LCD_PINS_RS P0_16 // EXP1.4
|
||||
#define LCD_SDSS P0_28 // EXP2.4
|
||||
#define LCD_PINS_ENABLE P0_18 // EXP1.3
|
||||
#define LCD_PINS_EN P0_18 // EXP1.3
|
||||
#define LCD_PINS_D4 P0_15 // EXP1.5
|
||||
#if EITHER(VIKI2, miniVIKI)
|
||||
#define DOGLCD_SCK SD_SCK_PIN
|
||||
|
@ -257,8 +257,8 @@
|
|||
* Pins 6, 7 & 8 on EXP2 are no connects. That means a second special
|
||||
* cable will be needed if the RGB LEDs are to be active.
|
||||
*/
|
||||
#define DOGLCD_CS LCD_PINS_ENABLE // EXP1.3 (LCD_EN on FYSETC schematic)
|
||||
#define DOGLCD_A0 LCD_PINS_RS // EXP1.4 (LCD_A0 on FYSETC schematic)
|
||||
#define DOGLCD_CS P0_18 // EXP1.3 (LCD_EN on FYSETC schematic)
|
||||
#define DOGLCD_A0 P0_16 // EXP1.4 (LCD_A0 on FYSETC schematic)
|
||||
#define DOGLCD_SCK P2_11 // J8-5 (SCK on FYSETC schematic)
|
||||
#define DOGLCD_MOSI P4_28 // J8-6 (MOSI on FYSETC schematic)
|
||||
|
||||
|
|
|
@ -287,7 +287,7 @@
|
|||
#define BTN_EN1 EXP1_03_PIN
|
||||
#define BTN_EN2 EXP1_05_PIN
|
||||
|
||||
#define LCD_PINS_ENABLE EXP1_08_PIN
|
||||
#define LCD_PINS_EN EXP1_08_PIN
|
||||
#define LCD_PINS_D4 EXP1_06_PIN
|
||||
|
||||
#elif HAS_SPI_TFT // Config for Classic UI (emulated DOGM) and Color UI
|
||||
|
@ -306,7 +306,7 @@
|
|||
#define TOUCH_BUTTONS_HW_SPI_DEVICE 2
|
||||
|
||||
// Disable any LCD related PINs config
|
||||
#define LCD_PINS_ENABLE -1
|
||||
#define LCD_PINS_EN -1
|
||||
#define LCD_PINS_RS -1
|
||||
|
||||
#ifndef TFT_BUFFER_SIZE
|
||||
|
@ -351,7 +351,7 @@
|
|||
|
||||
#define LCD_PINS_RS EXP1_04_PIN
|
||||
|
||||
#define LCD_PINS_ENABLE EXP1_03_PIN
|
||||
#define LCD_PINS_EN EXP1_03_PIN
|
||||
#define LCD_PINS_D4 EXP1_05_PIN
|
||||
|
||||
#if ENABLED(FYSETC_MINI_12864)
|
||||
|
|
|
@ -301,7 +301,7 @@
|
|||
#define BTN_ENC P3_25 // J3-4 & AUX-4
|
||||
|
||||
#define LCD_PINS_RS P0_15 // J3-9 & AUX-4 (CS)
|
||||
#define LCD_PINS_ENABLE P0_18 // J3-10 & AUX-3 (SID, MOSI)
|
||||
#define LCD_PINS_EN P0_18 // J3-10 & AUX-3 (SID, MOSI)
|
||||
#define LCD_PINS_D4 P2_06 // J3-8 & AUX-3 (SCK, CLK)
|
||||
|
||||
#elif ENABLED(ZONESTAR_LCD)
|
||||
|
@ -394,7 +394,7 @@
|
|||
#endif
|
||||
|
||||
#define LCD_BACKLIGHT_PIN P0_16 //(16) J3-7 & AUX-4 - only used on DOGLCD controllers
|
||||
#define LCD_PINS_ENABLE P0_18 // (51) (MOSI) J3-10 & AUX-3
|
||||
#define LCD_PINS_EN P0_18 // (51) (MOSI) J3-10 & AUX-3
|
||||
#define LCD_PINS_D4 P0_15 // (52) (SCK) J3-9 & AUX-3
|
||||
#if IS_ULTIPANEL
|
||||
#define LCD_PINS_D5 P1_17 // (71) ENET_MDIO
|
||||
|
|
|
@ -98,7 +98,7 @@
|
|||
|
||||
#if IS_RRD_FG_SC
|
||||
#define LCD_PINS_RS P0_16
|
||||
#define LCD_PINS_ENABLE P0_18
|
||||
#define LCD_PINS_EN P0_18
|
||||
#define LCD_PINS_D4 P0_15
|
||||
#define LCD_PINS_D5 P1_00
|
||||
#define LCD_PINS_D6 P1_01
|
||||
|
|
|
@ -108,7 +108,6 @@
|
|||
//
|
||||
// Display
|
||||
//
|
||||
|
||||
#if EITHER(VIKI2, miniVIKI)
|
||||
#define BEEPER_PIN P1_31
|
||||
#define DOGLCD_A0 P2_06
|
||||
|
|
|
@ -128,7 +128,7 @@
|
|||
#define BTN_ENC P3_25 // J3-4 & AUX-4
|
||||
|
||||
#define LCD_PINS_RS P0_15 // J3-9 & AUX-4 (CS)
|
||||
#define LCD_PINS_ENABLE P0_18 // J3-10 & AUX-3 (SID, MOSI)
|
||||
#define LCD_PINS_EN P0_18 // J3-10 & AUX-3 (SID, MOSI)
|
||||
#define LCD_PINS_D4 P2_06 // J3-8 & AUX-3 (SCK, CLK)
|
||||
|
||||
#else
|
||||
|
@ -142,7 +142,7 @@
|
|||
#define LCD_PINS_RS P0_16 // (16) J3-7 & AUX-4
|
||||
#define LCD_SDSS P0_16 // (16) J3-7 & AUX-4
|
||||
#define LCD_BACKLIGHT_PIN P0_16 // (16) J3-7 & AUX-4 - only used on DOGLCD controllers
|
||||
#define LCD_PINS_ENABLE P0_18 // (51) (MOSI) J3-10 & AUX-3
|
||||
#define LCD_PINS_EN P0_18 // (51) (MOSI) J3-10 & AUX-3
|
||||
#define LCD_PINS_D4 P0_15 // (52) (SCK) J3-9 & AUX-3
|
||||
|
||||
#define DOGLCD_A0 P2_06 // (59) J3-8 & AUX-2
|
||||
|
|
|
@ -237,7 +237,7 @@
|
|||
#define BTN_ENC EXP1_02_PIN
|
||||
|
||||
#define LCD_PINS_RS EXP1_07_PIN
|
||||
#define LCD_PINS_ENABLE EXP1_08_PIN
|
||||
#define LCD_PINS_EN EXP1_08_PIN
|
||||
#define LCD_PINS_D4 EXP1_06_PIN
|
||||
|
||||
#elif ENABLED(ZONESTAR_LCD) // ANET A8 LCD Controller - Must convert to 3.3V - CONNECTING TO 5V WILL DAMAGE THE BOARD!
|
||||
|
@ -247,7 +247,7 @@
|
|||
#endif
|
||||
|
||||
#define LCD_PINS_RS EXP1_06_PIN
|
||||
#define LCD_PINS_ENABLE EXP1_02_PIN
|
||||
#define LCD_PINS_EN EXP1_02_PIN
|
||||
#define LCD_PINS_D4 EXP1_07_PIN
|
||||
#define LCD_PINS_D5 EXP1_05_PIN
|
||||
#define LCD_PINS_D6 EXP1_03_PIN
|
||||
|
|
|
@ -149,7 +149,7 @@
|
|||
|
||||
#define LCD_PINS_RS P0_16 // EXP1-4
|
||||
#define LCD_SDSS P0_28 // EXP2-4
|
||||
#define LCD_PINS_ENABLE P0_18 // EXP1-3
|
||||
#define LCD_PINS_EN P0_18 // EXP1-3
|
||||
#define LCD_PINS_D4 P0_15 // EXP1-5
|
||||
|
||||
#define KILL_PIN P2_11 // EXP2-10
|
||||
|
|
|
@ -215,7 +215,7 @@
|
|||
|
||||
#define LCD_PINS_RS P0_16 // EXP1-4
|
||||
#define LCD_SDSS P0_28 // EXP2-4
|
||||
#define LCD_PINS_ENABLE P0_18 // EXP1-3
|
||||
#define LCD_PINS_EN P0_18 // EXP1-3
|
||||
#define LCD_PINS_D4 P0_15 // EXP1-5
|
||||
|
||||
#define KILL_PIN P2_11 // EXP2-10
|
||||
|
|
|
@ -155,7 +155,7 @@
|
|||
//
|
||||
#define BEEPER_PIN P2_07
|
||||
#define LCD_PINS_RS P2_10
|
||||
#define LCD_PINS_ENABLE P0_22
|
||||
#define LCD_PINS_EN P0_22
|
||||
#define LCD_PINS_D4 P1_19
|
||||
#define LCD_PINS_D5 P2_08
|
||||
#define LCD_PINS_D6 P1_30
|
||||
|
|
|
@ -316,7 +316,7 @@
|
|||
#define BTN_EN1 EXP1_03_PIN
|
||||
#define BTN_EN2 EXP1_05_PIN
|
||||
|
||||
#define LCD_PINS_ENABLE EXP1_08_PIN
|
||||
#define LCD_PINS_EN EXP1_08_PIN
|
||||
#define LCD_PINS_D4 EXP1_06_PIN
|
||||
|
||||
#else
|
||||
|
@ -355,7 +355,7 @@
|
|||
#define TOUCH_BUTTONS_HW_SPI_DEVICE 2
|
||||
|
||||
// Disable any LCD related PINs config
|
||||
#define LCD_PINS_ENABLE -1
|
||||
#define LCD_PINS_EN -1
|
||||
#define LCD_PINS_RS -1
|
||||
|
||||
#ifndef TFT_BUFFER_SIZE
|
||||
|
@ -369,7 +369,7 @@
|
|||
|
||||
#define LCD_PINS_RS EXP1_04_PIN
|
||||
|
||||
#define LCD_PINS_ENABLE EXP1_03_PIN
|
||||
#define LCD_PINS_EN EXP1_03_PIN
|
||||
#define LCD_PINS_D4 EXP1_05_PIN
|
||||
|
||||
#if ENABLED(FYSETC_MINI_12864)
|
||||
|
|
|
@ -142,7 +142,7 @@
|
|||
// EXP1 Pins
|
||||
#define BEEPER_PIN P1_31 // EXP1 Pin 1
|
||||
#define BTN_ENC P1_30 // EXP1 Pin 2
|
||||
#define LCD_PINS_ENABLE P0_18 // EXP1 Pin 3 (MOSI)
|
||||
#define LCD_PINS_EN P0_18 // EXP1 Pin 3 (MOSI)
|
||||
#define LCD_PINS_RS P0_16 // EXP1 Pin 4 (CS)
|
||||
#define LCD_PINS_D4 P0_15 // EXP1 Pin 5 (SCK)
|
||||
// EXP2 Pins
|
||||
|
|
|
@ -185,7 +185,7 @@
|
|||
*/
|
||||
#define BEEPER_PIN EXP1_01_PIN
|
||||
#define LCD_PINS_RS EXP1_07_PIN
|
||||
#define LCD_PINS_ENABLE EXP1_08_PIN
|
||||
#define LCD_PINS_EN EXP1_08_PIN
|
||||
#define LCD_PINS_D4 EXP1_06_PIN
|
||||
#define KILL_PIN EXP1_04_PIN
|
||||
|
||||
|
|
|
@ -113,7 +113,7 @@
|
|||
// LCD / Controller
|
||||
//
|
||||
#define LCD_PINS_RS 19
|
||||
#define LCD_PINS_ENABLE 42
|
||||
#define LCD_PINS_EN 42
|
||||
#define LCD_PINS_D4 18
|
||||
#define LCD_PINS_D5 38
|
||||
#define LCD_PINS_D6 41
|
||||
|
|
|
@ -135,7 +135,7 @@
|
|||
#define LCD_BACKLIGHT_PIN -1
|
||||
#else
|
||||
#define LCD_PINS_RS 20
|
||||
#define LCD_PINS_ENABLE 17
|
||||
#define LCD_PINS_EN 17
|
||||
#define LCD_PINS_D4 16
|
||||
#define LCD_PINS_D5 21
|
||||
#define LCD_PINS_D6 5
|
||||
|
@ -155,7 +155,7 @@
|
|||
#define SHIFT_EN_PIN 17
|
||||
|
||||
#define LCD_PINS_RS 16
|
||||
#define LCD_PINS_ENABLE 5
|
||||
#define LCD_PINS_EN 5
|
||||
#define LCD_PINS_D4 6
|
||||
#define LCD_PINS_D5 21
|
||||
#define LCD_PINS_D6 20
|
||||
|
|
|
@ -180,8 +180,8 @@
|
|||
#ifndef LCD_PINS_RS
|
||||
#define LCD_PINS_RS 20
|
||||
#endif
|
||||
#ifndef LCD_PINS_ENABLE
|
||||
#define LCD_PINS_ENABLE 17
|
||||
#ifndef LCD_PINS_EN
|
||||
#define LCD_PINS_EN 17
|
||||
#endif
|
||||
#ifndef LCD_PINS_D4
|
||||
#define LCD_PINS_D4 16
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
*/
|
||||
|
||||
#define LCD_PINS_RS 5
|
||||
#define LCD_PINS_ENABLE 36
|
||||
#define LCD_PINS_EN 36
|
||||
#define LCD_PINS_D4 21
|
||||
#define LCD_PINS_D7 6
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#define BOARD_INFO_NAME "GT2560 4.x"
|
||||
|
||||
#define LCD_PINS_RS 5
|
||||
#define LCD_PINS_ENABLE 36
|
||||
#define LCD_PINS_EN 36
|
||||
#define LCD_PINS_D4 21
|
||||
#define LCD_PINS_D7 6
|
||||
|
||||
|
|
|
@ -129,7 +129,7 @@
|
|||
#if IS_NEWPANEL
|
||||
|
||||
#define LCD_PINS_RS 20 // LCD_CS
|
||||
#define LCD_PINS_ENABLE 15 // LCD_SDA
|
||||
#define LCD_PINS_EN 15 // LCD_SDA
|
||||
#define LCD_PINS_D4 14 // LCD_SCK
|
||||
|
||||
#if ENABLED(HJC_LCD_SMART_CONTROLLER)
|
||||
|
@ -161,7 +161,7 @@
|
|||
#define SHIFT_EN_PIN 17
|
||||
|
||||
#define LCD_PINS_RS 16
|
||||
#define LCD_PINS_ENABLE 5
|
||||
#define LCD_PINS_EN 5
|
||||
#define LCD_PINS_D4 6
|
||||
#define LCD_PINS_D5 21
|
||||
#define LCD_PINS_D6 20
|
||||
|
|
|
@ -123,7 +123,7 @@
|
|||
|
||||
#if HAS_WIRED_LCD
|
||||
#define LCD_PINS_RS 20
|
||||
#define LCD_PINS_ENABLE 30
|
||||
#define LCD_PINS_EN 30
|
||||
#define LCD_PINS_D4 14
|
||||
#define LCD_PINS_D5 21
|
||||
#define LCD_PINS_D6 5
|
||||
|
|
|
@ -112,7 +112,7 @@
|
|||
#if HAS_WIRED_LCD && IS_NEWPANEL
|
||||
|
||||
#define LCD_PINS_RS 16
|
||||
#define LCD_PINS_ENABLE 17
|
||||
#define LCD_PINS_EN 17
|
||||
#define LCD_PINS_D4 23
|
||||
#define LCD_PINS_D5 25
|
||||
#define LCD_PINS_D6 27
|
||||
|
|
|
@ -134,7 +134,7 @@
|
|||
#if HAS_WIRED_LCD
|
||||
|
||||
#define LCD_PINS_RS 14
|
||||
#define LCD_PINS_ENABLE 15
|
||||
#define LCD_PINS_EN 15
|
||||
#define LCD_PINS_D4 30
|
||||
#define LCD_PINS_D5 31
|
||||
#define LCD_PINS_D6 32
|
||||
|
|
|
@ -155,14 +155,14 @@
|
|||
#if ENABLED(REPRAPWORLD_GRAPHICAL_LCD)
|
||||
|
||||
#define LCD_PINS_RS 56 // CS chip select / SS chip slave select
|
||||
#define LCD_PINS_ENABLE 51 // SID (MOSI)
|
||||
#define LCD_PINS_EN 51 // SID (MOSI)
|
||||
#define LCD_PINS_D4 52 // SCK (CLK) clock
|
||||
#define SD_DETECT_PIN 35
|
||||
|
||||
#else
|
||||
|
||||
#define LCD_PINS_RS 32
|
||||
#define LCD_PINS_ENABLE 31
|
||||
#define LCD_PINS_EN 31
|
||||
#define LCD_PINS_D4 14
|
||||
#define LCD_PINS_D5 30
|
||||
#define LCD_PINS_D6 39
|
||||
|
|
|
@ -192,7 +192,7 @@
|
|||
#if IS_RRD_FG_SC
|
||||
|
||||
#define LCD_PINS_RS 33 // C4: LCD-STROBE
|
||||
#define LCD_PINS_ENABLE 72 // J2: LEFT
|
||||
#define LCD_PINS_EN 72 // J2: LEFT
|
||||
#define LCD_PINS_D4 35 // C2: LCD-CLK
|
||||
#define LCD_PINS_D5 32 // C5: RLED
|
||||
#define LCD_PINS_D6 34 // C3: LCD-DATA
|
||||
|
|
|
@ -108,7 +108,7 @@
|
|||
#if ENABLED(REPRAPWORLD_GRAPHICAL_LCD)
|
||||
|
||||
#define LCD_PINS_RS 15 // CS chip select /SS chip slave select
|
||||
#define LCD_PINS_ENABLE 11 // SID (MOSI)
|
||||
#define LCD_PINS_EN 11 // SID (MOSI)
|
||||
#define LCD_PINS_D4 10 // SCK (CLK) clock
|
||||
|
||||
#define BTN_EN1 18
|
||||
|
@ -120,7 +120,7 @@
|
|||
#else
|
||||
|
||||
#define LCD_PINS_RS -1
|
||||
#define LCD_PINS_ENABLE -1
|
||||
#define LCD_PINS_EN -1
|
||||
|
||||
// Buttons are directly attached using keypad
|
||||
#define BTN_EN1 -1
|
||||
|
|
|
@ -126,7 +126,7 @@
|
|||
// OVERLORD OLED pins
|
||||
#define LCD_PINS_RS 20
|
||||
#define LCD_PINS_D5 21
|
||||
#define LCD_PINS_ENABLE 15
|
||||
#define LCD_PINS_EN 15
|
||||
#define LCD_PINS_D4 14
|
||||
#define LCD_PINS_D6 5
|
||||
#define LCD_PINS_D7 6
|
||||
|
|
|
@ -142,7 +142,7 @@
|
|||
|
||||
#if HAS_WIRED_LCD
|
||||
#define LCD_PINS_RS 33
|
||||
#define LCD_PINS_ENABLE 30
|
||||
#define LCD_PINS_EN 30
|
||||
#define LCD_PINS_D4 35
|
||||
#define LCD_PINS_D5 32
|
||||
#define LCD_PINS_D6 37
|
||||
|
|
|
@ -77,7 +77,7 @@
|
|||
#if HAS_WIRED_LCD
|
||||
#if IS_U8GLIB_ST7920 // SPI GLCD 12864 ST7920
|
||||
#define LCD_PINS_RS 30
|
||||
#define LCD_PINS_ENABLE 20
|
||||
#define LCD_PINS_EN 20
|
||||
#define LCD_PINS_D4 25
|
||||
#define BEEPER_PIN 29
|
||||
#define BTN_EN1 19
|
||||
|
|
|
@ -929,8 +929,8 @@
|
|||
#if _EXISTS(LCD_PINS_D7)
|
||||
REPORT_NAME_DIGITAL(__LINE__, LCD_PINS_D7)
|
||||
#endif
|
||||
#if _EXISTS(LCD_PINS_ENABLE)
|
||||
REPORT_NAME_DIGITAL(__LINE__, LCD_PINS_ENABLE)
|
||||
#if _EXISTS(LCD_PINS_EN)
|
||||
REPORT_NAME_DIGITAL(__LINE__, LCD_PINS_EN)
|
||||
#endif
|
||||
#if _EXISTS(LCD_PINS_RS)
|
||||
REPORT_NAME_DIGITAL(__LINE__, LCD_PINS_RS)
|
||||
|
|
|
@ -211,13 +211,13 @@
|
|||
|
||||
#if ENABLED(CR10_STOCKDISPLAY)
|
||||
#define LCD_PINS_RS EXP1_07_PIN
|
||||
#define LCD_PINS_ENABLE EXP1_08_PIN
|
||||
#define LCD_PINS_EN EXP1_08_PIN
|
||||
#define LCD_PINS_D4 EXP1_06_PIN
|
||||
#define BTN_EN1 EXP1_03_PIN
|
||||
#define BTN_EN2 EXP1_05_PIN
|
||||
#else
|
||||
#define LCD_PINS_RS EXP1_04_PIN
|
||||
#define LCD_PINS_ENABLE EXP1_03_PIN
|
||||
#define LCD_PINS_EN EXP1_03_PIN
|
||||
#define LCD_PINS_D4 EXP1_05_PIN
|
||||
#define LCD_PINS_D5 EXP1_06_PIN
|
||||
#define LCD_PINS_D6 EXP1_07_PIN
|
||||
|
|
|
@ -178,13 +178,13 @@
|
|||
|
||||
#if ENABLED(CR10_STOCKDISPLAY)
|
||||
#define LCD_PINS_RS 85
|
||||
#define LCD_PINS_ENABLE 71
|
||||
#define LCD_PINS_EN 71
|
||||
#define LCD_PINS_D4 70
|
||||
#define BTN_EN1 18
|
||||
#define BTN_EN2 19
|
||||
#else
|
||||
#define LCD_PINS_RS 82
|
||||
#define LCD_PINS_ENABLE 18 // On 0.6b, use 61
|
||||
#define LCD_PINS_EN 18 // On 0.6b, use 61
|
||||
#define LCD_PINS_D4 19 // On 0.6b, use 59
|
||||
#define LCD_PINS_D5 70
|
||||
#define LCD_PINS_D6 85
|
||||
|
|
|
@ -162,7 +162,7 @@
|
|||
#define BTN_ENC 21
|
||||
|
||||
#define LCD_PINS_RS 38
|
||||
#define LCD_PINS_ENABLE 5
|
||||
#define LCD_PINS_EN 5
|
||||
#define LCD_PINS_D4 14
|
||||
#define LCD_PINS_D5 15
|
||||
#define LCD_PINS_D6 32
|
||||
|
@ -181,7 +181,7 @@
|
|||
#define BTN_ENC 9
|
||||
|
||||
#define LCD_PINS_RS 82
|
||||
#define LCD_PINS_ENABLE 18
|
||||
#define LCD_PINS_EN 18
|
||||
#define LCD_PINS_D4 19
|
||||
#define LCD_PINS_D5 70
|
||||
#define LCD_PINS_D6 85
|
||||
|
|
|
@ -204,7 +204,7 @@
|
|||
#if IS_ULTIPANEL || TOUCH_UI_ULTIPANEL
|
||||
|
||||
#define LCD_PINS_RS 70
|
||||
#define LCD_PINS_ENABLE 71
|
||||
#define LCD_PINS_EN 71
|
||||
#define LCD_PINS_D4 72
|
||||
#define LCD_PINS_D5 73
|
||||
#define LCD_PINS_D6 74
|
||||
|
@ -264,7 +264,7 @@
|
|||
//#define SHIFT_EN_PIN 17
|
||||
|
||||
#define LCD_PINS_RS 75
|
||||
#define LCD_PINS_ENABLE 17
|
||||
#define LCD_PINS_EN 17
|
||||
#define LCD_PINS_D4 23
|
||||
#define LCD_PINS_D5 25
|
||||
#define LCD_PINS_D6 27
|
||||
|
|
|
@ -126,7 +126,7 @@
|
|||
// LCD / Controller
|
||||
//
|
||||
#define LCD_PINS_RS 70 // Ext2_5
|
||||
#define LCD_PINS_ENABLE 71 // Ext2_7
|
||||
#define LCD_PINS_EN 71 // Ext2_7
|
||||
#define LCD_PINS_D4 72 // Ext2_9 ?
|
||||
#define LCD_PINS_D5 73 // Ext2_11 ?
|
||||
#define LCD_PINS_D6 74 // Ext2_13
|
||||
|
|
|
@ -136,7 +136,7 @@
|
|||
|
||||
// TODO: Remap EXP1/2 based on adapter
|
||||
#define LCD_PINS_RS 27
|
||||
#define LCD_PINS_ENABLE 29
|
||||
#define LCD_PINS_EN 29
|
||||
#define LCD_PINS_D4 37
|
||||
#define LCD_PINS_D5 35
|
||||
#define LCD_PINS_D6 33
|
||||
|
|
|
@ -90,7 +90,7 @@
|
|||
#if HAS_WIRED_LCD
|
||||
#if ENABLED(ZONESTAR_LCD)
|
||||
#define LCD_PINS_RS 2
|
||||
#define LCD_PINS_ENABLE 36
|
||||
#define LCD_PINS_EN 36
|
||||
#define LCD_PINS_D4 37
|
||||
#define LCD_PINS_D5 34
|
||||
#define LCD_PINS_D6 35
|
||||
|
|
|
@ -174,7 +174,7 @@
|
|||
#define SD_DETECT_PIN 49
|
||||
#define KILL_PIN 41
|
||||
#define LCD_PINS_RS 16
|
||||
#define LCD_PINS_ENABLE 17
|
||||
#define LCD_PINS_EN 17
|
||||
#define LCD_PINS_D4 23
|
||||
#define LCD_PINS_D5 25
|
||||
#define LCD_PINS_D6 27
|
||||
|
|
|
@ -175,7 +175,7 @@
|
|||
#endif
|
||||
|
||||
#define LCD_PINS_RS 16
|
||||
#define LCD_PINS_ENABLE 17
|
||||
#define LCD_PINS_EN 17
|
||||
#define LCD_PINS_D4 23
|
||||
#define LCD_PINS_D5 25
|
||||
#define LCD_PINS_D6 27
|
||||
|
|
|
@ -164,7 +164,7 @@
|
|||
//
|
||||
#if IS_RRD_SC
|
||||
#define LCD_PINS_RS 16
|
||||
#define LCD_PINS_ENABLE 17
|
||||
#define LCD_PINS_EN 17
|
||||
#define LCD_PINS_D4 23
|
||||
#define LCD_PINS_D5 25
|
||||
#define LCD_PINS_D6 27
|
||||
|
|
|
@ -266,7 +266,7 @@
|
|||
#elif HAS_MARLINUI_U8GLIB || HAS_MARLINUI_HD44780
|
||||
|
||||
#define LCD_PINS_RS 16
|
||||
#define LCD_PINS_ENABLE 17
|
||||
#define LCD_PINS_EN 17
|
||||
#define LCD_PINS_D4 23
|
||||
#define LCD_PINS_D5 25
|
||||
#define LCD_PINS_D6 27
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
#if HAS_WIRED_LCD && IS_NEWPANEL
|
||||
|
||||
#define LCD_PINS_RS 27
|
||||
#define LCD_PINS_ENABLE 29
|
||||
#define LCD_PINS_EN 29
|
||||
#define LCD_PINS_D4 37
|
||||
#define LCD_PINS_D5 35
|
||||
#define LCD_PINS_D6 33
|
||||
|
|
|
@ -102,7 +102,7 @@
|
|||
#define DOGLCD_A0 27
|
||||
|
||||
#define LCD_PINS_RS 27
|
||||
#define LCD_PINS_ENABLE 29
|
||||
#define LCD_PINS_EN 29
|
||||
#define LCD_PINS_D4 37
|
||||
#define LCD_PINS_D5 35
|
||||
#define LCD_PINS_D6 33
|
||||
|
|
|
@ -128,19 +128,19 @@
|
|||
// ------------------ ---------------- --------------- -------------
|
||||
|
||||
#if BOTH(CR10_STOCKDISPLAY, LONGER_LK5)
|
||||
/** CR-10 Stock Display
|
||||
* ------
|
||||
* GND | 9 10 | 5V
|
||||
* LCD_PINS_RS D5 | 7 8 | D4 LCD_PINS_ENABLE
|
||||
* BTN_EN2 D19 | 5 6 D6 LCD_PINS_D4
|
||||
* BTN_EN1 D18 | 3 4 | GND
|
||||
* BEEPER_PIN D11 | 1 2 | D15 BTN_ENC
|
||||
* ------
|
||||
/** CR-10 Stock Display
|
||||
* ------
|
||||
* BEEPER D11 | 1 2 | D15 ENC
|
||||
* EN1 D18 | 3 4 | GND
|
||||
* EN2 D19 5 6 | D6 LCD_D4
|
||||
* LCD_RS D5 | 7 8 | D4 LCD_ENABLE
|
||||
* GND | 9 10 | 5V
|
||||
* ------
|
||||
* Connected via provided custom cable to:
|
||||
* Aux-1, J21, J17 and Y-Max.
|
||||
*/
|
||||
#define LCD_PINS_RS 5
|
||||
#define LCD_PINS_ENABLE 4
|
||||
#define LCD_PINS_EN 4
|
||||
#define LCD_PINS_D4 6
|
||||
#define BTN_EN1 18
|
||||
#define BTN_EN2 19
|
||||
|
|
|
@ -83,7 +83,7 @@
|
|||
#define BEEPER_PIN 35
|
||||
|
||||
#define LCD_PINS_RS 27
|
||||
#define LCD_PINS_ENABLE 23
|
||||
#define LCD_PINS_EN 23
|
||||
#define LCD_PINS_D4 37
|
||||
|
||||
#define LCD_SDSS 53
|
||||
|
|
|
@ -594,13 +594,13 @@
|
|||
#if ENABLED(REPRAPWORLD_GRAPHICAL_LCD)
|
||||
|
||||
#define LCD_PINS_RS EXP2_07_PIN // CS chip select /SS chip slave select
|
||||
#define LCD_PINS_ENABLE EXP2_06_PIN // SID (MOSI)
|
||||
#define LCD_PINS_EN EXP2_06_PIN // SID (MOSI)
|
||||
#define LCD_PINS_D4 EXP2_02_PIN // SCK (CLK) clock
|
||||
|
||||
#elif BOTH(IS_NEWPANEL, PANEL_ONE)
|
||||
|
||||
#define LCD_PINS_RS AUX2_06_PIN
|
||||
#define LCD_PINS_ENABLE AUX2_08_PIN
|
||||
#define LCD_PINS_EN AUX2_08_PIN
|
||||
#define LCD_PINS_D4 AUX2_10_PIN
|
||||
#define LCD_PINS_D5 AUX2_09_PIN
|
||||
#define LCD_PINS_D6 AUX2_07_PIN
|
||||
|
@ -615,7 +615,7 @@
|
|||
#if ENABLED(CR10_STOCKDISPLAY)
|
||||
|
||||
#define LCD_PINS_RS EXP1_07_PIN
|
||||
#define LCD_PINS_ENABLE EXP1_08_PIN
|
||||
#define LCD_PINS_EN EXP1_08_PIN
|
||||
#define LCD_PINS_D4 EXP1_06_PIN
|
||||
|
||||
#if !IS_NEWPANEL
|
||||
|
@ -629,7 +629,7 @@
|
|||
#endif
|
||||
|
||||
#define LCD_PINS_RS AUX2_05_PIN
|
||||
#define LCD_PINS_ENABLE AUX2_07_PIN
|
||||
#define LCD_PINS_EN AUX2_07_PIN
|
||||
#define LCD_PINS_D4 AUX2_04_PIN
|
||||
#define LCD_PINS_D5 AUX2_06_PIN
|
||||
#define LCD_PINS_D6 AUX2_08_PIN
|
||||
|
@ -651,7 +651,7 @@
|
|||
#define DOGLCD_SCK EXP1_05_PIN
|
||||
#else
|
||||
#define LCD_PINS_RS EXP1_04_PIN
|
||||
#define LCD_PINS_ENABLE EXP1_03_PIN
|
||||
#define LCD_PINS_EN EXP1_03_PIN
|
||||
#define LCD_PINS_D4 EXP1_05_PIN
|
||||
#define LCD_PINS_D5 EXP1_06_PIN
|
||||
#define LCD_PINS_D6 EXP1_07_PIN
|
||||
|
|
|
@ -254,7 +254,7 @@
|
|||
#if HAS_WIRED_LCD
|
||||
#define BEEPER_PIN 45
|
||||
#define LCD_PINS_RS 19
|
||||
#define LCD_PINS_ENABLE 49
|
||||
#define LCD_PINS_EN 49
|
||||
#define LCD_PINS_D4 18
|
||||
#define LCD_PINS_D5 30
|
||||
#define LCD_PINS_D6 41
|
||||
|
|
|
@ -228,7 +228,7 @@
|
|||
|
||||
#else
|
||||
#define LCD_PINS_RS 19
|
||||
#define LCD_PINS_ENABLE 42
|
||||
#define LCD_PINS_EN 42
|
||||
#define LCD_PINS_D4 18
|
||||
#define LCD_PINS_D5 38
|
||||
#define LCD_PINS_D6 41
|
||||
|
|
|
@ -169,7 +169,7 @@
|
|||
//#if IS_RRD_SC
|
||||
|
||||
#define LCD_PINS_RS -1
|
||||
#define LCD_PINS_ENABLE -1
|
||||
#define LCD_PINS_EN -1
|
||||
#define LCD_PINS_D4 -1
|
||||
#define LCD_PINS_D5 -1
|
||||
#define LCD_PINS_D6 -1
|
||||
|
|
|
@ -139,7 +139,7 @@
|
|||
//#endif
|
||||
|
||||
#define LCD_PINS_RS -1
|
||||
#define LCD_PINS_ENABLE -1
|
||||
#define LCD_PINS_EN -1
|
||||
#define LCD_PINS_D4 -1
|
||||
#define LCD_PINS_D5 -1
|
||||
#define LCD_PINS_D6 -1
|
||||
|
|
|
@ -276,13 +276,13 @@
|
|||
#if ENABLED(REPRAPWORLD_GRAPHICAL_LCD)
|
||||
|
||||
#define LCD_PINS_RS 49 // CS chip select /SS chip slave select
|
||||
#define LCD_PINS_ENABLE 51 // SID (MOSI)
|
||||
#define LCD_PINS_EN 51 // SID (MOSI)
|
||||
#define LCD_PINS_D4 52 // SCK (CLK) clock
|
||||
|
||||
#elif BOTH(IS_NEWPANEL, PANEL_ONE)
|
||||
|
||||
#define LCD_PINS_RS 40
|
||||
#define LCD_PINS_ENABLE 42
|
||||
#define LCD_PINS_EN 42
|
||||
#define LCD_PINS_D4 65
|
||||
#define LCD_PINS_D5 66
|
||||
#define LCD_PINS_D6 44
|
||||
|
@ -291,7 +291,7 @@
|
|||
#elif ENABLED(ZONESTAR_LCD)
|
||||
|
||||
#define LCD_PINS_RS 64
|
||||
#define LCD_PINS_ENABLE 44
|
||||
#define LCD_PINS_EN 44
|
||||
#define LCD_PINS_D4 63
|
||||
#define LCD_PINS_D5 40
|
||||
#define LCD_PINS_D6 42
|
||||
|
@ -303,7 +303,7 @@
|
|||
#if ENABLED(CR10_STOCKDISPLAY)
|
||||
|
||||
#define LCD_PINS_RS 27
|
||||
#define LCD_PINS_ENABLE 29
|
||||
#define LCD_PINS_EN 29
|
||||
#define LCD_PINS_D4 25
|
||||
|
||||
#if !IS_NEWPANEL
|
||||
|
@ -322,7 +322,7 @@
|
|||
#define DOGLCD_A0 LCD_PINS_DC
|
||||
#else
|
||||
#define LCD_PINS_RS 16
|
||||
#define LCD_PINS_ENABLE 17
|
||||
#define LCD_PINS_EN 17
|
||||
#define LCD_PINS_D4 23
|
||||
#define LCD_PINS_D5 25
|
||||
#define LCD_PINS_D6 27
|
||||
|
|
|
@ -135,7 +135,7 @@
|
|||
#define BEEPER_PIN 18
|
||||
|
||||
#define LCD_PINS_RS 20
|
||||
#define LCD_PINS_ENABLE 15
|
||||
#define LCD_PINS_EN 15
|
||||
#define LCD_PINS_D4 14
|
||||
#define LCD_PINS_D5 21
|
||||
#define LCD_PINS_D6 5
|
||||
|
|
|
@ -125,7 +125,7 @@
|
|||
#if IS_NEWPANEL
|
||||
|
||||
#define LCD_PINS_RS 20
|
||||
#define LCD_PINS_ENABLE 17
|
||||
#define LCD_PINS_EN 17
|
||||
#define LCD_PINS_D4 16
|
||||
#define LCD_PINS_D5 21
|
||||
#define LCD_PINS_D6 5
|
||||
|
@ -147,7 +147,7 @@
|
|||
#define SHIFT_EN_PIN 17
|
||||
|
||||
#define LCD_PINS_RS 16
|
||||
#define LCD_PINS_ENABLE 5
|
||||
#define LCD_PINS_EN 5
|
||||
#define LCD_PINS_D4 6
|
||||
#define LCD_PINS_D5 21
|
||||
#define LCD_PINS_D6 20
|
||||
|
|
|
@ -169,7 +169,7 @@
|
|||
#if EITHER(BOARD_REV_1_0, BOARD_REV_1_1_TO_1_3)
|
||||
|
||||
#define LCD_PINS_RS 24
|
||||
#define LCD_PINS_ENABLE 22
|
||||
#define LCD_PINS_EN 22
|
||||
#define LCD_PINS_D4 36
|
||||
#define LCD_PINS_D5 34
|
||||
#define LCD_PINS_D6 32
|
||||
|
@ -182,7 +182,7 @@
|
|||
#if IS_NEWPANEL
|
||||
|
||||
#define LCD_PINS_RS 20
|
||||
#define LCD_PINS_ENABLE 17
|
||||
#define LCD_PINS_EN 17
|
||||
#define LCD_PINS_D4 16
|
||||
#define LCD_PINS_D5 21
|
||||
#define LCD_PINS_D6 5
|
||||
|
@ -204,7 +204,7 @@
|
|||
#define SHIFT_EN_PIN 17
|
||||
|
||||
#define LCD_PINS_RS 16
|
||||
#define LCD_PINS_ENABLE 5
|
||||
#define LCD_PINS_EN 5
|
||||
#define LCD_PINS_D4 6
|
||||
#define LCD_PINS_D5 21
|
||||
#define LCD_PINS_D6 20
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
|
||||
#if ENABLED(ZONESTAR_LCD)
|
||||
#define LCD_PINS_RS 16
|
||||
#define LCD_PINS_ENABLE 17
|
||||
#define LCD_PINS_EN 17
|
||||
#define LCD_PINS_D4 23
|
||||
#define LCD_PINS_D5 25
|
||||
#define LCD_PINS_D6 27
|
||||
|
|
|
@ -336,9 +336,9 @@
|
|||
#if ENABLED(ZONESTAR_12864LCD)
|
||||
#define LCDSCREEN_NAME "ZONESTAR LCD12864"
|
||||
#define LCD_SDSS 16
|
||||
#define LCD_PINS_RS 16 // ST7920_CS_PIN LCD_PIN_RS (PIN4 of LCD module)
|
||||
#define LCD_PINS_ENABLE 23 // ST7920_DAT_PIN LCD_PIN_R/W (PIN5 of LCD module)
|
||||
#define LCD_PINS_D4 17 // ST7920_CLK_PIN LCD_PIN_ENABLE (PIN6 of LCD module)
|
||||
#define LCD_PINS_RS 16 // ST7920_CS_PIN LCD_PIN_RS (PIN4 of LCD module)
|
||||
#define LCD_PINS_EN 23 // ST7920_DAT_PIN LCD_PIN_R/W (PIN5 of LCD module)
|
||||
#define LCD_PINS_D4 17 // ST7920_CLK_PIN LCD_PIN_ENA (PIN6 of LCD module)
|
||||
#define BTN_EN2 25
|
||||
#define BTN_EN1 27
|
||||
#define BTN_ENC 29
|
||||
|
@ -348,7 +348,7 @@
|
|||
#define LCDSCREEN_NAME "Reprap LCD12864"
|
||||
// Use EXP1 & EXP2 connector
|
||||
#define LCD_PINS_RS 16 // ST7920_CS_PIN LCD_PIN_RS
|
||||
#define LCD_PINS_ENABLE 17 // ST7920_DAT_PIN LCD_PIN_ENABLE
|
||||
#define LCD_PINS_EN 17 // ST7920_DAT_PIN LCD_PIN_ENA
|
||||
#define LCD_PINS_D4 23 // ST7920_CLK_PIN LCD_PIN_R/W
|
||||
#define BTN_EN1 31
|
||||
#define BTN_EN2 33
|
||||
|
@ -388,7 +388,7 @@
|
|||
#if ENABLED(ZONESTAR_LCD)
|
||||
#define LCDSCREEN_NAME "LCD2004 ADCKEY"
|
||||
#define LCD_PINS_RS EXP1_04_PIN
|
||||
#define LCD_PINS_ENABLE EXP1_03_PIN
|
||||
#define LCD_PINS_EN EXP1_03_PIN
|
||||
#define LCD_PINS_D4 EXP1_05_PIN
|
||||
#define LCD_PINS_D5 EXP1_06_PIN
|
||||
#define LCD_PINS_D6 EXP1_07_PIN
|
||||
|
|
|
@ -160,7 +160,7 @@ A stepper for E0 extruder
|
|||
//
|
||||
// LCD / Controller
|
||||
//
|
||||
#define LCD_PINS_ENABLE 14
|
||||
#define LCD_PINS_EN 14
|
||||
#define LCD_PINS_RS 15
|
||||
#define LCD_PINS_D4 16
|
||||
#define LCD_PINS_D5 17
|
||||
|
|
|
@ -150,7 +150,7 @@
|
|||
//
|
||||
#if IS_RRD_FG_SC
|
||||
#define LCD_PINS_RS 18
|
||||
#define LCD_PINS_ENABLE 15
|
||||
#define LCD_PINS_EN 15
|
||||
#define LCD_PINS_D4 19
|
||||
#define BEEPER_PIN 64
|
||||
#undef UI_VOLTAGE_LEVEL
|
||||
|
|
|
@ -183,7 +183,7 @@
|
|||
#if HAS_WIRED_LCD
|
||||
#define BEEPER_PIN 23 // D24 PA15_CTS1
|
||||
#define LCD_PINS_RS 17 // D17 PA12_RXD1
|
||||
#define LCD_PINS_ENABLE 24 // D23 PA14_RTS1
|
||||
#define LCD_PINS_EN 24 // D23 PA14_RTS1
|
||||
#define LCD_PINS_D4 69 // D69 PA0_CANTX0
|
||||
#define LCD_PINS_D5 54 // D54 PA16_SCK1
|
||||
#define LCD_PINS_D6 68 // D68 PA1_CANRX0
|
||||
|
|
|
@ -238,7 +238,7 @@
|
|||
#if ANY(HAS_WIRED_LCD, TOUCH_UI_ULTIPANEL, TOUCH_UI_FTDI_EVE)
|
||||
#define BEEPER_PIN 23 // D24 PA15_CTS1
|
||||
#define LCD_PINS_RS 17 // D17 PA12_RXD1
|
||||
#define LCD_PINS_ENABLE 24 // D23 PA14_RTS1
|
||||
#define LCD_PINS_EN 24 // D23 PA14_RTS1
|
||||
#define LCD_PINS_D4 69 // D69 PA0_CANTX0
|
||||
#define LCD_PINS_D5 54 // D54 PA16_SCK1
|
||||
#define LCD_PINS_D6 68 // D68 PA1_CANRX0
|
||||
|
|
|
@ -114,7 +114,7 @@
|
|||
#if HAS_WIRED_LCD
|
||||
|
||||
#define LCD_PINS_RS 42
|
||||
#define LCD_PINS_ENABLE 43
|
||||
#define LCD_PINS_EN 43
|
||||
#define LCD_PINS_D4 44
|
||||
#define LCD_PINS_D5 45
|
||||
#define LCD_PINS_D6 46
|
||||
|
@ -154,7 +154,7 @@
|
|||
#elif ENABLED(SPARK_FULL_GRAPHICS)
|
||||
|
||||
#define LCD_PINS_D4 29
|
||||
#define LCD_PINS_ENABLE 27
|
||||
#define LCD_PINS_EN 27
|
||||
#define LCD_PINS_RS 25
|
||||
|
||||
#define BTN_EN1 35
|
||||
|
|
|
@ -103,7 +103,7 @@
|
|||
#if HAS_WIRED_LCD
|
||||
|
||||
#define LCD_PINS_RS 42
|
||||
#define LCD_PINS_ENABLE 43
|
||||
#define LCD_PINS_EN 43
|
||||
#define LCD_PINS_D4 44
|
||||
#define LCD_PINS_D5 45
|
||||
#define LCD_PINS_D6 46
|
||||
|
@ -147,7 +147,7 @@
|
|||
#elif ENABLED(SPARK_FULL_GRAPHICS)
|
||||
|
||||
#define LCD_PINS_D4 29
|
||||
#define LCD_PINS_ENABLE 27
|
||||
#define LCD_PINS_EN 27
|
||||
#define LCD_PINS_RS 25
|
||||
|
||||
#define BTN_EN1 35
|
||||
|
|
|
@ -160,7 +160,7 @@
|
|||
#if IS_RRD_FG_SC
|
||||
|
||||
#define LCD_PINS_RS 42
|
||||
#define LCD_PINS_ENABLE 43
|
||||
#define LCD_PINS_EN 43
|
||||
#define LCD_PINS_D4 44
|
||||
|
||||
#define BTN_BACK 52
|
||||
|
|
|
@ -229,7 +229,7 @@
|
|||
#if ENABLED(RADDS_DISPLAY)
|
||||
|
||||
#define LCD_PINS_RS 42
|
||||
#define LCD_PINS_ENABLE 43
|
||||
#define LCD_PINS_EN 43
|
||||
#define LCD_PINS_D4 44
|
||||
#define LCD_PINS_D5 45
|
||||
#define LCD_PINS_D6 46
|
||||
|
@ -252,7 +252,7 @@
|
|||
// an adapter such as https://www.thingiverse.com/thing:1740725
|
||||
|
||||
#define LCD_PINS_RS 42
|
||||
#define LCD_PINS_ENABLE 43
|
||||
#define LCD_PINS_EN 43
|
||||
#define LCD_PINS_D4 44
|
||||
|
||||
#define BEEPER_PIN 41
|
||||
|
@ -276,7 +276,7 @@
|
|||
#elif ENABLED(SPARK_FULL_GRAPHICS)
|
||||
|
||||
#define LCD_PINS_D4 29
|
||||
#define LCD_PINS_ENABLE 27
|
||||
#define LCD_PINS_EN 27
|
||||
#define LCD_PINS_RS 25
|
||||
|
||||
#define BTN_EN1 35
|
||||
|
|
|
@ -45,21 +45,16 @@
|
|||
|
||||
#define BOARD_INFO_NAME "RAMPS Duo"
|
||||
|
||||
#define ALLOW_SAM3X8E
|
||||
#include "../ramps/pins_RAMPS.h"
|
||||
|
||||
//
|
||||
// Temperature Sensors
|
||||
//
|
||||
#undef TEMP_0_PIN
|
||||
#define TEMP_0_PIN 9 // Analog Input
|
||||
|
||||
#undef TEMP_1_PIN
|
||||
#define TEMP_1_PIN 11 // Analog Input
|
||||
|
||||
#undef TEMP_BED_PIN
|
||||
#define TEMP_BED_PIN 10 // Analog Input
|
||||
|
||||
#define ALLOW_SAM3X8E
|
||||
#include "../ramps/pins_RAMPS.h"
|
||||
|
||||
// SPI for MAX Thermocouple
|
||||
#undef TEMP_0_CS_PIN
|
||||
#if DISABLED(SDSUPPORT)
|
||||
|
|
|
@ -168,19 +168,21 @@
|
|||
// ramps-fd lcd adaptor
|
||||
|
||||
#define BEEPER_PIN EXP1_01_PIN
|
||||
#define BTN_EN1 EXP2_05_PIN
|
||||
#define BTN_EN2 EXP2_03_PIN
|
||||
|
||||
#define BTN_ENC EXP1_02_PIN
|
||||
#define BTN_EN2 EXP2_03_PIN
|
||||
#define BTN_EN1 EXP2_05_PIN
|
||||
|
||||
#define SD_DETECT_PIN EXP2_07_PIN
|
||||
|
||||
#if IS_NEWPANEL
|
||||
#define LCD_PINS_RS EXP1_07_PIN
|
||||
#define LCD_PINS_ENABLE EXP1_08_PIN
|
||||
#define LCD_PINS_EN EXP1_08_PIN
|
||||
#endif
|
||||
|
||||
#if ENABLED(FYSETC_MINI_12864)
|
||||
#define DOGLCD_CS LCD_PINS_ENABLE
|
||||
#define DOGLCD_A0 LCD_PINS_RS
|
||||
#define DOGLCD_CS EXP1_08_PIN
|
||||
#define DOGLCD_A0 EXP1_07_PIN
|
||||
#define DOGLCD_SCK EXP2_02_PIN
|
||||
#define DOGLCD_MOSI EXP2_06_PIN
|
||||
|
||||
|
|
|
@ -230,12 +230,12 @@
|
|||
#if EITHER(RADDS_DISPLAY, IS_RRD_SC)
|
||||
|
||||
#define LCD_PINS_RS EXP1_04_PIN
|
||||
#define LCD_PINS_ENABLE EXP1_03_PIN
|
||||
#define LCD_PINS_EN EXP1_03_PIN
|
||||
|
||||
#elif IS_RRD_FG_SC
|
||||
|
||||
#define LCD_PINS_RS EXP1_07_PIN
|
||||
#define LCD_PINS_ENABLE EXP1_08_PIN
|
||||
#define LCD_PINS_EN EXP1_08_PIN
|
||||
|
||||
#elif HAS_U8GLIB_I2C_OLED
|
||||
|
||||
|
@ -273,7 +273,7 @@
|
|||
//http://doku.radds.org/dokumentation/other-electronics/sparklcd/
|
||||
#error "Oops! SPARK_FULL_GRAPHICS not supported with RURAMPS4D."
|
||||
//#define LCD_PINS_D4 29 //?
|
||||
//#define LCD_PINS_ENABLE 27 //?
|
||||
//#define LCD_PINS_EN 27 //?
|
||||
//#define LCD_PINS_RS 25 //?
|
||||
//#define BTN_EN1 35 //?
|
||||
//#define BTN_EN2 33 //?
|
||||
|
|
|
@ -220,12 +220,12 @@
|
|||
#if EITHER(RADDS_DISPLAY, IS_RRD_SC)
|
||||
|
||||
#define LCD_PINS_RS EXP1_04_PIN
|
||||
#define LCD_PINS_ENABLE EXP1_03_PIN
|
||||
#define LCD_PINS_EN EXP1_03_PIN
|
||||
|
||||
#elif IS_RRD_FG_SC
|
||||
|
||||
#define LCD_PINS_RS EXP1_07_PIN
|
||||
#define LCD_PINS_ENABLE EXP1_08_PIN
|
||||
#define LCD_PINS_EN EXP1_08_PIN
|
||||
|
||||
#elif HAS_U8GLIB_I2C_OLED
|
||||
|
||||
|
|
|
@ -166,7 +166,7 @@
|
|||
#if ENABLED(REPRAPWORLD_GRAPHICAL_LCD)
|
||||
|
||||
#define LCD_PINS_RS A8 // CS chip select / SS chip slave select
|
||||
#define LCD_PINS_ENABLE MOSI // SID (MOSI)
|
||||
#define LCD_PINS_EN MOSI // SID (MOSI)
|
||||
#define LCD_PINS_D4 SCK // SCK (CLK) clock
|
||||
|
||||
#define BTN_EN1 20
|
||||
|
|
|
@ -130,25 +130,25 @@
|
|||
* 5B | . . | 5V
|
||||
* ------
|
||||
*
|
||||
*- Special mapping of EXP1 to EXP3 to work with Ender displays.
|
||||
*- Special mapping of EXP1 to work with Ender displays.
|
||||
*
|
||||
* Enable CR10_STOCKDISPLAY in Configuration.h and connect EXP1 to the display EXP3 with this mapping.
|
||||
* ------
|
||||
* VCC | 1 2 | GND
|
||||
* LCDDE | 3 4 | LCDRS
|
||||
* LCDD4 | 5 6 BTN_EN2
|
||||
* RESET | 7 8 | BTN_EN1
|
||||
* BTN_ENCODER | 9 10 | BEEPER
|
||||
* BEEPER | 1 2 | ENC
|
||||
* EN1 | 3 4 | RESET
|
||||
* EN2 5 6 | LCD_D4
|
||||
* LCD_RS | 7 8 | LCD_EN
|
||||
* GND | 9 10 | 5V
|
||||
* ------
|
||||
* EXP1
|
||||
*
|
||||
*- Digital pinout reference of the Bricolemon for advanced users/configurations.
|
||||
*
|
||||
* ------ ------
|
||||
* VCC | 1 2 | GND D49 | 1 2 | GND
|
||||
* D39 | 3 4 | D38 RST | 3 4 | D44
|
||||
* D37 | 5 6 D36 D51 | 5 6 D42
|
||||
* D34 | 7 8 | D35 D53 | 7 8 | D43
|
||||
* D40 | 9 10 | D41 D52 | 9 10 | D50
|
||||
* D41 | 1 2 | D40 D50 | 1 2 | D52
|
||||
* D35 | 3 4 | D34 D43 | 3 4 | D53
|
||||
* D36 5 6 | D37 D42 5 6 | D51
|
||||
* D38 | 7 8 | D39 D44 | 7 8 | RST
|
||||
* GND | 9 10 | VCC GND | 9 10 | D49
|
||||
* ------ ------
|
||||
* EXP1 EXP2
|
||||
*
|
||||
|
@ -235,14 +235,14 @@
|
|||
|
||||
// TO TEST
|
||||
//#define LCD_PINS_RS EXP2_10_PIN // CS chip select /SS chip slave select
|
||||
//#define LCD_PINS_ENABLE EXP2_06_PIN // SID (MOSI)
|
||||
//#define LCD_PINS_EN EXP2_06_PIN // SID (MOSI)
|
||||
//#define LCD_PINS_D4 EXP2_02_PIN // SCK (CLK) clock
|
||||
|
||||
#elif BOTH(IS_NEWPANEL, PANEL_ONE)
|
||||
|
||||
// TO TEST
|
||||
//#define LCD_PINS_RS EXP1_02_PIN
|
||||
//#define LCD_PINS_ENABLE EXP2_05_PIN
|
||||
//#define LCD_PINS_EN EXP2_05_PIN
|
||||
//#define LCD_PINS_D4 57 // Mega/Due:65 - AGCM4:57
|
||||
//#define LCD_PINS_D5 58 // Mega/Due:66 - AGCM4:58
|
||||
//#define LCD_PINS_D6 EXP2_07_PIN
|
||||
|
@ -254,7 +254,7 @@
|
|||
|
||||
// TO TEST
|
||||
#define LCD_PINS_RS EXP3_04_PIN
|
||||
#define LCD_PINS_ENABLE EXP3_03_PIN
|
||||
#define LCD_PINS_EN EXP3_03_PIN
|
||||
#define LCD_PINS_D4 EXP3_05_PIN
|
||||
|
||||
#if !IS_NEWPANEL
|
||||
|
@ -266,7 +266,7 @@
|
|||
|
||||
// TO TEST
|
||||
//#define LCD_PINS_RS 56 // Mega/Due:64 - AGCM4:56
|
||||
//#define LCD_PINS_ENABLE EXP2_07_PIN
|
||||
//#define LCD_PINS_EN EXP2_07_PIN
|
||||
//#define LCD_PINS_D4 55 // Mega/Due:63 - AGCM4:55
|
||||
//#define LCD_PINS_D5 EXP1_02_PIN
|
||||
//#define LCD_PINS_D6 EXP2_05_PIN
|
||||
|
@ -287,7 +287,7 @@
|
|||
#else
|
||||
// Definitions for any standard Display
|
||||
#define LCD_PINS_RS EXP1_04_PIN
|
||||
#define LCD_PINS_ENABLE EXP1_03_PIN
|
||||
#define LCD_PINS_EN EXP1_03_PIN
|
||||
#define LCD_PINS_D4 EXP1_05_PIN
|
||||
#define LCD_PINS_D5 EXP1_06_PIN
|
||||
#define LCD_PINS_D6 EXP1_07_PIN
|
||||
|
|
|
@ -182,25 +182,25 @@
|
|||
* 5B | . . | 5V
|
||||
* ------
|
||||
*
|
||||
*- Special mapping of EXP1 to EXP3 to work with Ender displays.
|
||||
*- Special mapping of EXP1 to work with Ender displays.
|
||||
*
|
||||
* Enable CR10_STOCKDISPLAY in Configuration.h and connect EXP1 to the display EXP3 with this mapping.
|
||||
* ------
|
||||
* VCC | 1 2 | GND
|
||||
* LCDDE | 3 4 | LCDRS
|
||||
* LCDD4 | 5 6 BTN_EN2
|
||||
* RESET | 7 8 | BTN_EN1
|
||||
* BTN_ENCODER | 9 10 | BEEPER
|
||||
* BEEPER | 1 2 | ENC
|
||||
* EN1 | 3 4 | RESET
|
||||
* EN2 5 6 | LCD_D4
|
||||
* LCD_RS | 7 8 | LCD_EN
|
||||
* GND | 9 10 | 5V
|
||||
* ------
|
||||
* EXP1
|
||||
*
|
||||
*- Digital pinout reference of the Bricolemon for advanced users/configurations.
|
||||
*
|
||||
* ------ ------
|
||||
* VCC | 1 2 | GND D49 | 1 2 | GND
|
||||
* D39 | 3 4 | D38 RST | 3 4 | D44
|
||||
* D37 | 5 6 D36 D51 | 5 6 D42
|
||||
* D34 | 7 8 | D35 D53 | 7 8 | D43
|
||||
* D40 | 9 10 | D41 D52 | 9 10 | D50
|
||||
* D41 | 1 2 | D40 D50 | 1 2 | D52
|
||||
* D35 | 3 4 | D34 D43 | 3 4 | D53
|
||||
* D36 5 6 | D37 D42 5 6 | D51
|
||||
* D38 | 7 8 | D39 D44 | 7 8 | RST
|
||||
* GND | 9 10 | VCC GND | 9 10 | D49
|
||||
* ------ ------
|
||||
* EXP1 EXP2
|
||||
*
|
||||
|
@ -288,14 +288,14 @@
|
|||
|
||||
// TO TEST
|
||||
//#define LCD_PINS_RS EXP2_10_PIN // CS chip select /SS chip slave select
|
||||
//#define LCD_PINS_ENABLE EXP2_06_PIN // SID (MOSI)
|
||||
//#define LCD_PINS_EN EXP2_06_PIN // SID (MOSI)
|
||||
//#define LCD_PINS_D4 EXP2_02_PIN // SCK (CLK) clock
|
||||
|
||||
#elif BOTH(IS_NEWPANEL, PANEL_ONE)
|
||||
|
||||
// TO TEST
|
||||
//#define LCD_PINS_RS EXP1_02_PIN
|
||||
//#define LCD_PINS_ENABLE EXP2_05_PIN
|
||||
//#define LCD_PINS_EN EXP2_05_PIN
|
||||
//#define LCD_PINS_D4 57 // Mega/Due:65 - AGCM4:57
|
||||
//#define LCD_PINS_D5 58 // Mega/Due:66 - AGCM4:58
|
||||
//#define LCD_PINS_D6 EXP2_07_PIN
|
||||
|
@ -307,7 +307,7 @@
|
|||
|
||||
// TO TEST
|
||||
#define LCD_PINS_RS EXP3_04_PIN
|
||||
#define LCD_PINS_ENABLE EXP3_03_PIN
|
||||
#define LCD_PINS_EN EXP3_03_PIN
|
||||
#define LCD_PINS_D4 EXP3_05_PIN
|
||||
|
||||
#if !IS_NEWPANEL
|
||||
|
@ -319,7 +319,7 @@
|
|||
|
||||
// TO TEST
|
||||
//#define LCD_PINS_RS 56 // Mega/Due:64 - AGCM4:56
|
||||
//#define LCD_PINS_ENABLE EXP2_07_PIN
|
||||
//#define LCD_PINS_EN EXP2_07_PIN
|
||||
//#define LCD_PINS_D4 55 // Mega/Due:63 - AGCM4:55
|
||||
//#define LCD_PINS_D5 EXP1_02_PIN
|
||||
//#define LCD_PINS_D6 EXP2_05_PIN
|
||||
|
@ -340,7 +340,7 @@
|
|||
#else
|
||||
// Definitions for any standard Display
|
||||
#define LCD_PINS_RS EXP1_04_PIN
|
||||
#define LCD_PINS_ENABLE EXP1_03_PIN
|
||||
#define LCD_PINS_EN EXP1_03_PIN
|
||||
#define LCD_PINS_D4 EXP1_05_PIN
|
||||
#define LCD_PINS_D5 EXP1_06_PIN
|
||||
#define LCD_PINS_D6 EXP1_07_PIN
|
||||
|
|
|
@ -190,7 +190,7 @@
|
|||
#if ENABLED(REPRAPWORLD_GRAPHICAL_LCD)
|
||||
|
||||
#define LCD_PINS_RS 18 // CS chip select /SS chip slave select
|
||||
#define LCD_PINS_ENABLE MOSI // SID (MOSI)
|
||||
#define LCD_PINS_EN MOSI // SID (MOSI)
|
||||
#define LCD_PINS_D4 SCK // SCK (CLK) clock
|
||||
|
||||
#define BTN_ENC 23
|
||||
|
@ -201,7 +201,7 @@
|
|||
|
||||
// TO TEST
|
||||
//#define LCD_PINS_RS EXP1_02_PIN
|
||||
//#define LCD_PINS_ENABLE EXP2_05_PIN
|
||||
//#define LCD_PINS_EN EXP2_05_PIN
|
||||
//#define LCD_PINS_D4 57 // Mega/Due:65 - AGCM4:57
|
||||
//#define LCD_PINS_D5 58 // Mega/Due:66 - AGCM4:58
|
||||
//#define LCD_PINS_D6 EXP2_07_PIN
|
||||
|
@ -213,7 +213,7 @@
|
|||
|
||||
// TO TEST
|
||||
//#define LCD_PINS_RS EXP3_04_PIN
|
||||
//#define LCD_PINS_ENABLE EXP3_03_PIN
|
||||
//#define LCD_PINS_EN EXP3_03_PIN
|
||||
//#define LCD_PINS_D4 EXP3_05_PIN
|
||||
|
||||
#if !IS_NEWPANEL
|
||||
|
@ -225,7 +225,7 @@
|
|||
|
||||
// TO TEST
|
||||
//#define LCD_PINS_RS 56 // Mega/Due:64 - AGCM4:56
|
||||
//#define LCD_PINS_ENABLE EXP2_07_PIN
|
||||
//#define LCD_PINS_EN EXP2_07_PIN
|
||||
//#define LCD_PINS_D4 55 // Mega/Due:63 - AGCM4:55
|
||||
//#define LCD_PINS_D5 EXP1_02_PIN
|
||||
//#define LCD_PINS_D6 EXP2_05_PIN
|
||||
|
@ -246,7 +246,7 @@
|
|||
#else
|
||||
// Definitions for any standard Display
|
||||
#define LCD_PINS_RS EXP1_04_PIN
|
||||
#define LCD_PINS_ENABLE EXP1_03_PIN
|
||||
#define LCD_PINS_EN EXP1_03_PIN
|
||||
#define LCD_PINS_D4 EXP1_05_PIN
|
||||
#define LCD_PINS_D5 EXP1_06_PIN
|
||||
#define LCD_PINS_D6 EXP1_07_PIN
|
||||
|
|
|
@ -273,14 +273,14 @@
|
|||
|
||||
// TO TEST
|
||||
//#define LCD_PINS_RS 49 // CS chip select /SS chip slave select
|
||||
//#define LCD_PINS_ENABLE 51 // SID (MOSI)
|
||||
//#define LCD_PINS_EN 51 // SID (MOSI)
|
||||
//#define LCD_PINS_D4 52 // SCK (CLK) clock
|
||||
|
||||
#elif BOTH(IS_NEWPANEL, PANEL_ONE)
|
||||
|
||||
// TO TEST
|
||||
//#define LCD_PINS_RS 40
|
||||
//#define LCD_PINS_ENABLE 42
|
||||
//#define LCD_PINS_EN 42
|
||||
//#define LCD_PINS_D4 57 // Mega/Due:65 - AGCM4:57
|
||||
//#define LCD_PINS_D5 58 // Mega/Due:66 - AGCM4:58
|
||||
//#define LCD_PINS_D6 44
|
||||
|
@ -292,7 +292,7 @@
|
|||
|
||||
// TO TEST
|
||||
//#define LCD_PINS_RS 27
|
||||
//#define LCD_PINS_ENABLE 29
|
||||
//#define LCD_PINS_EN 29
|
||||
//#define LCD_PINS_D4 25
|
||||
|
||||
#if !IS_NEWPANEL
|
||||
|
@ -304,7 +304,7 @@
|
|||
|
||||
// TO TEST
|
||||
//#define LCD_PINS_RS 56 // Mega/Due:64 - AGCM4:56
|
||||
//#define LCD_PINS_ENABLE 44
|
||||
//#define LCD_PINS_EN 44
|
||||
//#define LCD_PINS_D4 55 // Mega/Due:63 - AGCM4:55
|
||||
//#define LCD_PINS_D5 40
|
||||
//#define LCD_PINS_D6 42
|
||||
|
@ -323,7 +323,7 @@
|
|||
//#define DOGLCD_A0 LCD_PINS_DC
|
||||
#else
|
||||
#define LCD_PINS_RS 16
|
||||
#define LCD_PINS_ENABLE 17
|
||||
#define LCD_PINS_EN 17
|
||||
#define LCD_PINS_D4 23
|
||||
#define LCD_PINS_D5 25
|
||||
#define LCD_PINS_D6 27
|
||||
|
|
|
@ -175,7 +175,7 @@
|
|||
|
||||
#define SERVO0_PIN 27 // free for BLTouch/3D-Touch
|
||||
#define LCD_PINS_RS 28
|
||||
#define LCD_PINS_ENABLE 29
|
||||
#define LCD_PINS_EN 29
|
||||
#define LCD_PINS_D4 10
|
||||
#define LCD_PINS_D5 11
|
||||
#define LCD_PINS_D6 16
|
||||
|
@ -192,7 +192,7 @@
|
|||
#define SERVO0_PIN 30
|
||||
#define BEEPER_PIN 27
|
||||
#define LCD_PINS_RS 29
|
||||
#define LCD_PINS_ENABLE 16
|
||||
#define LCD_PINS_EN 16
|
||||
#define LCD_PINS_D4 11
|
||||
#define BTN_EN1 28
|
||||
#define BTN_EN2 10
|
||||
|
@ -204,7 +204,7 @@
|
|||
#define SERVO0_PIN 29 // free for BLTouch/3D-Touch
|
||||
#define BEEPER_PIN 17
|
||||
#define LCD_PINS_RS 27
|
||||
#define LCD_PINS_ENABLE 28
|
||||
#define LCD_PINS_EN 28
|
||||
#define LCD_PINS_D4 30
|
||||
#define BTN_EN1 11
|
||||
#define BTN_EN2 10
|
||||
|
@ -233,11 +233,11 @@
|
|||
* 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_ENABLE 29
|
||||
* #define LCD_PINS_D4 17
|
||||
* #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
|
||||
*/
|
||||
|
@ -247,32 +247,32 @@
|
|||
* ===================== LCD PINOUTS ==================================
|
||||
* ====================================================================
|
||||
*
|
||||
* Anet V1.0 controller | ZONESTAR_LCD | ANET_FULL_ | RepRapDiscount Full | Thingiverse RepRap wiring
|
||||
* physical logical alt | | GRAPHICS_LCD | Graphics Display Wiring | https://www.thingiverse
|
||||
* pin pin functions | | | | .com/thing:2103748
|
||||
*------------------------------------------------------------------------------------------------------------------------
|
||||
* ANET-J3.1 8 *** | N/A | J3_TX *** | |
|
||||
* ANET-J3.2 9 *** | N/A | J3_RX *** | |
|
||||
* ANET-J3.3 6 MISO | N/A | MISO *** | EXP2.1 MISO | EXP2.1 MISO
|
||||
* ANET-J3.4 +5V | N/A | +5V | |
|
||||
* ANET-J3.5 7 SCK | N/A | SCK *** | EXP2.2 SCK | EXP2.2 SCK
|
||||
* ANET-J3.6 5 MOSI | N/A | MOSI *** | EXP2.6 MOSI | EXP2.6 MOSI
|
||||
* ANET-J3.7 !RESET | N/A | button | EXP2.8 panel button | EXP2.8 panel button
|
||||
* ANET-J3.8 GND | N/A | GND | EXP2.9 GND | EXP2.9 GND
|
||||
* ANET-J3.9 4 Don't use | N/A | N/C | |
|
||||
* ANET-J3.10 +3.3V | N/A | +3.3V *** | |
|
||||
* | | | |
|
||||
* | | | |
|
||||
* ANET-LCD.1 GND | GND | GND | EXP1.9 GND | EXP1.9 GND
|
||||
* ANET-LCD.2 +5V | +5V | +5V | EXP1.10 +5V | EXP1.10 +5V
|
||||
* ANET-LCD.3 27 A4 | N/C * | LCD_PINS_RS | EXP1.4 LCD_PINS_RS | EXP2.4 SDSS or N/C *
|
||||
* ANET-LCD.4 10 | LCD_PINS_D4 | BTN_EN2 | EXP2.3 BTN_EN2 | EXP2.3 BTN_EN2
|
||||
* ANET-LCD.5 28 A3 | LCD_PINS_RS | LCD_PINS_ENABLE | EXP1.3 LCD_PINS_ENABLE | EXP1.1 BEEPER_PIN
|
||||
* ANET-LCD.6 11 | LCD_PINS_D5 | BTN_EN1 | EXP2.5 BTN_EN1 | EXP2.5 BTN_EN1
|
||||
* ANET-LCD.7 29 A2 | LCD_PINS_ENABLE | N/C * | EXP2.4 SDSS or N/C * | EXP1.3 LCD_PINS_ENABLE
|
||||
* ANET-LCD.8 16 SCL | LCD_PINS_D6 | BTN_ENC | EXP1.2 BTN_ENC | EXP1.2 BTN_ENC
|
||||
* ANET-LCD.9 30 A1 | ADC_KEYPAD_PIN ** | LCD_PINS_D4 | EXP1.5 LCD_PINS_D4 | EXP1.4 LCD_PINS_RS
|
||||
* ANET-LCD.10 17 SDA | LCD_PINS_D7 | BEEPER_PIN | EXP1.1 BEEPER_PIN | EXP1.5 LCD_PINS_D4
|
||||
* Anet V1.0 controller | ZONESTAR_LCD | ANET_FULL_ | RepRapDiscount Full | Thingiverse RepRap wiring
|
||||
* physical logical alt | | GRAPHICS_LCD | Graphics Display Wiring | https://www.thingiverse
|
||||
* pin pin functions | | | | .com/thing:2103748
|
||||
*--------------------------------------------------------------------------------------------------------------------
|
||||
* ANET-J3.1 8 *** | N/A | J3_TX *** | |
|
||||
* ANET-J3.2 9 *** | N/A | J3_RX *** | |
|
||||
* ANET-J3.3 6 MISO | N/A | MISO *** | EXP2.1 MISO | EXP2.1 MISO
|
||||
* ANET-J3.4 +5V | N/A | +5V | |
|
||||
* ANET-J3.5 7 SCK | N/A | SCK *** | EXP2.2 SCK | EXP2.2 SCK
|
||||
* ANET-J3.6 5 MOSI | N/A | MOSI *** | EXP2.6 MOSI | EXP2.6 MOSI
|
||||
* ANET-J3.7 !RESET | N/A | button | EXP2.8 panel button | EXP2.8 panel button
|
||||
* ANET-J3.8 GND | N/A | GND | EXP2.9 GND | EXP2.9 GND
|
||||
* ANET-J3.9 4 Don't use | N/A | N/C | |
|
||||
* ANET-J3.10 +3.3V | N/A | +3.3V *** | |
|
||||
* | | | |
|
||||
* | | | |
|
||||
* ANET-LCD.1 GND | GND | GND | EXP1.9 GND | EXP1.9 GND
|
||||
* ANET-LCD.2 +5V | +5V | +5V | EXP1.10 +5V | EXP1.10 +5V
|
||||
* ANET-LCD.3 27 A4 | N/C * | LCD_PINS_RS | EXP1.4 LCD_PINS_RS | EXP2.4 SDSS or N/C *
|
||||
* ANET-LCD.4 10 | LCD_PINS_D4 | BTN_EN2 | EXP2.3 BTN_EN2 | EXP2.3 BTN_EN2
|
||||
* ANET-LCD.5 28 A3 | LCD_PINS_RS | LCD_PINS_EN | EXP1.3 LCD_PINS_EN | EXP1.1 BEEPER_PIN
|
||||
* ANET-LCD.6 11 | LCD_PINS_D5 | BTN_EN1 | EXP2.5 BTN_EN1 | EXP2.5 BTN_EN1
|
||||
* ANET-LCD.7 29 A2 | LCD_PINS_EN | N/C * | EXP2.4 SDSS or N/C * | EXP1.3 LCD_PINS_EN
|
||||
* ANET-LCD.8 16 SCL | LCD_PINS_D6 | BTN_ENC | EXP1.2 BTN_ENC | EXP1.2 BTN_ENC
|
||||
* ANET-LCD.9 30 A1 | ADC_KEYPAD_PIN ** | LCD_PINS_D4 | EXP1.5 LCD_PINS_D4 | EXP1.4 LCD_PINS_RS
|
||||
* ANET-LCD.10 17 SDA | LCD_PINS_D7 | BEEPER_PIN | EXP1.1 BEEPER_PIN | EXP1.5 LCD_PINS_D4
|
||||
*
|
||||
* N/C * - if not connected to the LCD can be used for BLTouch servo input
|
||||
* ** - analog pin -WITHOUT a pullup
|
||||
|
@ -284,7 +284,7 @@
|
|||
* physical pin function
|
||||
* EXP1.1 BEEPER
|
||||
* EXP1.2 BTN_ENC
|
||||
* EXP1.3 LCD_PINS_ENABLE
|
||||
* EXP1.3 LCD_PINS_EN
|
||||
* EXP1.4 LCD_PINS_RS
|
||||
* EXP1.5 LCD_PINS_D4
|
||||
* EXP1.6 LCD_PINS_D5 (not used)
|
||||
|
|
|
@ -116,7 +116,7 @@
|
|||
|
||||
// 4bit LCD Support
|
||||
#define LCD_PINS_RS 18
|
||||
#define LCD_PINS_ENABLE 17
|
||||
#define LCD_PINS_EN 17
|
||||
#define LCD_PINS_D4 16
|
||||
#define LCD_PINS_D5 15
|
||||
#define LCD_PINS_D6 13
|
||||
|
|
|
@ -51,7 +51,7 @@
|
|||
#if ANY(MKS_MINI_12864, CR10_STOCKDISPLAY, ENDER2_STOCKDISPLAY)
|
||||
#if EITHER(CR10_STOCKDISPLAY, ENDER2_STOCKDISPLAY)
|
||||
#define LCD_PINS_RS 28 // ST9720 CS
|
||||
#define LCD_PINS_ENABLE 17 // ST9720 DAT
|
||||
#define LCD_PINS_EN 17 // ST9720 DAT
|
||||
#define LCD_PINS_D4 30 // ST9720 CLK
|
||||
#endif
|
||||
#if EITHER(MKS_MINI_12864, ENDER2_STOCKDISPLAY)
|
||||
|
@ -119,7 +119,7 @@
|
|||
PIN: 15 Port: D7 X_STEP_PIN protected
|
||||
PIN: 16 Port: C0 BTN_ENC Input = 1
|
||||
. SCL Input = 1
|
||||
PIN: 17 Port: C1 LCD_PINS_ENABLE Output = 0
|
||||
PIN: 17 Port: C1 LCD_PINS_EN Output = 0
|
||||
. SDA Output = 0
|
||||
PIN: 18 Port: C2 X_MIN_PIN protected
|
||||
. X_STOP_PIN protected
|
||||
|
@ -145,8 +145,8 @@
|
|||
* ------ ------
|
||||
* PA4 | 1 2 | PC0 BEEPER_PIN | 1 2 | BTN_ENC
|
||||
* PD3 | 3 4 | RESET BTN_EN1 | 3 4 | RESET
|
||||
* PD2 5 6 | PA1 BTN_EN2 5 6 | LCD_PINS_D4 (ST9720 CLK)
|
||||
* PA3 | 7 8 | PC1 (ST9720 CS) LCD_PINS_RS | 7 8 | LCD_PINS_ENABLE (ST9720 DAT)
|
||||
* PD2 5 6 | PA1 BTN_EN2 5 6 | LCD_D4 (ST9720 CLK)
|
||||
* PA3 | 7 8 | PC1 (ST9720 CS) LCD_RS | 7 8 | LCD_EN (ST9720 DAT)
|
||||
* GND | 9 10 | 5V GND | 9 10 | 5V
|
||||
* ------ ------
|
||||
*/
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
|
||||
#if ENABLED(CR10_STOCKDISPLAY)
|
||||
#define LCD_PINS_RS 17 // ST9720 CS
|
||||
#define LCD_PINS_ENABLE 16 // ST9720 DAT
|
||||
#define LCD_PINS_EN 16 // ST9720 DAT
|
||||
#define LCD_PINS_D4 11 // ST9720 CLK
|
||||
#define BTN_EN1 30
|
||||
#define BTN_EN2 29
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
|
||||
#if EITHER(CR10_STOCKDISPLAY, LCD_FOR_MELZI)
|
||||
#define LCD_PINS_RS 30
|
||||
#define LCD_PINS_ENABLE 28
|
||||
#define LCD_PINS_EN 28
|
||||
#define LCD_PINS_D4 16
|
||||
#define LCD_PINS_D5 17
|
||||
#define LCD_PINS_D6 27
|
||||
|
|
|
@ -158,7 +158,7 @@
|
|||
#if ENABLED(LCD_FOR_MELZI)
|
||||
|
||||
#define LCD_PINS_RS 17
|
||||
#define LCD_PINS_ENABLE 16
|
||||
#define LCD_PINS_EN 16
|
||||
#define LCD_PINS_D4 11
|
||||
#define KILL_PIN 10
|
||||
#define BEEPER_PIN 27
|
||||
|
@ -167,7 +167,7 @@
|
|||
|
||||
#if IS_MELZI
|
||||
#define LCD_PINS_RS 30 // CS chip select /SS chip slave select
|
||||
#define LCD_PINS_ENABLE 29 // SID (MOSI)
|
||||
#define LCD_PINS_EN 29 // SID (MOSI)
|
||||
#define LCD_PINS_D4 17 // SCK (CLK) clock
|
||||
// Pin 27 is taken by LED_PIN, but Melzi LED does nothing with
|
||||
// Marlin so this can be used for BEEPER_PIN. You can use this pin
|
||||
|
@ -175,7 +175,7 @@
|
|||
#define BEEPER_PIN 27
|
||||
#else // Sanguinololu >=1.3
|
||||
#define LCD_PINS_RS 4
|
||||
#define LCD_PINS_ENABLE 17
|
||||
#define LCD_PINS_EN 17
|
||||
#define LCD_PINS_D4 30
|
||||
#define LCD_PINS_D5 29
|
||||
#define LCD_PINS_D6 28
|
||||
|
@ -210,7 +210,7 @@
|
|||
#elif ENABLED(ZONESTAR_LCD) // For the Tronxy Melzi boards
|
||||
|
||||
#define LCD_PINS_RS 28
|
||||
#define LCD_PINS_ENABLE 29
|
||||
#define LCD_PINS_EN 29
|
||||
#define LCD_PINS_D4 10
|
||||
#define LCD_PINS_D5 11
|
||||
#define LCD_PINS_D6 16
|
||||
|
@ -219,7 +219,7 @@
|
|||
#else
|
||||
|
||||
#define LCD_PINS_RS 4
|
||||
#define LCD_PINS_ENABLE 17
|
||||
#define LCD_PINS_EN 17
|
||||
#define LCD_PINS_D4 30
|
||||
#define LCD_PINS_D5 29
|
||||
#define LCD_PINS_D6 28
|
||||
|
|
|
@ -194,7 +194,7 @@
|
|||
#define FORCE_SOFT_SPI
|
||||
//#define LCD_SDSS EXP1_03_PIN
|
||||
#define LCD_PINS_RS EXP1_03_PIN // ST7920_CS_PIN (LCD module pin 4)
|
||||
#define LCD_PINS_ENABLE EXP1_06_PIN // ST7920_DAT_PIN (LCD module pin 5)
|
||||
#define LCD_PINS_EN EXP1_06_PIN // ST7920_DAT_PIN (LCD module pin 5)
|
||||
#define LCD_PINS_D4 EXP1_04_PIN // ST7920_CLK_PIN (LCD module pin 6)
|
||||
|
||||
#define BOARD_ST7920_DELAY_1 DELAY_2_NOP
|
||||
|
|
|
@ -112,7 +112,7 @@
|
|||
#error "REPRAPWORLD_GRAPHICAL_LCD is not supported."
|
||||
#else
|
||||
#define LCD_PINS_RS PB8
|
||||
#define LCD_PINS_ENABLE PD2
|
||||
#define LCD_PINS_EN PD2
|
||||
#define LCD_PINS_D4 PB12
|
||||
#define LCD_PINS_D5 PB13
|
||||
#define LCD_PINS_D6 PB14
|
||||
|
|
|
@ -126,7 +126,7 @@
|
|||
#define BTN_EN2 PA10
|
||||
|
||||
#define LCD_PINS_RS PB8
|
||||
#define LCD_PINS_ENABLE PB15
|
||||
#define LCD_PINS_EN PB15
|
||||
#define LCD_PINS_D4 PB9
|
||||
|
||||
#define BEEPER_PIN PB5
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue