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_3DRAG.h 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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. /**
  23. * 3DRAG (and K8200 / K8400) Arduino Mega with RAMPS v1.4 pin assignments
  24. */
  25. #ifndef BOARD_NAME
  26. #define BOARD_NAME "3Drag"
  27. #endif
  28. #ifndef DEFAULT_MACHINE_NAME
  29. #define DEFAULT_MACHINE_NAME "3Drag"
  30. #endif
  31. #ifndef DEFAULT_SOURCE_CODE_URL
  32. #define DEFAULT_SOURCE_CODE_URL "http://3dprint.elettronicain.it/"
  33. #endif
  34. //
  35. // Heaters / Fans
  36. //
  37. #define RAMPS_D8_PIN 9
  38. #define RAMPS_D9_PIN 8
  39. #define MOSFET_D_PIN 12
  40. #define CASE_LIGHT_PIN -1 // MUST BE HARDWARE PWM but one is not available on expansion header
  41. #include "pins_RAMPS.h"
  42. //
  43. // Limit Switches
  44. //
  45. #undef Z_MAX_PIN
  46. //
  47. // Steppers
  48. //
  49. #undef Z_ENABLE_PIN
  50. #define Z_ENABLE_PIN 63
  51. //
  52. // Heaters / Fans
  53. //
  54. #define HEATER_2_PIN 6
  55. //
  56. // Misc. Functions
  57. //
  58. #undef SDSS
  59. #define SDSS 25
  60. #undef SD_DETECT_PIN
  61. #define SD_DETECT_PIN 53
  62. //
  63. // LCD / Controller
  64. //
  65. #if BOTH(ULTRA_LCD, NEWPANEL)
  66. #undef BEEPER_PIN
  67. #undef LCD_PINS_RS
  68. #undef LCD_PINS_ENABLE
  69. #undef LCD_PINS_D4
  70. #undef LCD_PINS_D5
  71. #undef LCD_PINS_D6
  72. #undef LCD_PINS_D7
  73. #define LCD_PINS_RS 27
  74. #define LCD_PINS_ENABLE 29
  75. #define LCD_PINS_D4 37
  76. #define LCD_PINS_D5 35
  77. #define LCD_PINS_D6 33
  78. #define LCD_PINS_D7 31
  79. // Buttons
  80. #undef BTN_EN1
  81. #undef BTN_EN2
  82. #undef BTN_ENC
  83. #define BTN_EN1 16
  84. #define BTN_EN2 17
  85. #define BTN_ENC 23
  86. #else
  87. #define BEEPER_PIN 33
  88. #endif // HAS_SPI_LCD && NEWPANEL
  89. /**
  90. * M3/M4/M5 - Spindle/Laser Control
  91. *
  92. * If you want to control the speed of your spindle then you'll have
  93. * have to sacrifce the Extruder and pull some signals off the Z stepper
  94. * driver socket.
  95. *
  96. * The following assumes:
  97. * - the Z stepper driver socket is empty
  98. * - the extruder driver socket has a driver board plugged into it
  99. * - the Z stepper wires are attached the the extruder connector
  100. *
  101. * If you want to keep the extruder AND don't have a LCD display then
  102. * you can still control the power on/off and spindle direction.
  103. *
  104. * Where to get spindle signals
  105. *
  106. * stepper signal socket name socket name
  107. * -------
  108. * SPINDLE_LASER_ENA_PIN /ENABLE O| |O VMOT
  109. * MS1 O| |O GND
  110. * MS2 O| |O 2B
  111. * MS3 O| |O 2A
  112. * /RESET O| |O 1A
  113. * /SLEEP O| |O 1B
  114. * SPINDLE_LASER_PWM_PIN STEP O| |O VDD
  115. * SPINDLE_DIR_PIN DIR O| |O GND
  116. * -------
  117. *
  118. * Note: Socket names vary from vendor to vendor
  119. */
  120. #undef SPINDLE_LASER_PWM_PIN // Definitions in pins_RAMPS.h are not good with 3DRAG
  121. #undef SPINDLE_LASER_ENA_PIN
  122. #undef SPINDLE_DIR_PIN
  123. #if HAS_CUTTER
  124. #if !EXTRUDERS
  125. #undef E0_DIR_PIN
  126. #undef E0_ENABLE_PIN
  127. #undef E0_STEP_PIN
  128. #undef Z_DIR_PIN
  129. #undef Z_ENABLE_PIN
  130. #undef Z_STEP_PIN
  131. #define Z_DIR_PIN 28
  132. #define Z_ENABLE_PIN 24
  133. #define Z_STEP_PIN 26
  134. #define SPINDLE_LASER_PWM_PIN 46 // MUST BE HARDWARE PWM
  135. #define SPINDLE_LASER_ENA_PIN 62 // Pin should have a pullup!
  136. #define SPINDLE_DIR_PIN 48
  137. #elif !BOTH(ULTRA_LCD, NEWPANEL) // use expansion header if no LCD in use
  138. #define SPINDLE_LASER_ENA_PIN 16 // Pin should have a pullup/pulldown!
  139. #define SPINDLE_DIR_PIN 17
  140. #endif
  141. #endif