My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pins_K8600.h 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016 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 <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. /**
  23. * VERTEX NANO Arduino Mega with RAMPS EFB v1.4 pin assignments.
  24. */
  25. #if HOTENDS > 1
  26. #error "Only 1 hotend is supported for Vertex Nano."
  27. #endif
  28. #define BOARD_INFO_NAME "K8600"
  29. #define DEFAULT_MACHINE_NAME "Vertex Nano"
  30. //
  31. // Limit Switches
  32. //
  33. #define X_MIN_PIN 3
  34. #define Y_MAX_PIN 14
  35. #define Z_MAX_PIN 18
  36. #define Z_MIN_PIN -1
  37. //
  38. // Heaters / Fans
  39. //
  40. #define FAN_PIN 8
  41. //
  42. // Misc. Functions
  43. //
  44. #define CASE_LIGHT_PIN 7
  45. //
  46. // Other RAMPS pins
  47. //
  48. #define IS_RAMPS_EFB // Override autodetection. Bed will be undefined.
  49. #include "pins_RAMPS.h"
  50. //
  51. // Steppers
  52. //
  53. #undef X_STEP_PIN
  54. #undef X_DIR_PIN
  55. #undef X_ENABLE_PIN
  56. #define X_STEP_PIN 54
  57. #define X_DIR_PIN 55
  58. #define X_ENABLE_PIN 38
  59. #undef Y_STEP_PIN
  60. #undef Y_DIR_PIN
  61. #undef Y_ENABLE_PIN
  62. #define Y_STEP_PIN 60
  63. #define Y_DIR_PIN 61
  64. #define Y_ENABLE_PIN 56
  65. #undef Z_ENABLE_PIN
  66. #define Z_ENABLE_PIN 63
  67. #undef E0_STEP_PIN
  68. #undef E0_DIR_PIN
  69. #undef E0_ENABLE_PIN
  70. #define E0_STEP_PIN 26
  71. #define E0_DIR_PIN 28
  72. #define E0_ENABLE_PIN 24
  73. //
  74. // Heaters / Fans
  75. //
  76. #undef HEATER_BED_PIN
  77. //
  78. // Misc. Functions
  79. //
  80. #undef SDSS
  81. #define SDSS 25 // 53
  82. //
  83. // LCD / Controller
  84. //
  85. #if IS_ULTRA_LCD && IS_NEWPANEL
  86. #undef BEEPER_PIN
  87. #undef LCD_PINS_RS
  88. #undef LCD_PINS_ENABLE
  89. #undef LCD_PINS_D4
  90. #undef LCD_PINS_D5
  91. #undef LCD_PINS_D6
  92. #undef LCD_PINS_D7
  93. #define LCD_PINS_RS 27
  94. #define LCD_PINS_ENABLE 29
  95. #define LCD_PINS_D4 37
  96. #define LCD_PINS_D5 35
  97. #define LCD_PINS_D6 33
  98. #define LCD_PINS_D7 31
  99. // Buttons
  100. #undef BTN_EN1
  101. #undef BTN_EN2
  102. #undef BTN_ENC
  103. #define BTN_EN1 17
  104. #define BTN_EN2 16
  105. #define BTN_ENC 23
  106. #else
  107. #define BEEPER_PIN 33
  108. #endif