123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
-
-
-
-
- #ifndef BOARD_NAME
- #define BOARD_NAME "3Drag"
- #endif
-
- #ifndef DEFAULT_MACHINE_NAME
- #define DEFAULT_MACHINE_NAME "3Drag"
- #endif
-
- #ifndef DEFAULT_SOURCE_CODE_URL
- #define DEFAULT_SOURCE_CODE_URL "http://3dprint.elettronicain.it/"
- #endif
-
-
-
-
- #define RAMPS_D8_PIN 9
- #define RAMPS_D9_PIN 8
- #define MOSFET_D_PIN 12
-
- #include "pins_RAMPS.h"
-
-
-
-
- #undef Z_MAX_PIN
- #define Z_MAX_PIN -1
-
-
-
-
- #undef Z_ENABLE_PIN
- #define Z_ENABLE_PIN 63
-
-
-
-
- #define HEATER_2_PIN 6
-
-
-
-
- #undef SDSS
- #define SDSS 25
-
- #undef SD_DETECT_PIN
- #define SD_DETECT_PIN 53
-
-
-
-
- #if ENABLED(ULTRA_LCD) && ENABLED(NEWPANEL)
- #undef BEEPER_PIN
- #define BEEPER_PIN -1
-
- #undef LCD_PINS_RS
- #undef LCD_PINS_ENABLE
- #undef LCD_PINS_D4
- #undef LCD_PINS_D5
- #undef LCD_PINS_D6
- #undef LCD_PINS_D7
- #define LCD_PINS_RS 27
- #define LCD_PINS_ENABLE 29
- #define LCD_PINS_D4 37
- #define LCD_PINS_D5 35
- #define LCD_PINS_D6 33
- #define LCD_PINS_D7 31
-
-
- #undef BTN_EN1
- #undef BTN_EN2
- #undef BTN_ENC
- #define BTN_EN1 16
- #define BTN_EN2 17
- #define BTN_ENC 23
-
- #else
-
- #define BEEPER_PIN 33
-
- #endif
|