forked from MarlinFirmware/Marlin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Protoneer CNC-Shield 3.00 (MarlinFirmware#22715)
- Loading branch information
1 parent
7796062
commit 1e071c8
Showing
3 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/** | ||
* Marlin 3D Printer Firmware | ||
* Copyright (c) 2021 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 <https://www.gnu.org/licenses/>. | ||
* | ||
*/ | ||
#pragma once | ||
|
||
/** | ||
* Protoneer v3.00 pin assignments | ||
* | ||
* This CNC shield has an UNO pinout and fits all Arduino-compatibles. | ||
* | ||
* Referenced docs: | ||
* - https://blog.protoneer.co.nz/arduino-cnc-shield-v3-00-assembly-guide/ | ||
* - https://blog.protoneer.co.nz/arduino-cnc-shield/ | ||
*/ | ||
|
||
#include "env_validate.h" | ||
|
||
#define BOARD_INFO_NAME "Protoneer CNC Shield v3.00" | ||
|
||
// | ||
// Limit Switches | ||
// | ||
#define X_STOP_PIN 9 | ||
#define Y_STOP_PIN 10 | ||
#define Z_STOP_PIN 11 | ||
|
||
// | ||
// Steppers | ||
// | ||
#define X_STEP_PIN 2 | ||
#define X_DIR_PIN 5 | ||
#define X_ENABLE_PIN 8 // Shared enable pin | ||
|
||
#define Y_STEP_PIN 3 | ||
#define Y_DIR_PIN 6 | ||
#define Y_ENABLE_PIN X_ENABLE_PIN | ||
|
||
#define Z_STEP_PIN 4 | ||
#define Z_DIR_PIN 7 | ||
#define Z_ENABLE_PIN X_ENABLE_PIN | ||
|
||
// Designated with letter "A" on BOARD | ||
#define E0_STEP_PIN 12 | ||
#define E0_DIR_PIN 13 | ||
#define E0_ENABLE_PIN X_ENABLE_PIN | ||
|
||
// | ||
// Temperature sensors - These could be any analog output not hidden by board | ||
// | ||
#define TEMP_0_PIN 8 // Analog Input | ||
//#define TEMP_1_PIN 9 // Analog Input | ||
//#define TEMP_BED_PIN 10 // Analog Input | ||
|
||
// | ||
// Heaters / Fans - These could be any digital input not hidden by board | ||
// | ||
//#define HEATER_0_PIN 22 // EXTRUDER 1 | ||
//#define HEATER_1_PIN 23 // EXTRUDER 2 | ||
//#define HEATER_BED_PIN 24 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters