My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

pins_RAMPS_13.h 5.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  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 Y2_STEP_PIN 36
  33. #define Y2_DIR_PIN 34
  34. #define Y2_ENABLE_PIN 30
  35. #define Z2_STEP_PIN 36
  36. #define Z2_DIR_PIN 34
  37. #define Z2_ENABLE_PIN 30
  38. #define E0_STEP_PIN 26
  39. #define E0_DIR_PIN 28
  40. #define E0_ENABLE_PIN 24
  41. #define E1_STEP_PIN 36
  42. #define E1_DIR_PIN 34
  43. #define E1_ENABLE_PIN 30
  44. #define SDPOWER -1
  45. #define SDSS 53
  46. #define LED_PIN 13
  47. #if MB(RAMPS_13_EEB) && defined(FILAMENT_SENSOR) // FMM added for Filament Extruder
  48. // define analog pin for the filament width sensor input
  49. // Use the RAMPS 1.4 Analog input 5 on the AUX2 connector
  50. #define FILWIDTH_PIN 5
  51. #endif
  52. #if MB(RAMPS_13_EFB) || MB(RAMPS_13_EFF)
  53. #define FAN_PIN 9 // (Sprinter config)
  54. #if MB(RAMPS_13_EFF)
  55. #define CONTROLLERFAN_PIN -1 // Pin used for the fan to cool controller
  56. #endif
  57. #elif MB(RAMPS_13_EEF)
  58. #define FAN_PIN 8
  59. #else
  60. #define FAN_PIN 4 // IO pin. Buffer needed
  61. #endif
  62. #define PS_ON_PIN 12
  63. #if defined(REPRAP_DISCOUNT_SMART_CONTROLLER) || defined(G3D_PANEL)
  64. #define KILL_PIN 41
  65. #else
  66. #define KILL_PIN -1
  67. #endif
  68. #if MB(RAMPS_13_EFF)
  69. #define HEATER_0_PIN 8
  70. #else
  71. #define HEATER_0_PIN 10 // EXTRUDER 1
  72. #endif
  73. #if MB(RAMPS_13_EFB)
  74. #define HEATER_1_PIN -1
  75. #else
  76. #define HEATER_1_PIN 9 // EXTRUDER 2 (FAN On Sprinter)
  77. #endif
  78. #define HEATER_2_PIN -1
  79. #define TEMP_0_PIN 13 // ANALOG NUMBERING
  80. #define TEMP_1_PIN 15 // ANALOG NUMBERING
  81. #define TEMP_2_PIN -1 // ANALOG NUMBERING
  82. #if MB(RAMPS_13_EFF) || MB(RAMPS_13_EEF)
  83. #define HEATER_BED_PIN -1 // NO BED
  84. #else
  85. #define HEATER_BED_PIN 8 // BED
  86. #endif
  87. #define TEMP_BED_PIN 14 // ANALOG NUMBERING
  88. #ifdef NUM_SERVOS
  89. #define SERVO0_PIN 11
  90. #if NUM_SERVOS > 1
  91. #define SERVO1_PIN 6
  92. #if NUM_SERVOS > 2
  93. #define SERVO2_PIN 5
  94. #if NUM_SERVOS > 3
  95. #define SERVO3_PIN 4
  96. #endif
  97. #endif
  98. #endif
  99. #endif
  100. #ifdef ULTRA_LCD
  101. #ifdef NEWPANEL
  102. #define LCD_PINS_RS 16
  103. #define LCD_PINS_ENABLE 17
  104. #define LCD_PINS_D4 23
  105. #define LCD_PINS_D5 25
  106. #define LCD_PINS_D6 27
  107. #define LCD_PINS_D7 29
  108. #ifdef REPRAP_DISCOUNT_SMART_CONTROLLER
  109. #define BEEPER 37
  110. #define BTN_EN1 31
  111. #define BTN_EN2 33
  112. #define BTN_ENC 35
  113. #define SDCARDDETECT 49
  114. #elif defined(LCD_I2C_PANELOLU2)
  115. #define BTN_EN1 47 // reverse if the encoder turns the wrong way.
  116. #define BTN_EN2 43
  117. #define BTN_ENC 32
  118. #define LCD_SDSS 53
  119. #define SDCARDDETECT -1
  120. #define KILL_PIN 41
  121. #elif defined(LCD_I2C_VIKI)
  122. #define BTN_EN1 22 // reverse if the encoder turns the wrong way.
  123. #define BTN_EN2 7
  124. #define BTN_ENC -1
  125. #define LCD_SDSS 53
  126. #define SDCARDDETECT 49
  127. #else
  128. // arduino pin which triggers an piezzo beeper
  129. #define BEEPER 33 // Beeper on AUX-4
  130. // buttons are directly attached using AUX-2
  131. #ifdef REPRAPWORLD_KEYPAD
  132. #define BTN_EN1 64 // encoder
  133. #define BTN_EN2 59 // encoder
  134. #define BTN_ENC 63 // enter button
  135. #define SHIFT_OUT 40 // shift register
  136. #define SHIFT_CLK 44 // shift register
  137. #define SHIFT_LD 42 // shift register
  138. #else
  139. #define BTN_EN1 37
  140. #define BTN_EN2 35
  141. #define BTN_ENC 31 // the click
  142. #endif
  143. #ifdef G3D_PANEL
  144. #define SDCARDDETECT 49
  145. #else
  146. #define SDCARDDETECT -1 // Ramps does not use this port
  147. #endif
  148. #endif
  149. #else // Old-style panel with shift register
  150. // Arduino pin witch triggers an piezzo beeper
  151. #define BEEPER 33 // No Beeper added
  152. // Buttons are attached to a shift register
  153. // Not wired yet
  154. // #define SHIFT_CLK 38
  155. // #define SHIFT_LD 42
  156. // #define SHIFT_OUT 40
  157. // #define SHIFT_EN 17
  158. #define LCD_PINS_RS 16
  159. #define LCD_PINS_ENABLE 17
  160. #define LCD_PINS_D4 23
  161. #define LCD_PINS_D5 25
  162. #define LCD_PINS_D6 27
  163. #define LCD_PINS_D7 29
  164. #endif
  165. #endif // ULTRA_LCD
  166. // SPI for Max6675 Thermocouple
  167. #ifndef SDSUPPORT
  168. #define MAX6675_SS 66 // Do not use pin 53 if there is even the remote possibility of using Display/SD card
  169. #else
  170. #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
  171. #endif
  172. #ifndef SDSUPPORT
  173. // these pins are defined in the SD library if building with SD support
  174. #define SCK_PIN 52
  175. #define MISO_PIN 50
  176. #define MOSI_PIN 51
  177. #endif