Firmware2/Marlin/src/pins/ramps/pins_TRIGORILLA_14.h

152 lines
4.3 KiB
C
Raw Normal View History

2018-04-03 05:11:38 +02:00
/**
* Marlin 3D Printer Firmware
2020-02-03 15:00:57 +01:00
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
2018-04-03 05:11:38 +02:00
*
* Based on Sprinter and grbl.
2019-06-28 06:57:50 +02:00
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
2018-04-03 05:11:38 +02:00
*
* 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
2020-07-23 05:20:14 +02:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2018-04-03 05:11:38 +02:00
*
*/
2019-07-05 05:44:12 +02:00
#pragma once
2018-04-03 05:11:38 +02:00
/**
* Arduino Mega with RAMPS v1.4 for Anycubic
*/
2019-08-21 02:08:58 +02:00
#define BOARD_INFO_NAME "Anycubic RAMPS 1.4"
2018-04-03 05:11:38 +02:00
//
// Servos
//
#if MB(TRIGORILLA_14_11)
2020-03-22 03:13:19 +01:00
#define SERVO0_PIN 5
#define SERVO1_PIN 4
#define SERVO2_PIN 11
#define SERVO3_PIN 6
#endif
//
2020-07-17 08:07:09 +02:00
// Limit Switches
//
//#define ANYCUBIC_4_MAX_PRO_ENDSTOPS
2020-07-17 08:07:09 +02:00
#define X_MIN_PIN 3
#if ENABLED(ANYCUBIC_4_MAX_PRO_ENDSTOPS)
2020-03-22 03:13:19 +01:00
#define X_MAX_PIN 43
2020-07-17 08:07:09 +02:00
#else
#define X_MAX_PIN 43
#endif
#if ENABLED(ANYCUBIC_4_MAX_PRO_ENDSTOPS)
#define Y_STOP_PIN 19
#else
#define Y_STOP_PIN 42
#endif
#define Z_STOP_PIN 18
//
// Z Probe (when not Z_MIN_PIN)
//
#define Z_MIN_PROBE_PIN 2
#ifndef FIL_RUNOUT_PIN
#define FIL_RUNOUT_PIN 19
#endif
2020-07-17 08:07:09 +02:00
//
// Heaters / Fans
//
2020-03-31 21:42:32 +02:00
#define TG_HEATER_BED_PIN 8
#define TG_HEATER_0_PIN 10
#define TG_HEATER_1_PIN 45 // Anycubic Kossel: Unused
2018-10-21 10:23:20 +02:00
2020-03-31 21:42:32 +02:00
#define TG_FAN0_PIN 9 // Anycubic Kossel: Usually the part cooling fan
#define TG_FAN1_PIN 7 // Anycubic Kossel: Unused
#define TG_FAN2_PIN 44 // Anycubic Kossel: Hotend fan
2018-10-21 10:23:20 +02:00
2020-07-17 08:07:09 +02:00
#define CONTROLLER_FAN_PIN TG_FAN1_PIN
#define BEEPER_PIN 31
#define SD_DETECT_PIN 49
2018-10-21 10:23:20 +02:00
// Remap MOSFET pins to common usages:
2020-03-31 21:42:32 +02:00
#define RAMPS_D10_PIN TG_HEATER_0_PIN // HEATER_0_PIN is always RAMPS_D10_PIN in pins_RAMPS.h
2018-10-21 10:23:20 +02:00
2020-05-22 09:02:03 +02:00
#if HAS_MULTI_HOTEND // EEF and EEB
2020-03-31 21:42:32 +02:00
#define RAMPS_D9_PIN TG_HEATER_1_PIN
#if !TEMP_SENSOR_BED
2018-10-21 10:23:20 +02:00
// EEF
2020-03-31 21:42:32 +02:00
#define RAMPS_D8_PIN TG_FAN0_PIN
2018-10-21 10:23:20 +02:00
#else
// EEB
2020-03-31 21:42:32 +02:00
#define RAMPS_D8_PIN TG_HEATER_BED_PIN
#define FAN_PIN TG_FAN0_PIN // Override pin 4 in pins_RAMPS.h
#endif
#elif TEMP_SENSOR_BED
2018-10-21 10:23:20 +02:00
// EFB (Anycubic Kossel default)
2020-03-31 21:42:32 +02:00
#define RAMPS_D9_PIN TG_FAN0_PIN
#define RAMPS_D8_PIN TG_HEATER_BED_PIN
#else
2018-10-21 10:23:20 +02:00
// EFF
2020-03-31 21:42:32 +02:00
#define RAMPS_D9_PIN TG_FAN1_PIN
#define RAMPS_D8_PIN TG_FAN0_PIN
#endif
2020-05-22 09:02:03 +02:00
#if HAS_MULTI_HOTEND || TEMP_SENSOR_BED // EEF, EEB, EFB
2020-03-31 21:42:32 +02:00
#define FAN1_PIN TG_FAN1_PIN
2018-10-21 10:23:20 +02:00
#endif
2020-03-31 21:42:32 +02:00
#define FAN2_PIN TG_FAN2_PIN
#ifndef E0_AUTO_FAN_PIN
#define E0_AUTO_FAN_PIN TG_FAN2_PIN // Used in Anycubic Kossel example config
#endif
2018-04-03 05:11:38 +02:00
2018-07-04 03:23:14 +02:00
#include "pins_RAMPS.h"
//
// AnyCubic made the following changes to 1.1.0-RC8
// If these are appropriate for your LCD let us know.
//
#if 0 && HAS_SPI_LCD
// LCD Display output pins
#if BOTH(NEWPANEL, PANEL_ONE)
#undef LCD_PINS_D6
2020-03-22 03:13:19 +01:00
#define LCD_PINS_D6 57
#endif
// LCD Display input pins
#if ENABLED(NEWPANEL)
#if ANY(VIKI2, miniVIKI)
#undef DOGLCD_A0
2020-03-22 03:13:19 +01:00
#define DOGLCD_A0 23
#elif ENABLED(ELB_FULL_GRAPHIC_CONTROLLER)
#undef BEEPER_PIN
2020-03-22 03:13:19 +01:00
#define BEEPER_PIN 33
#undef LCD_BACKLIGHT_PIN
2020-03-22 03:13:19 +01:00
#define LCD_BACKLIGHT_PIN 67
#endif
#elif ENABLED(MINIPANEL)
#undef BEEPER_PIN
2020-03-22 03:13:19 +01:00
#define BEEPER_PIN 33
#undef DOGLCD_A0
2020-03-22 03:13:19 +01:00
#define DOGLCD_A0 42
#endif
#endif // HAS_SPI_LCD