2016-04-01 23:33:02 +00: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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Arduino Mega with RAMPS v1.4 adjusted pin assignments
|
|
|
|
*
|
|
|
|
* MKS v1.3 (Extruder, Fan, Bed)
|
|
|
|
* MKS v1.3 (Extruder, Extruder, Fan, Bed)
|
|
|
|
* MKS v1.4 (Extruder, Fan, Bed)
|
|
|
|
* MKS v1.4 (Extruder, Extruder, Fan, Bed)
|
|
|
|
*/
|
|
|
|
|
2016-07-29 23:13:19 +00:00
|
|
|
#if HOTENDS > 2
|
|
|
|
#error "MKS 1.3/1.4 supports up to 2 hotends. Comment this line to keep going."
|
|
|
|
#endif
|
|
|
|
|
2016-06-30 09:24:29 +00:00
|
|
|
#define BOARD_NAME "MKS > v1.3"
|
|
|
|
|
2016-10-08 20:27:04 +00:00
|
|
|
//
|
|
|
|
// Heaters / Fans
|
|
|
|
//
|
2016-08-02 19:32:36 +00:00
|
|
|
// Power outputs EFBF or EFBE
|
2016-07-30 12:32:00 +00:00
|
|
|
#define MOSFET_D_PIN 7
|
2016-04-01 23:33:02 +00:00
|
|
|
|
2016-07-30 10:10:30 +00:00
|
|
|
#include "pins_RAMPS.h"
|
2016-06-29 01:11:32 +00:00
|
|
|
|
2016-10-08 20:27:04 +00:00
|
|
|
//
|
|
|
|
// LCD / Controller
|
|
|
|
//
|
2016-06-29 01:11:32 +00:00
|
|
|
#if ENABLED(VIKI2) || ENABLED(miniVIKI)
|
2016-07-11 22:34:37 +00:00
|
|
|
/**
|
|
|
|
* VIKI2 Has two groups of wires with...
|
|
|
|
*
|
|
|
|
* +Vin + Input supply, requires 120ma for LCD and mSD card
|
|
|
|
* GND Ground Pin
|
|
|
|
* MOSI Data input for LCD and SD
|
|
|
|
* MISO Data output for SD
|
|
|
|
* SCK Clock for LCD and SD
|
|
|
|
* AO Reg. Sel for LCD
|
|
|
|
* LCS Chip Select for LCD
|
|
|
|
* SDCS Chip Select for SD
|
|
|
|
* SDCD Card Detect pin for SD
|
|
|
|
* ENCA Encoder output A
|
|
|
|
* ENCB Encoder output B
|
|
|
|
* ENCBTN Encoder button switch
|
|
|
|
*
|
|
|
|
* BTN Panel mounted button switch
|
|
|
|
* BUZZER Piezo buzzer
|
|
|
|
* BLUE-LED Blue LED ring pin (3 to 5v, mosfet buffered)
|
|
|
|
* RED-LED Red LED ring pin (3 to 5v, mosfet buffered)
|
|
|
|
*
|
|
|
|
* This configuration uses the following arrangement:
|
|
|
|
*
|
|
|
|
* EXP1 D37 = EN2 D35 = EN1 EXP2 D50 = MISO D52 = SCK
|
|
|
|
* D17 = BLUE D16 = RED D31 = ENC D53 = SDCS
|
|
|
|
* D23 = KILL D25 = BUZZ D33 = --- D51 = MOSI
|
|
|
|
* D27 = A0 D29 = LCS D49 = SDCD RST = ---
|
|
|
|
* GND = GND 5V = 5V GND = --- D41 = ---
|
|
|
|
*/
|
|
|
|
|
|
|
|
#undef BTN_EN1
|
|
|
|
#undef BTN_EN2
|
|
|
|
#undef BTN_ENC
|
|
|
|
#undef DOGLCD_A0
|
|
|
|
#undef DOGLCD_CS
|
|
|
|
#undef SD_DETECT_PIN
|
|
|
|
#undef BEEPER_PIN
|
|
|
|
#undef KILL_PIN
|
|
|
|
|
|
|
|
//
|
|
|
|
// VIKI2 12-wire lead
|
|
|
|
//
|
|
|
|
|
|
|
|
// orange/white SDCD
|
|
|
|
#define SD_DETECT_PIN 49
|
|
|
|
|
|
|
|
// white ENCA
|
|
|
|
#define BTN_EN1 35
|
|
|
|
|
|
|
|
// green ENCB
|
|
|
|
#define BTN_EN2 37
|
|
|
|
|
|
|
|
// purple ENCBTN
|
|
|
|
#define BTN_ENC 31
|
|
|
|
|
|
|
|
// brown A0
|
|
|
|
#define DOGLCD_A0 27
|
|
|
|
|
|
|
|
// green/white LCS
|
|
|
|
#define DOGLCD_CS 29
|
|
|
|
|
|
|
|
// 50 gray MISO
|
|
|
|
// 51 yellow MOSI
|
|
|
|
// 52 orange SCK
|
|
|
|
|
|
|
|
// blue SDCS
|
|
|
|
//#define SDSS 53
|
|
|
|
|
|
|
|
//
|
|
|
|
// VIKI2 4-wire lead
|
|
|
|
//
|
|
|
|
|
|
|
|
// blue BTN
|
|
|
|
#define KILL_PIN 23
|
|
|
|
|
|
|
|
// green BUZZER
|
|
|
|
#define BEEPER_PIN 25
|
|
|
|
|
|
|
|
// yellow RED-LED
|
2016-09-24 21:26:41 +00:00
|
|
|
#define STAT_LED_RED_PIN 16
|
2016-07-11 22:34:37 +00:00
|
|
|
|
|
|
|
// white BLUE-LED
|
2016-09-24 21:26:41 +00:00
|
|
|
#define STAT_LED_BLUE_PIN 17
|
2016-07-11 22:34:37 +00:00
|
|
|
|
2016-06-29 01:11:32 +00:00
|
|
|
#endif
|