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_DUE3DOM_MINI.h 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 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 <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #pragma once
  23. /**
  24. * DUE3DOM MINI pin assignments
  25. */
  26. #include "env_validate.h"
  27. #define BOARD_INFO_NAME "DUE3DOM MINI"
  28. //
  29. // Servos
  30. //
  31. #define SERVO0_PIN 5
  32. #define SERVO1_PIN 6
  33. #define SERVO2_PIN 8 // 4-pin header FAN0
  34. #define SERVO3_PIN -1
  35. //
  36. // Limit Switches
  37. //
  38. #define X_MIN_PIN 38
  39. #define X_MAX_PIN -1
  40. #define Y_MIN_PIN 34
  41. #define Y_MAX_PIN -1
  42. #define Z_MIN_PIN 30
  43. #define Z_MAX_PIN -1
  44. //
  45. // Steppers
  46. //
  47. #define X_STEP_PIN 17
  48. #define X_DIR_PIN 16
  49. #define X_ENABLE_PIN 22
  50. #define Y_STEP_PIN 2
  51. #define Y_DIR_PIN 3
  52. #define Y_ENABLE_PIN 26
  53. #define Z_STEP_PIN 64
  54. #define Z_DIR_PIN 63
  55. #define Z_ENABLE_PIN 15
  56. #define E0_STEP_PIN 61
  57. #define E0_DIR_PIN 60
  58. #define E0_ENABLE_PIN 62
  59. //
  60. // Temperature Sensors
  61. //
  62. #define TEMP_0_PIN 0 // Analog Input (HOTEND0 thermistor)
  63. #define TEMP_1_PIN 2 // Analog Input (unused)
  64. #define TEMP_2_PIN 5 // Analog Input (OnBoard thermistor beta 3950)
  65. #define TEMP_BED_PIN 1 // Analog Input (BED thermistor)
  66. // SPI for Max6675 or Max31855 Thermocouple
  67. #if DISABLED(SDSUPPORT)
  68. #define MAX6675_SS_PIN 53
  69. #else
  70. #define MAX6675_SS_PIN 53
  71. #endif
  72. //
  73. // Heaters / Fans
  74. //
  75. #define HEATER_0_PIN 13 // HOTEND0 MOSFET
  76. #define HEATER_BED_PIN 7 // BED MOSFET
  77. #ifndef FAN_PIN
  78. #define FAN_PIN 11 // FAN1 header on board - PRINT FAN
  79. #endif
  80. #define FAN1_PIN 12 // FAN2 header on board - CONTROLLER FAN
  81. #define FAN2_PIN 9 // FAN3 header on board - EXTRUDER0 FAN
  82. //#define FAN3_PIN 8 // FAN0 4-pin header on board
  83. //
  84. // Misc. Functions
  85. //
  86. #define SDSS 4
  87. #define PS_ON_PIN 40
  88. //
  89. // LCD / Controller
  90. //
  91. #if HAS_WIRED_LCD
  92. #define LCD_PINS_RS 42
  93. #define LCD_PINS_ENABLE 43
  94. #define LCD_PINS_D4 44
  95. #define LCD_PINS_D5 45
  96. #define LCD_PINS_D6 46
  97. #define LCD_PINS_D7 47
  98. #if IS_RRD_SC
  99. #define BEEPER_PIN 41
  100. #define BTN_EN1 50
  101. #define BTN_EN2 52
  102. #define BTN_ENC 48
  103. #define SDSS 4
  104. #define SD_DETECT_PIN 14
  105. #elif ENABLED(RADDS_DISPLAY)
  106. #define BEEPER_PIN 41
  107. #define BTN_EN1 50
  108. #define BTN_EN2 52
  109. #define BTN_ENC 48
  110. #define BTN_BACK 71
  111. #undef SDSS
  112. #define SDSS 4
  113. #define SD_DETECT_PIN 14
  114. #elif HAS_U8GLIB_I2C_OLED
  115. #define BTN_EN1 50
  116. #define BTN_EN2 52
  117. #define BTN_ENC 48
  118. #define BEEPER_PIN 41
  119. #define LCD_SDSS 4
  120. #define SD_DETECT_PIN 14
  121. #elif ENABLED(SPARK_FULL_GRAPHICS)
  122. #define LCD_PINS_D4 29
  123. #define LCD_PINS_ENABLE 27
  124. #define LCD_PINS_RS 25
  125. #define BTN_EN1 35
  126. #define BTN_EN2 33
  127. #define BTN_ENC 37
  128. #define BEEPER_PIN -1
  129. #elif ENABLED(MINIPANEL)
  130. #define BTN_EN1 52
  131. #define BTN_EN2 50
  132. #define BTN_ENC 48
  133. #define LCD_SDSS 4
  134. #define SD_DETECT_PIN 14
  135. #define BEEPER_PIN 41
  136. #define DOGLCD_A0 46
  137. #define DOGLCD_CS 45
  138. #endif // SPARK_FULL_GRAPHICS
  139. #if ENABLED(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER)
  140. #define BTN_ENC_EN LCD_PINS_D7 // Detect the presence of the encoder
  141. #endif
  142. #endif // HAS_WIRED_LCD