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_SMOOTHIEBOARD.h 6.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  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. * Smoothieware Smoothieboard pin assignments
  25. */
  26. #include "env_validate.h"
  27. #define BOARD_INFO_NAME "Smoothieboard"
  28. #define BOARD_WEBSITE_URL "smoothieware.org/smoothieboard"
  29. //
  30. // Servos
  31. //
  32. #define SERVO0_PIN P1_23
  33. //
  34. // Limit Switches
  35. //
  36. #define X_MIN_PIN P1_24
  37. #define X_MAX_PIN P1_25
  38. #define Y_MIN_PIN P1_26
  39. #define Y_MAX_PIN P1_27
  40. #define Z_MIN_PIN P1_28
  41. #define Z_MAX_PIN P1_29
  42. //
  43. // Steppers
  44. //
  45. #define X_STEP_PIN P2_00
  46. #define X_DIR_PIN P0_05
  47. #define X_ENABLE_PIN P0_04
  48. #define Y_STEP_PIN P2_01
  49. #define Y_DIR_PIN P0_11
  50. #define Y_ENABLE_PIN P0_10
  51. #define Z_STEP_PIN P2_02
  52. #define Z_DIR_PIN P0_20
  53. #define Z_ENABLE_PIN P0_19
  54. #define E0_STEP_PIN P2_03
  55. #define E0_DIR_PIN P0_22
  56. #define E0_ENABLE_PIN P0_21
  57. #define E1_STEP_PIN P2_08
  58. #define E1_DIR_PIN P2_13
  59. #define E1_ENABLE_PIN P4_29
  60. //
  61. // Temperature Sensors
  62. // 3.3V max when defined as an analog input
  63. //
  64. #define TEMP_0_PIN P0_23_A0 // (T1)
  65. #define TEMP_BED_PIN P0_24_A1 // (T2)
  66. #define TEMP_1_PIN P0_25_A2 // (T3)
  67. #define TEMP_2_PIN P0_26_A3 // (T4)
  68. //
  69. // Heaters / Fans
  70. //
  71. #define HEATER_BED_PIN P2_05
  72. #define HEATER_0_PIN P2_07
  73. #define HEATER_1_PIN P1_23
  74. #ifndef FAN_PIN
  75. #define FAN_PIN P2_06
  76. #endif
  77. #define FAN1_PIN P2_04
  78. //
  79. // LCD / Controller
  80. //
  81. #if EITHER(VIKI2, miniVIKI)
  82. #define BEEPER_PIN P1_31
  83. #define DOGLCD_A0 P2_11
  84. #define DOGLCD_CS P0_16
  85. #define BTN_EN1 P3_25
  86. #define BTN_EN2 P3_26
  87. #define BTN_ENC P1_30
  88. #define SD_DETECT_PIN P1_18
  89. #define SDSS P1_21
  90. #define STAT_LED_RED_PIN P1_19
  91. #define STAT_LED_BLUE_PIN P1_20
  92. #elif HAS_WIRED_LCD
  93. /**
  94. * SD Support
  95. *
  96. * For the RRD GLCD it CANNOT share the same SPI as the LCD so it must be
  97. * hooked up to the onboard SDCard SPI and use a spare pin for the SDCS.
  98. * Also note that an external SDCard sharing the SPI port with the
  99. * onboard/internal SDCard must be ejected before rebooting as the bootloader
  100. * does not like the external card. NOTE Smoothie will not boot if the external
  101. * sdcard is inserted in the RRD LCD sdcard slot at boot time, it must be
  102. * inserted after it has booted.
  103. */
  104. #define SD_DETECT_PIN P0_27 // EXP2 Pin 7 (SD_CD, SD_DET)
  105. #define SD_MISO_PIN P0_08 // EXP2 Pin 1 (PB3, SD_MISO)
  106. #define SD_SCK_PIN P0_07 // EXP2 Pin 2 (SD_SCK)
  107. #define SD_SS_PIN P0_28 // EXP2 Pin 4 (SD_CSEL, SD_CS)
  108. #define SD_MOSI_PIN P0_09 // EXP2 Pin 6 (PB2, SD_MOSI)
  109. /**
  110. * The Smoothieboard supports the REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER with either
  111. * a custom cable with breakouts to the pins indicated below or the RRD GLCD Adapter board
  112. * found at http://smoothieware.org/rrdglcdadapter
  113. *
  114. * Other links to information about setting up a display panel with Smoothieboard
  115. * http://chibidibidiwah.wdfiles.com/local--files/panel/smoothieboard2sd.jpg
  116. * http://smoothieware.org/panel
  117. */
  118. #if IS_RRD_FG_SC
  119. // EXP1 Pins
  120. #define BEEPER_PIN P1_31 // EXP1 Pin 1
  121. #define BTN_ENC P1_30 // EXP1 Pin 2
  122. #define LCD_PINS_ENABLE P0_18 // EXP1 Pin 3 (MOSI)
  123. #define LCD_PINS_RS P0_16 // EXP1 Pin 4 (CS)
  124. #define LCD_PINS_D4 P0_15 // EXP1 Pin 5 (SCK)
  125. // EXP2 Pins
  126. #define BTN_EN2 P3_26 // EXP2 Pin 3
  127. #define BTN_EN1 P3_25 // EXP2 Pin 5
  128. #elif IS_TFTGLCD_PANEL
  129. #define SD_DETECT_PIN P0_27 // EXP2 Pin 7 (SD_CD, SD_DET)
  130. #if ENABLED(TFTGLCD_PANEL_SPI)
  131. #define TFTGLCD_CS P3_26 // EXP2 Pin 3
  132. #endif
  133. #else
  134. #error "Marlin's Smoothieboard support cannot drive your LCD."
  135. #endif
  136. #endif
  137. /**
  138. * I2C Digipots - MCP4451
  139. * Address 58 (2C << 1)
  140. * Set from 0 - 127 with stop bit.
  141. * (Ex. 3F << 1 | 1)
  142. */
  143. #define DIGIPOTS_I2C_SCL P0_00
  144. #define DIGIPOTS_I2C_SDA_X P0_04
  145. #define DIGIPOTS_I2C_SDA_Y P0_10
  146. #define DIGIPOTS_I2C_SDA_Z P0_19
  147. #define DIGIPOTS_I2C_SDA_E0 P0_21
  148. #define DIGIPOTS_I2C_SDA_E1 P4_29
  149. #ifndef DIGIPOT_I2C_ADDRESS_A
  150. #define DIGIPOT_I2C_ADDRESS_A 0x2C // unshifted slave address (58 <- 2C << 1)
  151. #endif