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_SANGUINOLOLU_11.h 5.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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. * Sanguinololu board pin assignments
  24. */
  25. #if !defined(__AVR_ATmega644P__) && !defined(__AVR_ATmega1284P__)
  26. #error "Oops! Make sure you have 'Sanguino' selected from the 'Tools -> Boards' menu."
  27. #endif
  28. #define X_STEP_PIN 15
  29. #define X_DIR_PIN 21
  30. #define X_STOP_PIN 18
  31. #define Y_STEP_PIN 22
  32. #define Y_DIR_PIN 23
  33. #define Y_STOP_PIN 19
  34. #define Z_STEP_PIN 3
  35. #define Z_DIR_PIN 2
  36. #define Z_STOP_PIN 20
  37. #define E0_STEP_PIN 1
  38. #define E0_DIR_PIN 0
  39. #define LED_PIN -1
  40. #define FAN_PIN -1
  41. #if MB(AZTEEG_X1) || MB(STB_11) || MB(MELZI)
  42. #define FAN_PIN 4 // Works for Panelolu2 too
  43. #if MB(MELZI)
  44. #define LED_PIN 27 // On some broken versions of the Sanguino libraries the pin definitions are wrong, so LED_PIN needs to be 28. But you should upgrade your Sanguino libraries! See #368.
  45. #elif MB(STB_11)
  46. #define LCD_PIN_BL 17 // LCD backlight LED
  47. #endif
  48. #endif
  49. #if ENABLED(Z_PROBE_SLED)
  50. #define SLED_PIN -1
  51. #endif
  52. #define PS_ON_PIN -1
  53. #define KILL_PIN -1
  54. #define HEATER_0_PIN 13 // (extruder)
  55. #define HEATER_1_PIN -1
  56. #define HEATER_2_PIN -1
  57. #if ENABLED(SANGUINOLOLU_V_1_2)
  58. #define HEATER_BED_PIN 12 // (bed)
  59. #define X_ENABLE_PIN 14
  60. #define Y_ENABLE_PIN 14
  61. #define Z_ENABLE_PIN 26
  62. #define E0_ENABLE_PIN 14
  63. #if ENABLED(LCD_I2C_PANELOLU2)
  64. #define FAN_PIN 4 // Uses Transistor1 (PWM) on Panelolu2's Sanguino Adapter Board to drive the fan
  65. #endif
  66. #else
  67. #define HEATER_BED_PIN 14 // (bed)
  68. #define X_ENABLE_PIN -1
  69. #define Y_ENABLE_PIN -1
  70. #define Z_ENABLE_PIN -1
  71. #define E0_ENABLE_PIN -1
  72. #endif
  73. #define TEMP_0_PIN 7 // MUST USE ANALOG INPUT NUMBERING NOT DIGITAL OUTPUT NUMBERING!!!!!!!!! (pin 33 extruder)
  74. #define TEMP_1_PIN -1
  75. #define TEMP_2_PIN -1
  76. #define TEMP_BED_PIN 6 // MUST USE ANALOG INPUT NUMBERING NOT DIGITAL OUTPUT NUMBERING!!!!!!!!! (pin 34 bed)
  77. #define SDPOWER -1
  78. #define SDSS 31
  79. /**
  80. * On some broken versions of the Sanguino libraries the pin definitions are wrong,
  81. * which then needs SDSS as pin 24. But you should upgrade your Sanguino libraries! See #368.
  82. */
  83. //#define SDSS 24
  84. #if ENABLED(ULTRA_LCD) && ENABLED(NEWPANEL)
  85. // No buzzer installed
  86. #define BEEPER_PIN -1
  87. // LCD Pins
  88. #if ENABLED(DOGLCD)
  89. #if ENABLED(U8GLIB_ST7920) //SPI GLCD 12864 ST7920 ( like [www.digole.com] ) For Melzi V2.0
  90. #if MB(MELZI) // Melzi board
  91. #define LCD_PINS_RS 30 //CS chip select /SS chip slave select
  92. #define LCD_PINS_ENABLE 29 //SID (MOSI)
  93. #define LCD_PINS_D4 17 //SCK (CLK) clock
  94. #define BEEPER_PIN 27 // Pin 27 is taken by LED_PIN, but Melzi LED does nothing with Marlin so this can be used for BEEPER_PIN. You can use this pin with M42 instead of BEEPER_PIN.
  95. #else // Sanguinololu 1.3
  96. #define LCD_PINS_RS 4
  97. #define LCD_PINS_ENABLE 17
  98. #define LCD_PINS_D4 30
  99. #define LCD_PINS_D5 29
  100. #define LCD_PINS_D6 28
  101. #define LCD_PINS_D7 27
  102. #endif
  103. #else // DOGM SPI LCD Support
  104. #define DOGLCD_A0 30
  105. #define DOGLCD_CS 29
  106. #define LCD_CONTRAST 1
  107. #endif
  108. // Uncomment screen orientation
  109. #define LCD_SCREEN_ROT_0
  110. //#define LCD_SCREEN_ROT_90
  111. //#define LCD_SCREEN_ROT_180
  112. //#define LCD_SCREEN_ROT_270
  113. #else // !DOGLCD - Standard Hitachi LCD controller
  114. #define LCD_PINS_RS 4
  115. #define LCD_PINS_ENABLE 17
  116. #define LCD_PINS_D4 30
  117. #define LCD_PINS_D5 29
  118. #define LCD_PINS_D6 28
  119. #define LCD_PINS_D7 27
  120. #endif // !DOGLCD
  121. //The encoder and click button
  122. #define BTN_EN1 11
  123. #define BTN_EN2 10
  124. #if ENABLED(LCD_I2C_PANELOLU2)
  125. #if MB(MELZI)
  126. #define BTN_ENC 29
  127. #define LCD_SDSS 30 // Panelolu2 SD card reader rather than the Melzi
  128. #else
  129. #define BTN_ENC 30
  130. #endif
  131. #else
  132. #define BTN_ENC 16
  133. #define LCD_SDSS 28 // Smart Controller SD card reader rather than the Melzi
  134. #endif //Panelolu2
  135. #define SD_DETECT_PIN -1
  136. #elif ENABLED(MAKRPANEL)
  137. #define BEEPER_PIN 29
  138. // Pins for DOGM SPI LCD Support
  139. #define DOGLCD_A0 30
  140. #define DOGLCD_CS 17
  141. #define LCD_PIN_BL 28 // backlight LED on PA3
  142. // GLCD features
  143. #define LCD_CONTRAST 1
  144. // Uncomment screen orientation
  145. #define LCD_SCREEN_ROT_0
  146. //#define LCD_SCREEN_ROT_90
  147. //#define LCD_SCREEN_ROT_180
  148. //#define LCD_SCREEN_ROT_270
  149. //The encoder and click button
  150. #define BTN_EN1 11
  151. #define BTN_EN2 10
  152. #define BTN_ENC 16
  153. #define SD_DETECT_PIN -1
  154. #endif // MAKRPANEL
  155. // #if FAN_PIN == 12 || FAN_PIN ==13
  156. //#define FAN_SOFT_PWM
  157. // #endif