My Marlin configs for Fabrikator Mini and CTC i3 Pro B
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

pins_DUE3DOM.h 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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. * DUE3DOM pin assignments
  24. */
  25. #ifndef __SAM3X8E__
  26. #error "Oops! Make sure you have 'Arduino Due' selected from the 'Tools -> Boards' menu."
  27. #endif
  28. #define BOARD_NAME "DUE3DOM"
  29. //
  30. // Servos
  31. //
  32. #define SERVO0_PIN 5
  33. #define SERVO1_PIN 6
  34. #define SERVO2_PIN 13
  35. #define SERVO3_PIN -1
  36. //
  37. // Limit Switches
  38. //
  39. #define X_MIN_PIN 38
  40. #define X_MAX_PIN 36
  41. #define Y_MIN_PIN 34
  42. #define Y_MAX_PIN 32
  43. #define Z_MIN_PIN 30
  44. #define Z_MAX_PIN 28
  45. //
  46. // Steppers
  47. //
  48. #define X_STEP_PIN 2
  49. #define X_DIR_PIN 3
  50. #define X_ENABLE_PIN 22
  51. #define Y_STEP_PIN 17
  52. #define Y_DIR_PIN 16
  53. #define Y_ENABLE_PIN 26
  54. #define Z_STEP_PIN 61 // Z1 STP
  55. #define Z_DIR_PIN 60 // Z1 DIR
  56. #define Z_ENABLE_PIN 15 // Z1 ENA
  57. #define E0_STEP_PIN 64 // Z2 STP
  58. #define E0_DIR_PIN 63 // Z2 DIR
  59. #define E0_ENABLE_PIN 62 // Z2 ENA
  60. #define E1_STEP_PIN 51 // E1 STP
  61. #define E1_DIR_PIN 53 // E1 DIR
  62. #define E1_ENABLE_PIN 65 // E1 ENA
  63. #define E2_STEP_PIN 24 // E2 STP
  64. #define E2_DIR_PIN 23 // E2 DIR
  65. #define E2_ENABLE_PIN 49 // E2 ENA
  66. //
  67. // Temperature Sensors
  68. //
  69. #define TEMP_0_PIN 0 // Analog Input (HOTEND0 thermistor)
  70. #define TEMP_1_PIN 2 // Analog Input (HOTEND1 thermistor)
  71. #define TEMP_2_PIN 5 // Analog Input (unused)
  72. #define TEMP_BED_PIN 1 // Analog Input (BED thermistor)
  73. // SPI for Max6675 or Max31855 Thermocouple
  74. #if DISABLED(SDSUPPORT)
  75. #define MAX6675_SS -1
  76. #else
  77. #define MAX6675_SS -1
  78. #endif
  79. //
  80. // Heaters / Fans
  81. //
  82. #define HEATER_0_PIN 7 // HOTEND0 MOSFET
  83. #define HEATER_1_PIN 8 // HOTEND1 MOSFET
  84. #define HEATER_BED_PIN 39 // BED MOSFET
  85. #define FAN_PIN 11 // FAN1 header on board - PRINT FAN
  86. #define FAN1_PIN 9 // FAN2 header on board - CONTROLLER FAN
  87. #define FAN2_PIN 12 // FAN3 header on board - EXTRUDER0 FAN
  88. //
  89. // Misc. Functions
  90. //
  91. #define SDSS 4
  92. #define PS_ON_PIN 40
  93. //
  94. // LCD / Controller
  95. //
  96. #if ENABLED(ULTRA_LCD)
  97. #define LCD_PINS_RS 42
  98. #define LCD_PINS_ENABLE 43
  99. #define LCD_PINS_D4 44
  100. #define LCD_PINS_D5 45
  101. #define LCD_PINS_D6 46
  102. #define LCD_PINS_D7 47
  103. #if ENABLED(REPRAP_DISCOUNT_SMART_CONTROLLER)
  104. #define BEEPER_PIN 41
  105. #define BTN_EN1 50
  106. #define BTN_EN2 52
  107. #define BTN_ENC 48
  108. #define SDSS 4
  109. #define SD_DETECT_PIN 14
  110. // RADDS LCD panel
  111. #elif ENABLED(RADDS_DISPLAY)
  112. #define BEEPER_PIN 41
  113. #define BTN_EN1 50
  114. #define BTN_EN2 52
  115. #define BTN_ENC 48
  116. #define BTN_BACK 71
  117. #undef SDSS
  118. #define SDSS 4
  119. #define SD_DETECT_PIN 14
  120. #elif ENABLED(SSD1306_OLED_I2C_CONTROLLER)
  121. #define BTN_EN1 50
  122. #define BTN_EN2 52
  123. #define BTN_ENC 48
  124. #define BEEPER_PIN 41
  125. #define LCD_SDSS 4
  126. #define SD_DETECT_PIN 14
  127. #elif ENABLED(SPARK_FULL_GRAPHICS)
  128. #define LCD_PINS_D4 29
  129. #define LCD_PINS_ENABLE 27
  130. #define LCD_PINS_RS 25
  131. #define BTN_EN1 35
  132. #define BTN_EN2 33
  133. #define BTN_ENC 37
  134. #define BEEPER_PIN -1
  135. #endif // SPARK_FULL_GRAPHICS
  136. #endif // ULTRA_LCD