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_MEGATRONICS_3.h 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  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. * MegaTronics v3.0 / v3.1 / v3.2 pin assignments
  25. */
  26. #ifndef __AVR_ATmega2560__
  27. #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
  28. #endif
  29. #if MB(MEGATRONICS_32)
  30. #define BOARD_NAME "Megatronics v3.2"
  31. #elif MB(MEGATRONICS_31)
  32. #define BOARD_NAME "Megatronics v3.1"
  33. #else
  34. #define BOARD_NAME "Megatronics v3.0"
  35. #endif
  36. //
  37. // Servos
  38. //
  39. #define SERVO0_PIN 46 // AUX3-6
  40. #define SERVO1_PIN 47 // AUX3-5
  41. #define SERVO2_PIN 48 // AUX3-4
  42. #define SERVO3_PIN 49 // AUX3-3
  43. //
  44. // Limit Switches
  45. //
  46. #define X_MIN_PIN 37
  47. #define X_MAX_PIN 40
  48. #define Y_MIN_PIN 41
  49. #define Y_MAX_PIN 38
  50. #define Z_MIN_PIN 18
  51. #define Z_MAX_PIN 19
  52. //
  53. // Z Probe (when not Z_MIN_PIN)
  54. //
  55. #ifndef Z_MIN_PROBE_PIN
  56. #define Z_MIN_PROBE_PIN 19
  57. #endif
  58. //
  59. // Steppers
  60. //
  61. #define X_STEP_PIN 58
  62. #define X_DIR_PIN 57
  63. #define X_ENABLE_PIN 59
  64. #define Y_STEP_PIN 5
  65. #define Y_DIR_PIN 17
  66. #define Y_ENABLE_PIN 4
  67. #define Z_STEP_PIN 16
  68. #define Z_DIR_PIN 11
  69. #define Z_ENABLE_PIN 3
  70. #define E0_STEP_PIN 28
  71. #define E0_DIR_PIN 27
  72. #define E0_ENABLE_PIN 29
  73. #define E1_STEP_PIN 25
  74. #define E1_DIR_PIN 24
  75. #define E1_ENABLE_PIN 26
  76. #define E2_STEP_PIN 22
  77. #define E2_DIR_PIN 60
  78. #define E2_ENABLE_PIN 23
  79. //
  80. // Temperature Sensors
  81. //
  82. #if TEMP_SENSOR_0 == -1
  83. #define TEMP_0_PIN 11 // Analog Input
  84. #else
  85. #define TEMP_0_PIN 15 // Analog Input
  86. #endif
  87. #if TEMP_SENSOR_1 == -1
  88. #define TEMP_1_PIN 10 // Analog Input
  89. #else
  90. #define TEMP_1_PIN 13 // Analog Input
  91. #endif
  92. #if TEMP_SENSOR_2 == -1
  93. #define TEMP_2_PIN 9 // Analog Input
  94. #else
  95. #define TEMP_2_PIN 12 // Analog Input
  96. #endif
  97. #if TEMP_SENSOR_BED == -1
  98. #define TEMP_BED_PIN 8 // Analog Input
  99. #else
  100. #define TEMP_BED_PIN 14 // Analog Input
  101. #endif
  102. //
  103. // Heaters / Fans
  104. //
  105. #define HEATER_0_PIN 2
  106. #define HEATER_1_PIN 9
  107. #define HEATER_2_PIN 8
  108. #define HEATER_BED_PIN 10
  109. #ifndef FAN_PIN
  110. #define FAN_PIN 6
  111. #endif
  112. #define FAN1_PIN 7
  113. //
  114. // Misc. Functions
  115. //
  116. #define SDSS 53
  117. #define LED_PIN 13
  118. #define PS_ON_PIN 12
  119. #define CASE_LIGHT_PIN 45 // Try the keypad connector
  120. //
  121. // LCD / Controller
  122. //
  123. #define BEEPER_PIN 61
  124. #define BTN_EN1 44
  125. #define BTN_EN2 45
  126. #define BTN_ENC 33
  127. #if ENABLED(REPRAPWORLD_GRAPHICAL_LCD)
  128. #define LCD_PINS_RS 56 // CS chip select / SS chip slave select
  129. #define LCD_PINS_ENABLE 51 // SID (MOSI)
  130. #define LCD_PINS_D4 52 // SCK (CLK) clock
  131. #define SD_DETECT_PIN 35
  132. #else
  133. #define LCD_PINS_RS 32
  134. #define LCD_PINS_ENABLE 31
  135. #define LCD_PINS_D4 14
  136. #define LCD_PINS_D5 30
  137. #define LCD_PINS_D6 39
  138. #define LCD_PINS_D7 15
  139. #define SHIFT_CLK 43
  140. #define SHIFT_LD 35
  141. #define SHIFT_OUT 34
  142. #define SHIFT_EN 44
  143. #if MB(MEGATRONICS_31) || MB(MEGATRONICS_32)
  144. #define SD_DETECT_PIN 56
  145. #endif
  146. #endif
  147. //
  148. // M3/M4/M5 - Spindle/Laser Control
  149. //
  150. #if DISABLED(REPRAPWORLD_KEYPAD) // try to use the keypad connector first
  151. #define SPINDLE_LASER_PWM_PIN 44 // Hardware PWM
  152. #define SPINDLE_LASER_ENA_PIN 43 // Pullup!
  153. #define SPINDLE_DIR_PIN 42
  154. #elif EXTRUDERS <= 2
  155. // Hijack the last extruder so that we can get the PWM signal off the Y breakout
  156. // Move Y to the E2 plug. This makes dual Y steppers harder
  157. #undef Y_ENABLE_PIN // 4
  158. #undef Y_STEP_PIN // 5
  159. #undef Y_DIR_PIN // 17
  160. #undef E2_ENABLE_PIN // 23
  161. #undef E2_STEP_PIN // 22
  162. #undef E2_DIR_PIN // 60
  163. #define Y_ENABLE_PIN 23
  164. #define Y_STEP_PIN 22
  165. #define Y_DIR_PIN 60
  166. #define SPINDLE_LASER_PWM_PIN 4 // Hardware PWM
  167. #define SPINDLE_LASER_ENA_PIN 17 // Pullup!
  168. #define SPINDLE_DIR_PIN 5
  169. #endif