2017-02-22 03:10:04 +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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2019-01-21 05:52:51 +00:00
|
|
|
* ZRIB V2.0 & V3.0 pin assignments
|
|
|
|
* V2 and V3 Boards only differ in USB controller, nothing affecting the pins.
|
2017-02-22 03:10:04 +00:00
|
|
|
*/
|
|
|
|
|
2019-01-21 05:52:51 +00:00
|
|
|
#include "pins_MKS_GEN_13.h"
|
|
|
|
|
|
|
|
#define ZRIB_V20_D6_PIN 6 // Fan
|
|
|
|
#define ZRIB_V20_D9_PIN 9 // Fan2
|
|
|
|
#define ZRIB_V20_A10_PIN 10
|
|
|
|
#define ZRIB_V20_D16_PIN 16
|
|
|
|
#define ZRIB_V20_D17_PIN 17
|
|
|
|
#define ZRIB_V20_D23_PIN 23
|
|
|
|
#define ZRIB_V20_D25_PIN 25
|
|
|
|
#define ZRIB_V20_D27_PIN 27
|
|
|
|
#define ZRIB_V20_D29_PIN 29
|
|
|
|
#define ZRIB_V20_D37_PIN 37
|
|
|
|
|
|
|
|
#define ORIG_E0_AUTO_FAN_PIN ZRIB_V20_D6_PIN
|
|
|
|
#define ORIG_E1_AUTO_FAN_PIN ZRIB_V20_D6_PIN
|
|
|
|
#define ORIG_E2_AUTO_FAN_PIN ZRIB_V20_D6_PIN
|
|
|
|
#define ORIG_E3_AUTO_FAN_PIN ZRIB_V20_D6_PIN
|
2017-02-22 03:10:04 +00:00
|
|
|
|
|
|
|
#ifndef FILWIDTH_PIN
|
2019-01-21 05:52:51 +00:00
|
|
|
#define FILWIDTH_PIN 11 // Analog Input
|
2017-02-22 03:10:04 +00:00
|
|
|
#endif
|
|
|
|
|
2019-01-21 05:52:51 +00:00
|
|
|
#if ENABLED(ZONESTAR_LCD)
|
|
|
|
#undef LCD_PINS_RS
|
|
|
|
#undef LCD_PINS_ENABLE
|
|
|
|
#undef LCD_PINS_D4
|
|
|
|
#undef LCD_PINS_D5
|
|
|
|
#undef LCD_PINS_D6
|
|
|
|
#undef LCD_PINS_D7
|
|
|
|
#undef ADC_KEYPAD_PIN
|
|
|
|
#undef BEEPER_PIN
|
|
|
|
|
|
|
|
#define LCD_PINS_RS ZRIB_V20_D16_PIN
|
|
|
|
#define LCD_PINS_ENABLE ZRIB_V20_D17_PIN
|
|
|
|
#define LCD_PINS_D4 ZRIB_V20_D23_PIN
|
|
|
|
#define LCD_PINS_D5 ZRIB_V20_D25_PIN
|
|
|
|
#define LCD_PINS_D6 ZRIB_V20_D27_PIN
|
|
|
|
#define LCD_PINS_D7 ZRIB_V20_D29_PIN
|
|
|
|
#define ADC_KEYPAD_PIN ZRIB_V20_A10_PIN
|
|
|
|
#define BEEPER_PIN ZRIB_V20_D37_PIN
|
|
|
|
#endif
|