Prusa MINI Firmware overview
Main Page
Modules
Classes
Files
File List
File Members
pins_K8400.h
Go to the documentation of this file.
1
/**
2
* Marlin 3D Printer Firmware
3
* Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4
*
5
* Based on Sprinter and grbl.
6
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
7
*
8
* This program is free software: you can redistribute it and/or modify
9
* it under the terms of the GNU General Public License as published by
10
* the Free Software Foundation, either version 3 of the License, or
11
* (at your option) any later version.
12
*
13
* This program is distributed in the hope that it will be useful,
14
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
* GNU General Public License for more details.
17
*
18
* You should have received a copy of the GNU General Public License
19
* along with this program. If not, see <http://www.gnu.org/licenses/>.
20
*
21
*/
22
#pragma once
23
24
/**
25
* Velleman K8400 (Vertex)
26
* 3DRAG clone
27
*
28
* K8400 has some minor differences over a normal 3Drag:
29
* - No X/Y max endstops
30
* - Second extruder step pin has moved
31
* - No power supply control
32
* - Second heater has moved pin
33
*/
34
35
#define BOARD_INFO_NAME "K8400"
36
#define DEFAULT_MACHINE_NAME "Vertex"
37
38
#include "
pins_3DRAG.h
"
39
40
//
41
// Limit Switches
42
//
43
#define X_STOP_PIN 3
44
#define Y_STOP_PIN 14
45
46
#undef X_MIN_PIN
47
#undef X_MAX_PIN
48
#undef Y_MIN_PIN
49
#undef Y_MAX_PIN
50
51
//
52
// Steppers
53
//
54
#undef E1_STEP_PIN
55
#define E1_STEP_PIN 32
56
57
//
58
// Heaters / Fans
59
//
60
#undef HEATER_1_PIN
61
#define HEATER_1_PIN 11
62
63
//
64
// Misc. Functions
65
//
66
#undef PS_ON_PIN
67
#undef KILL_PIN
68
#undef SD_DETECT_PIN
69
70
#if Z_STEP_PIN == 26
71
#undef Z_STEP_PIN
72
#define Z_STEP_PIN 32
73
#endif
pins_3DRAG.h
Prusa-Firmware-Buddy-Private1
lib
Marlin
Marlin
src
pins
ramps
pins_K8400.h
Generated by
1.8.16