Add VORON printer (#12705)
This commit is contained in:
@ -160,6 +160,8 @@
|
||||
#include "pins_FYSETC_F6_13.h" // ATmega2560 env:megaatmega2560
|
||||
#elif MB(DUPLICATOR_I3_PLUS)
|
||||
#include "pins_DUPLICATOR_I3_PLUS.h" // ATmega2560 env:megaatmega2560
|
||||
#elif MB(VORON)
|
||||
#include "pins_VORON.h" // ATmega2560 env:megaatmega2560
|
||||
|
||||
//
|
||||
// Other ATmega1280, ATmega2560
|
||||
|
46
Marlin/src/pins/pins_VORON.h
Normal file
46
Marlin/src/pins/pins_VORON.h
Normal file
@ -0,0 +1,46 @@
|
||||
/**
|
||||
* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* VORON Design v2 pin assignments
|
||||
* See https://github.com/mzbotreprap/VORON/blob/master/Firmware/Marlin/pins_RAMPS_VORON.h
|
||||
*/
|
||||
|
||||
#define BOARD_NAME "VORON Design v2"
|
||||
|
||||
#define RAMPS_D8_PIN 11
|
||||
|
||||
#include "pins_RAMPS.h"
|
||||
|
||||
//
|
||||
// Heaters / Fans
|
||||
//
|
||||
#undef FAN_PIN
|
||||
#define FAN_PIN 5 // Using the pin for the controller fan since controller fan is always on.
|
||||
#define CONTROLLER_FAN_PIN 8
|
||||
#define ORIG_E0_AUTO_FAN_PIN 6 // Servo pin 6 for E3D Fan
|
||||
#define ORIG_E1_AUTO_FAN_PIN 6 // Servo pin 6 for E3D Fan (same pin for both extruders since it's the same fan)
|
||||
|
||||
//
|
||||
// LCDs and Controllers
|
||||
//
|
||||
#undef BEEPER_PIN
|
Reference in New Issue
Block a user