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_RAMBO.h 4.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  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. * IMPORTANT NOTE:
  24. * Rambo users should be sure to compile Marlin using either the RAMBo
  25. * board type if using the Arduino IDE - available via the link below - or
  26. * the 'rambo' environment if using platformio, by specifying '-e rambo' on
  27. * the command line or by changing the value of the 'env_default' variable to
  28. * 'rambo' in the supplied platformio.ini.
  29. *
  30. * If you don't compile using the proper board type, the RAMBo's extended
  31. * pins will likely be unavailable and accessories/addons may not work.
  32. *
  33. * Instructions for installing the Arduino RAMBo board type for the
  34. * Arduino IDE are available at:
  35. * http://reprap.org/wiki/Rambo_firmware
  36. */
  37. /**
  38. * Rambo pin assignments
  39. */
  40. #ifndef __AVR_ATmega2560__
  41. #error "Oops! Make sure you have 'Arduino Mega 2560' selected from the 'Tools -> Boards' menu."
  42. #endif
  43. #define BOARD_NAME "Rambo"
  44. #define LARGE_FLASH true
  45. // Servo support
  46. #define SERVO0_PIN 22 // Motor header MX1
  47. #define SERVO1_PIN 23 // Motor header MX2
  48. #define SERVO2_PIN 24 // Motor header MX3
  49. #define SERVO3_PIN 5 // PWM header pin 5
  50. #if ENABLED(Z_PROBE_SLED)
  51. #define SLED_PIN -1
  52. #endif
  53. #define X_MIN_PIN 12
  54. #define X_MAX_PIN 24
  55. #define Y_MIN_PIN 11
  56. #define Y_MAX_PIN 23
  57. #define Z_MIN_PIN 10
  58. #define Z_MAX_PIN 30
  59. #ifndef Z_MIN_PROBE_PIN
  60. #define Z_MIN_PROBE_PIN 10
  61. #endif
  62. #define X_STEP_PIN 37
  63. #define X_DIR_PIN 48
  64. #define X_ENABLE_PIN 29
  65. #define X_MS1_PIN 40
  66. #define X_MS2_PIN 41
  67. #define Y_STEP_PIN 36
  68. #define Y_DIR_PIN 49
  69. #define Y_ENABLE_PIN 28
  70. #define Y_MS1_PIN 69
  71. #define Y_MS2_PIN 39
  72. #define Z_STEP_PIN 35
  73. #define Z_DIR_PIN 47
  74. #define Z_ENABLE_PIN 27
  75. #define Z_MS1_PIN 68
  76. #define Z_MS2_PIN 67
  77. #define HEATER_BED_PIN 3
  78. #define TEMP_BED_PIN 2
  79. #define HEATER_0_PIN 9
  80. #define TEMP_0_PIN 0
  81. #define HEATER_1_PIN 7
  82. #define TEMP_1_PIN 1
  83. #if ENABLED(BARICUDA)
  84. #define HEATER_2_PIN 6
  85. #endif
  86. #define E0_STEP_PIN 34
  87. #define E0_DIR_PIN 43
  88. #define E0_ENABLE_PIN 26
  89. #define E0_MS1_PIN 65
  90. #define E0_MS2_PIN 66
  91. #define E1_STEP_PIN 33
  92. #define E1_DIR_PIN 42
  93. #define E1_ENABLE_PIN 25
  94. #define E1_MS1_PIN 63
  95. #define E1_MS2_PIN 64
  96. #define DIGIPOTSS_PIN 38
  97. #define DIGIPOT_CHANNELS {4,5,3,0,1} // X Y Z E0 E1 digipot channels to stepper driver mapping
  98. #define SDSS 53
  99. #define LED_PIN 13
  100. #define FAN_PIN 8
  101. #define FILWIDTH_PIN 3 // ANALOG NUMBERING
  102. /**********************************************************
  103. Fan Pins
  104. Fan_0 8
  105. Fan_1 6
  106. Fan_2 2
  107. ***********************************************************/
  108. #define PS_ON_PIN 4
  109. #if ENABLED(ULTRA_LCD)
  110. #define KILL_PIN 80
  111. #if ENABLED(NEWPANEL)
  112. #define LCD_PINS_RS 70
  113. #define LCD_PINS_ENABLE 71
  114. #define LCD_PINS_D4 72
  115. #define LCD_PINS_D5 73
  116. #define LCD_PINS_D6 74
  117. #define LCD_PINS_D7 75
  118. #if ENABLED(VIKI2) || ENABLED(miniVIKI)
  119. #define BEEPER_PIN 44
  120. //NB: Panucatt's Viki 2.0 wiring diagram (v1.2) indicates that the
  121. // beeper/buzzer is connected to pin 33; however, the pin used in the
  122. // diagram is actually pin 44, so this is correct.
  123. #define DOGLCD_A0 70
  124. #define DOGLCD_CS 71
  125. #define LCD_SCREEN_ROT_180
  126. #define BTN_EN1 85
  127. #define BTN_EN2 84
  128. #define BTN_ENC 83
  129. #define SD_DETECT_PIN -1 // Pin 72 if using easy adapter board
  130. #if ENABLED(TEMP_STAT_LEDS)
  131. #define STAT_LED_RED 22
  132. #define STAT_LED_BLUE 32
  133. #endif
  134. #else
  135. #define BEEPER_PIN 79 // AUX-4
  136. // AUX-2
  137. #define BTN_EN1 76
  138. #define BTN_EN2 77
  139. #define BTN_ENC 78
  140. #define SD_DETECT_PIN 81
  141. #endif // VIKI2/miniVIKI
  142. #else //!NEWPANEL - old style panel with shift register
  143. // No Beeper added
  144. #define BEEPER_PIN 33
  145. //buttons are attached to a shift register
  146. // Not wired yet
  147. //#define SHIFT_CLK 38
  148. //#define SHIFT_LD 42
  149. //#define SHIFT_OUT 40
  150. //#define SHIFT_EN 17
  151. #define LCD_PINS_RS 75
  152. #define LCD_PINS_ENABLE 17
  153. #define LCD_PINS_D4 23
  154. #define LCD_PINS_D5 25
  155. #define LCD_PINS_D6 27
  156. #define LCD_PINS_D7 29
  157. #endif // !NEWPANEL
  158. #endif // ULTRA_LCD