123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- /**
- * 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/>.
- *
- */
-
- /**
- * bq ZUM Mega 3D board definition
- */
-
- #ifndef __AVR_ATmega2560__
- #error "Oops! Make sure you have 'Arduino Mega 2560' selected from the 'Tools -> Boards' menu."
- #endif
-
- #define BOARD_NAME "ZUM Mega 3D"
-
- #include "pins_RAMPS_13.h"
-
- #undef X_MAX_PIN
- #define X_MAX_PIN 79 // 2
-
- #undef Z_ENABLE_PIN
- #define Z_ENABLE_PIN 77 // 62
-
- #undef FAN_PIN
- #define FAN_PIN 12 // 4
-
- #undef HEATER_0_PIN
- #define HEATER_0_PIN 9 // 10
-
- #undef HEATER_1_PIN
- #define HEATER_1_PIN 10 // 9
-
- #undef TEMP_1_PIN
- #define TEMP_1_PIN 14 // 15
-
- #undef TEMP_BED_PIN
- #define TEMP_BED_PIN 15 // 14
-
- #define DIGIPOTSS_PIN 22
- #define DIGIPOT_CHANNELS { 4, 5, 3, 0, 1 }
-
- #define FAN1_PIN 7
-
- #undef PS_ON_PIN // 12
- #define PS_ON_PIN 81 // External Power Supply
-
- #if ENABLED(AUTO_BED_LEVELING_FEATURE)
- #undef Z_MIN_PIN
- #undef Z_MAX_PIN
- #define Z_MIN_PIN 19 // IND_S_5V
- #define Z_MAX_PIN 18 // Z-MIN Label
- #endif
|