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_14.h 10KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  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 <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. /**
  23. * Arduino Mega with RAMPS v1.4 (or v1.3) pin assignments
  24. *
  25. * Applies to the following boards:
  26. *
  27. * RAMPS_14_EFB (Hotend, Fan, Bed)
  28. * RAMPS_14_EEB (Hotend0, Hotend1, Bed)
  29. * RAMPS_14_EFF (Hotend, Fan0, Fan1)
  30. * RAMPS_14_EEF (Hotend0, Hotend1, Fan)
  31. * RAMPS_14_SF (Spindle, Controller Fan)
  32. *
  33. * RAMPS_13_EFB (Hotend, Fan, Bed)
  34. * RAMPS_13_EEB (Hotend0, Hotend1, Bed)
  35. * RAMPS_13_EFF (Hotend, Fan0, Fan1)
  36. * RAMPS_13_EEF (Hotend0, Hotend1, Fan)
  37. * RAMPS_13_SF (Spindle, Controller Fan)
  38. *
  39. * Other pins_MYBOARD.h files may override these defaults
  40. *
  41. * Differences between
  42. * RAMPS_13 | RAMPS_14
  43. * 7 | 11
  44. */
  45. #if !defined(__AVR_ATmega1280__) && !defined(__AVR_ATmega2560__)
  46. #error "Oops! Make sure you have 'Arduino Mega' selected from the 'Tools -> Boards' menu."
  47. #endif
  48. #ifndef BOARD_NAME
  49. #define BOARD_NAME "RAMPS 1.4"
  50. #endif
  51. #define LARGE_FLASH true
  52. #ifdef IS_RAMPS_13
  53. #define SERVO0_PIN 7 // RAMPS_13 // Will conflict with BTN_EN2 on LCD_I2C_VIKI
  54. #else
  55. #define SERVO0_PIN 11
  56. #endif
  57. #define SERVO1_PIN 6
  58. #define SERVO2_PIN 5
  59. #define SERVO3_PIN 4
  60. #define X_STEP_PIN 54
  61. #define X_DIR_PIN 55
  62. #define X_ENABLE_PIN 38
  63. #define X_MIN_PIN 3
  64. #ifndef X_MAX_PIN
  65. #define X_MAX_PIN 2
  66. #endif
  67. #define Y_STEP_PIN 60
  68. #define Y_DIR_PIN 61
  69. #define Y_ENABLE_PIN 56
  70. #define Y_MIN_PIN 14
  71. #define Y_MAX_PIN 15
  72. #define Z_STEP_PIN 46
  73. #define Z_DIR_PIN 48
  74. #define Z_ENABLE_PIN 62
  75. #define Z_MIN_PIN 18
  76. #define Z_MAX_PIN 19
  77. #define E0_STEP_PIN 26
  78. #define E0_DIR_PIN 28
  79. #define E0_ENABLE_PIN 24
  80. #define E1_STEP_PIN 36
  81. #define E1_DIR_PIN 34
  82. #define E1_ENABLE_PIN 30
  83. #define SDSS 53
  84. #define LED_PIN 13
  85. // Use the RAMPS 1.4 Analog input 5 on the AUX2 connector
  86. #define FILWIDTH_PIN 5 // ANALOG NUMBERING
  87. #if ENABLED(Z_MIN_PROBE_ENDSTOP)
  88. // Define a pin to use as the signal pin on Arduino for the Z_PROBE endstop.
  89. #define Z_MIN_PROBE_PIN 32
  90. #endif
  91. // define digital pin 4 for the filament runout sensor. Use the RAMPS 1.4 digital input 4 on the servos connector
  92. #define FIL_RUNOUT_PIN 4
  93. #define PS_ON_PIN 12
  94. #define TEMP_0_PIN 13 // ANALOG NUMBERING
  95. #define TEMP_1_PIN 15 // ANALOG NUMBERING
  96. #define TEMP_BED_PIN 14 // ANALOG NUMBERING
  97. #if ENABLED(Z_PROBE_SLED)
  98. #define SLED_PIN -1
  99. #endif
  100. /*
  101. // Augmentation for auto-assigning RAMPS plugs
  102. #if DISABLED(IS_RAMPS_EEB) && DISABLED(IS_RAMPS_EEF) && DISABLED(IS_RAMPS_EFB) && DISABLED(IS_RAMPS_EFF) && DISABLED(IS_RAMPS_SF)
  103. #if HOTENDS > 1
  104. #if TEMP_SENSOR_BED
  105. #define IS_RAMPS_EEB
  106. #else
  107. #define IS_RAMPS_EEF
  108. #endif
  109. #elif TEMP_SENSOR_BED
  110. #define IS_RAMPS_EFB
  111. #else
  112. #define IS_RAMPS_EFF
  113. #endif
  114. #endif
  115. */
  116. /**
  117. * Hi Voltage PWM Pin Assignments
  118. */
  119. #ifndef HI_VOLT_PIN_D
  120. #define HI_VOLT_PIN_D -1
  121. #endif
  122. #ifndef HI_VOLT_PIN_C
  123. #define HI_VOLT_PIN_C 8
  124. #endif
  125. #ifndef HI_VOLT_PIN_B
  126. #define HI_VOLT_PIN_B 9
  127. #endif
  128. #ifndef HI_VOLT_PIN_A
  129. #define HI_VOLT_PIN_A 10
  130. #endif
  131. #if ENABLED(IS_RAMPS_EFB) // Hotend, Fan, Bed
  132. #define HEATER_0_PIN HI_VOLT_PIN_A
  133. #define FAN_PIN HI_VOLT_PIN_B
  134. #define HEATER_BED_PIN HI_VOLT_PIN_C
  135. #if EXTRUDERS == 1
  136. #define FAN1_PIN HI_VOLT_PIN_D
  137. #else
  138. #define HEATER_1_PIN HI_VOLT_PIN_D
  139. #endif
  140. #elif MB(RAMPS_13_EEF) || MB(RAMPS_14_EEF) // Hotend, Hotend, Fan
  141. #define HEATER_0_PIN HI_VOLT_PIN_A
  142. #define HEATER_1_PIN HI_VOLT_PIN_B
  143. #define FAN_PIN HI_VOLT_PIN_C
  144. #elif MB(RAMPS_13_EEB) || MB(RAMPS_14_EEB) // Hotend, Hotend, Bed
  145. #define HEATER_0_PIN HI_VOLT_PIN_A
  146. #define HEATER_1_PIN HI_VOLT_PIN_B
  147. #define HEATER_BED_PIN HI_VOLT_PIN_C
  148. #define FAN_PIN 4 // IO pin. Buffer needed
  149. #elif MB(RAMPS_13_EFF) || MB(RAMPS_14_EFF) // Hotend, Fan, Fan (EFF is reversed?)
  150. #define HEATER_0_PIN HI_VOLT_PIN_C
  151. #define FAN_PIN HI_VOLT_PIN_B
  152. #define FAN1_PIN HI_VOLT_PIN_A
  153. #define CONTROLLERFAN_PIN -1
  154. #elif MB(RAMPS_13_SF) || MB(RAMPS_14_SF) // Spindle, Fan
  155. #define FAN_PIN HI_VOLT_PIN_C
  156. #else // Non-specific are "EFB" by legacy
  157. #define HEATER_0_PIN HI_VOLT_PIN_A
  158. #define FAN_PIN HI_VOLT_PIN_B
  159. #define HEATER_BED_PIN HI_VOLT_PIN_C
  160. #if HOTENDS == 1
  161. #define FAN1_PIN HI_VOLT_PIN_D
  162. #else
  163. #define HEATER_1_PIN HI_VOLT_PIN_D
  164. #endif
  165. #endif
  166. /**
  167. * LCD Controller Pin Assignments
  168. */
  169. #if ENABLED(ULTRA_LCD)
  170. #if ENABLED(REPRAPWORLD_GRAPHICAL_LCD)
  171. #define LCD_PINS_RS 49 //CS chip select /SS chip slave select
  172. #define LCD_PINS_ENABLE 51 //SID (MOSI)
  173. #define LCD_PINS_D4 52 //SCK (CLK) clock
  174. #elif ENABLED(NEWPANEL) && ENABLED(PANEL_ONE)
  175. #define LCD_PINS_RS 40
  176. #define LCD_PINS_ENABLE 42
  177. #define LCD_PINS_D4 65
  178. #define LCD_PINS_D5 66
  179. #define LCD_PINS_D6 44
  180. #define LCD_PINS_D7 64
  181. #else
  182. #define LCD_PINS_RS 16
  183. #define LCD_PINS_ENABLE 17
  184. #define LCD_PINS_D4 23
  185. #define LCD_PINS_D5 25
  186. #define LCD_PINS_D6 27
  187. #define LCD_PINS_D7 29
  188. #if DISABLED(NEWPANEL)
  189. #define BEEPER_PIN 33
  190. // Buttons are attached to a shift register
  191. // Not wired yet
  192. //#define SHIFT_CLK 38
  193. //#define SHIFT_LD 42
  194. //#define SHIFT_OUT 40
  195. //#define SHIFT_EN 17
  196. #endif
  197. #endif
  198. #if ENABLED(NEWPANEL)
  199. #if ENABLED(REPRAP_DISCOUNT_SMART_CONTROLLER)
  200. #define BEEPER_PIN 37
  201. #define BTN_EN1 31
  202. #define BTN_EN2 33
  203. #define BTN_ENC 35
  204. #define SD_DETECT_PIN 49
  205. #define KILL_PIN 41
  206. #if ENABLED(BQ_LCD_SMART_CONTROLLER)
  207. #define LCD_PIN_BL 39
  208. #endif
  209. #elif ENABLED(REPRAPWORLD_GRAPHICAL_LCD)
  210. #define BTN_EN1 64
  211. #define BTN_EN2 59
  212. #define BTN_ENC 63
  213. #define SD_DETECT_PIN 42
  214. #elif ENABLED(LCD_I2C_PANELOLU2)
  215. #define BTN_EN1 47 // reverse if the encoder turns the wrong way.
  216. #define BTN_EN2 43
  217. #define BTN_ENC 32
  218. #define LCD_SDSS 53
  219. #define SD_DETECT_PIN -1
  220. #define KILL_PIN 41
  221. #elif ENABLED(LCD_I2C_VIKI)
  222. #define BTN_EN1 22 // reverse if the encoder turns the wrong way.
  223. #define BTN_EN2 7 // http://files.panucatt.com/datasheets/viki_wiring_diagram.pdf
  224. // tells about 40/42.
  225. // 22/7 are unused on RAMPS_14. 22 is unused and 7 the SERVO0_PIN on RAMPS_13.
  226. #define BTN_ENC -1
  227. #define LCD_SDSS 53
  228. #define SD_DETECT_PIN 49
  229. #elif ENABLED(VIKI2) || ENABLED(miniVIKI)
  230. #define BEEPER_PIN 33
  231. // Pins for DOGM SPI LCD Support
  232. #define DOGLCD_A0 44
  233. #define DOGLCD_CS 45
  234. #define LCD_SCREEN_ROT_180
  235. #define BTN_EN1 22
  236. #define BTN_EN2 7
  237. #define BTN_ENC 39
  238. #define SDSS 53
  239. #define SD_DETECT_PIN -1 // Pin 49 for display sd interface, 72 for easy adapter board
  240. #define KILL_PIN 31
  241. #if ENABLED(TEMP_STAT_LEDS)
  242. #define STAT_LED_RED 32
  243. #define STAT_LED_BLUE 35
  244. #endif
  245. #elif ENABLED(ELB_FULL_GRAPHIC_CONTROLLER)
  246. #define BTN_EN1 35 // reverse if the encoder turns the wrong way.
  247. #define BTN_EN2 37
  248. #define BTN_ENC 31
  249. #define SD_DETECT_PIN 49
  250. #define LCD_SDSS 53
  251. #define KILL_PIN 41
  252. #define BEEPER_PIN 23
  253. #define DOGLCD_CS 29
  254. #define DOGLCD_A0 27
  255. #define LCD_PIN_BL 33
  256. #elif ENABLED(MINIPANEL)
  257. #define BEEPER_PIN 42
  258. // Pins for DOGM SPI LCD Support
  259. #define DOGLCD_A0 44
  260. #define DOGLCD_CS 66
  261. #define LCD_PIN_BL 65 // backlight LED on A11/D65
  262. #define SDSS 53
  263. #define KILL_PIN 64
  264. // GLCD features
  265. //#define LCD_CONTRAST 190
  266. // Uncomment screen orientation
  267. //#define LCD_SCREEN_ROT_90
  268. //#define LCD_SCREEN_ROT_180
  269. //#define LCD_SCREEN_ROT_270
  270. //The encoder and click button
  271. #define BTN_EN1 40
  272. #define BTN_EN2 63
  273. #define BTN_ENC 59
  274. //not connected to a pin
  275. #define SD_DETECT_PIN 49
  276. #else
  277. // Beeper on AUX-4
  278. #define BEEPER_PIN 33
  279. // buttons are directly attached using AUX-2
  280. #if ENABLED(REPRAPWORLD_KEYPAD)
  281. #define BTN_EN1 64 // encoder
  282. #define BTN_EN2 59 // encoder
  283. #define BTN_ENC 63 // enter button
  284. #define SHIFT_OUT 40 // shift register
  285. #define SHIFT_CLK 44 // shift register
  286. #define SHIFT_LD 42 // shift register
  287. #elif ENABLED(PANEL_ONE)
  288. #define BTN_EN1 59 // AUX2 PIN 3
  289. #define BTN_EN2 63 // AUX2 PIN 4
  290. #define BTN_ENC 49 // AUX3 PIN 7
  291. #else
  292. #define BTN_EN1 37
  293. #define BTN_EN2 35
  294. #define BTN_ENC 31 // the click
  295. #endif
  296. #if ENABLED(G3D_PANEL)
  297. #define SD_DETECT_PIN 49
  298. #define KILL_PIN 41
  299. #else
  300. // #define SD_DETECT_PIN -1 // Ramps doesn't use this
  301. #endif
  302. #endif
  303. #endif // NEWPANEL
  304. #endif // ULTRA_LCD
  305. // SPI for Max6675 or Max31855 Thermocouple
  306. #if DISABLED(SDSUPPORT)
  307. #define MAX6675_SS 66 // Do not use pin 53 if there is even the remote possibility of using Display/SD card
  308. #else
  309. #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
  310. #endif