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_RAMPS_13.h 6.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. /**
  2. * Arduino Mega with RAMPS v1.3 pin assignments
  3. *
  4. * Applies to the following boards:
  5. *
  6. * RAMPS_13_EFB (Extruder, Fan, Bed)
  7. * RAMPS_13_EEB (Extruder, Extruder, Bed)
  8. * RAMPS_13_EFF (Extruder, Fan, Fan)
  9. * RAMPS_13_EEF (Extruder, Extruder, Fan)
  10. *
  11. * Other pins_MYBOARD.h files may override these defaults
  12. */
  13. #if !defined(__AVR_ATmega1280__) && !defined(__AVR_ATmega2560__)
  14. #error Oops! Make sure you have 'Arduino Mega' selected from the 'Tools -> Boards' menu.
  15. #endif
  16. #define LARGE_FLASH true
  17. #define X_STEP_PIN 54
  18. #define X_DIR_PIN 55
  19. #define X_ENABLE_PIN 38
  20. #define X_MIN_PIN 3
  21. #define X_MAX_PIN 2
  22. #define Y_STEP_PIN 60
  23. #define Y_DIR_PIN 61
  24. #define Y_ENABLE_PIN 56
  25. #define Y_MIN_PIN 14
  26. #define Y_MAX_PIN 15
  27. #define Z_STEP_PIN 46
  28. #define Z_DIR_PIN 48
  29. #define Z_ENABLE_PIN 62
  30. #define Z_MIN_PIN 18
  31. #define Z_MAX_PIN 19
  32. #define Z_PROBE_PIN -1
  33. #define Y2_STEP_PIN 36
  34. #define Y2_DIR_PIN 34
  35. #define Y2_ENABLE_PIN 30
  36. #define Z2_STEP_PIN 36
  37. #define Z2_DIR_PIN 34
  38. #define Z2_ENABLE_PIN 30
  39. #define E0_STEP_PIN 26
  40. #define E0_DIR_PIN 28
  41. #define E0_ENABLE_PIN 24
  42. #define E1_STEP_PIN 36
  43. #define E1_DIR_PIN 34
  44. #define E1_ENABLE_PIN 30
  45. #define SDPOWER -1
  46. #define SDSS 53
  47. #define LED_PIN 13
  48. #if MB(RAMPS_13_EEB) && defined(FILAMENT_SENSOR) // FMM added for Filament Extruder
  49. // define analog pin for the filament width sensor input
  50. // Use the RAMPS 1.4 Analog input 5 on the AUX2 connector
  51. #define FILWIDTH_PIN 5
  52. #endif
  53. #if defined(FILAMENT_RUNOUT_SENSOR)
  54. // define digital pin 4 for the filament runout sensor. Use the RAMPS 1.4 digital input 4 on the servos connector
  55. #define FILRUNOUT_PIN 4
  56. #endif
  57. #if MB(RAMPS_13_EFB) || MB(RAMPS_13_EFF)
  58. #define FAN_PIN 9 // (Sprinter config)
  59. #if MB(RAMPS_13_EFF)
  60. #define CONTROLLERFAN_PIN -1 // Pin used for the fan to cool controller
  61. #endif
  62. #elif MB(RAMPS_13_EEF)
  63. #define FAN_PIN 8
  64. #else
  65. #define FAN_PIN 4 // IO pin. Buffer needed
  66. #endif
  67. #define PS_ON_PIN 12
  68. #if defined(REPRAP_DISCOUNT_SMART_CONTROLLER) || defined(G3D_PANEL)
  69. #define KILL_PIN 41
  70. #else
  71. #define KILL_PIN -1
  72. #endif
  73. #if MB(RAMPS_13_EFF)
  74. #define HEATER_0_PIN 8
  75. #else
  76. #define HEATER_0_PIN 10 // EXTRUDER 1
  77. #endif
  78. #if MB(RAMPS_13_EFB)
  79. #define HEATER_1_PIN -1
  80. #else
  81. #define HEATER_1_PIN 9 // EXTRUDER 2 (FAN On Sprinter)
  82. #endif
  83. #define HEATER_2_PIN -1
  84. #define TEMP_0_PIN 13 // ANALOG NUMBERING
  85. #define TEMP_1_PIN 15 // ANALOG NUMBERING
  86. #define TEMP_2_PIN -1 // ANALOG NUMBERING
  87. #if MB(RAMPS_13_EFF) || MB(RAMPS_13_EEF)
  88. #define HEATER_BED_PIN -1 // NO BED
  89. #else
  90. #define HEATER_BED_PIN 8 // BED
  91. #endif
  92. #define TEMP_BED_PIN 14 // ANALOG NUMBERING
  93. #ifdef NUM_SERVOS
  94. #define SERVO0_PIN 11
  95. #if NUM_SERVOS > 1
  96. #define SERVO1_PIN 6
  97. #if NUM_SERVOS > 2
  98. #define SERVO2_PIN 5
  99. #if NUM_SERVOS > 3
  100. #define SERVO3_PIN 4
  101. #endif
  102. #endif
  103. #endif
  104. #endif
  105. #ifdef ULTRA_LCD
  106. #ifdef NEWPANEL
  107. #ifdef PANEL_ONE
  108. #define LCD_PINS_RS 40
  109. #define LCD_PINS_ENABLE 42
  110. #define LCD_PINS_D4 65
  111. #define LCD_PINS_D5 66
  112. #define LCD_PINS_D6 44
  113. #define LCD_PINS_D7 64
  114. #else
  115. #define LCD_PINS_RS 16
  116. #define LCD_PINS_ENABLE 17
  117. #define LCD_PINS_D4 23
  118. #define LCD_PINS_D5 25
  119. #define LCD_PINS_D6 27
  120. #define LCD_PINS_D7 29
  121. #endif
  122. #ifdef REPRAP_DISCOUNT_SMART_CONTROLLER
  123. #define BEEPER 37
  124. #define BTN_EN1 31
  125. #define BTN_EN2 33
  126. #define BTN_ENC 35
  127. #define SDCARDDETECT 49
  128. #elif defined(LCD_I2C_PANELOLU2)
  129. #define BTN_EN1 47 // reverse if the encoder turns the wrong way.
  130. #define BTN_EN2 43
  131. #define BTN_ENC 32
  132. #define LCD_SDSS 53
  133. #define SDCARDDETECT -1
  134. #define KILL_PIN 41
  135. #elif defined(LCD_I2C_VIKI)
  136. #define BTN_EN1 22 // reverse if the encoder turns the wrong way.
  137. #define BTN_EN2 7
  138. #define BTN_ENC -1
  139. #define LCD_SDSS 53
  140. #define SDCARDDETECT 49
  141. #else
  142. // arduino pin which triggers an piezzo beeper
  143. #define BEEPER 33 // Beeper on AUX-4
  144. // buttons are directly attached using AUX-2
  145. #ifdef REPRAPWORLD_KEYPAD
  146. #define BTN_EN1 64 // encoder
  147. #define BTN_EN2 59 // encoder
  148. #define BTN_ENC 63 // enter button
  149. #define SHIFT_OUT 40 // shift register
  150. #define SHIFT_CLK 44 // shift register
  151. #define SHIFT_LD 42 // shift register
  152. #elif defined(PANEL_ONE)
  153. #define BTN_EN1 59 // AUX2 PIN 3
  154. #define BTN_EN2 63 // AUX2 PIN 4
  155. #define BTN_ENC 49 // AUX3 PIN 7
  156. #else
  157. #define BTN_EN1 37
  158. #define BTN_EN2 35
  159. #define BTN_ENC 31 // the click
  160. #endif
  161. #ifdef G3D_PANEL
  162. #define SDCARDDETECT 49
  163. #else
  164. #define SDCARDDETECT -1 // Ramps does not use this port
  165. #endif
  166. #endif
  167. #else // Old-style panel with shift register
  168. // Arduino pin witch triggers an piezzo beeper
  169. #define BEEPER 33 // No Beeper added
  170. // Buttons are attached to a shift register
  171. // Not wired yet
  172. // #define SHIFT_CLK 38
  173. // #define SHIFT_LD 42
  174. // #define SHIFT_OUT 40
  175. // #define SHIFT_EN 17
  176. #define LCD_PINS_RS 16
  177. #define LCD_PINS_ENABLE 17
  178. #define LCD_PINS_D4 23
  179. #define LCD_PINS_D5 25
  180. #define LCD_PINS_D6 27
  181. #define LCD_PINS_D7 29
  182. #endif
  183. #endif // ULTRA_LCD
  184. // SPI for Max6675 Thermocouple
  185. #ifndef SDSUPPORT
  186. #define MAX6675_SS 66 // Do not use pin 53 if there is even the remote possibility of using Display/SD card
  187. #else
  188. #define MAX6675_SS 66 // Do not use pin 49 as this is tied to the switch inside the SD card socket to detect if there is an SD card present
  189. #endif
  190. #ifndef SDSUPPORT
  191. // these pins are defined in the SD library if building with SD support
  192. #define SCK_PIN 52
  193. #define MISO_PIN 50
  194. #define MOSI_PIN 51
  195. #endif