2016-03-25 07:19:46 +01:00
|
|
|
/**
|
2016-03-24 19:01:20 +01:00
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-01-26 03:40:00 +01:00
|
|
|
/**
|
2016-02-29 08:13:50 +01:00
|
|
|
* 3DRAG (and K8200) Arduino Mega with RAMPS v1.4 pin assignments
|
2015-01-26 03:40:00 +01:00
|
|
|
*/
|
|
|
|
|
2016-02-29 08:13:50 +01:00
|
|
|
#include "pins_RAMPS_14.h"
|
2015-01-26 03:40:00 +01:00
|
|
|
|
2015-03-28 04:29:05 +01:00
|
|
|
#undef Z_ENABLE_PIN
|
2015-02-16 06:56:23 +01:00
|
|
|
#define Z_ENABLE_PIN 63
|
|
|
|
|
2015-03-28 04:29:05 +01:00
|
|
|
#undef X_MAX_PIN
|
|
|
|
#undef Y_MAX_PIN
|
|
|
|
#undef Z_MAX_PIN
|
2015-01-26 05:08:51 +01:00
|
|
|
#define X_MAX_PIN 2
|
|
|
|
#define Y_MAX_PIN 15
|
2015-01-26 03:40:00 +01:00
|
|
|
#define Z_MAX_PIN -1
|
|
|
|
|
2015-03-28 04:29:05 +01:00
|
|
|
#undef SDSS
|
2015-01-26 03:40:00 +01:00
|
|
|
#define SDSS 25//53
|
|
|
|
|
2015-03-28 04:29:05 +01:00
|
|
|
#undef FAN_PIN
|
2015-01-26 03:40:00 +01:00
|
|
|
#define FAN_PIN 8
|
|
|
|
|
2015-03-28 04:29:05 +01:00
|
|
|
#undef HEATER_1_PIN
|
|
|
|
#undef HEATER_2_PIN
|
|
|
|
#undef HEATER_BED_PIN
|
2015-01-26 03:40:00 +01:00
|
|
|
#define HEATER_0_PIN 10
|
|
|
|
#define HEATER_1_PIN 12
|
|
|
|
#define HEATER_2_PIN 6
|
|
|
|
|
|
|
|
#define HEATER_BED_PIN 9 // BED
|
|
|
|
|
2015-07-31 07:11:19 +02:00
|
|
|
#if ENABLED(ULTRA_LCD) && ENABLED(NEWPANEL)
|
2015-07-31 08:19:11 +02:00
|
|
|
#undef BEEPER_PIN
|
|
|
|
#define BEEPER_PIN -1
|
2015-01-26 03:40:00 +01:00
|
|
|
|
2015-03-28 04:29:05 +01:00
|
|
|
#undef LCD_PINS_RS
|
|
|
|
#undef LCD_PINS_ENABLE
|
|
|
|
#undef LCD_PINS_D4
|
|
|
|
#undef LCD_PINS_D5
|
|
|
|
#undef LCD_PINS_D6
|
|
|
|
#undef LCD_PINS_D7
|
2015-01-26 03:40:00 +01:00
|
|
|
#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
|
|
|
|
|
|
|
|
// Buttons
|
2015-03-28 04:29:05 +01:00
|
|
|
#undef BTN_EN1
|
|
|
|
#undef BTN_EN2
|
|
|
|
#undef BTN_ENC
|
2015-01-26 03:40:00 +01:00
|
|
|
#define BTN_EN1 16
|
|
|
|
#define BTN_EN2 17
|
|
|
|
#define BTN_ENC 23 //the click
|
2015-03-28 04:29:05 +01:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2015-07-31 08:19:11 +02:00
|
|
|
#define BEEPER_PIN 33
|
2015-03-28 04:29:05 +01:00
|
|
|
|
2015-01-26 03:40:00 +01:00
|
|
|
#endif // ULTRA_LCD && NEWPANEL
|