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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. /**
  2. * Rambo pin assignments
  3. */
  4. #ifndef __AVR_ATmega2560__
  5. #error Oops! Make sure you have 'Arduino Mega 2560' selected from the 'Tools -> Boards' menu.
  6. #endif
  7. #define LARGE_FLASH true
  8. // Servo support
  9. #ifdef NUM_SERVOS
  10. #define SERVO0_PIN 22 //motor header MX1
  11. #if NUM_SERVOS > 1
  12. #define SERVO1_PIN 23 //Motor header MX2
  13. #if NUM_SERVOS > 2
  14. #define SERVO2_PIN 24 //Motor header MX3
  15. #if NUM_SERVOS > 3
  16. #define SERVO2_PIN 5 //pwm header pin 5
  17. #endif
  18. #endif
  19. #endif
  20. #endif
  21. #undef X_MS1_PIN
  22. #undef X_MS2_PIN
  23. #undef Y_MS1_PIN
  24. #undef Y_MS2_PIN
  25. #undef Z_MS1_PIN
  26. #undef Z_MS2_PIN
  27. #undef E0_MS1_PIN
  28. #undef E0_MS2_PIN
  29. #undef E1_MS1_PIN
  30. #undef E1_MS2_PIN
  31. #define X_STEP_PIN 37
  32. #define X_DIR_PIN 48
  33. #define X_MIN_PIN 12
  34. #define X_MAX_PIN 24
  35. #define X_ENABLE_PIN 29
  36. #define X_MS1_PIN 40
  37. #define X_MS2_PIN 41
  38. #define Y_STEP_PIN 36
  39. #define Y_DIR_PIN 49
  40. #define Y_MIN_PIN 11
  41. #define Y_MAX_PIN 23
  42. #define Y_ENABLE_PIN 28
  43. #define Y_MS1_PIN 69
  44. #define Y_MS2_PIN 39
  45. #define Z_STEP_PIN 35
  46. #define Z_DIR_PIN 47
  47. #define Z_MIN_PIN 10
  48. #define Z_MAX_PIN 30
  49. #define Z_ENABLE_PIN 27
  50. #define Z_MS1_PIN 68
  51. #define Z_MS2_PIN 67
  52. #define HEATER_BED_PIN 3
  53. #define TEMP_BED_PIN 2
  54. #define HEATER_0_PIN 9
  55. #define TEMP_0_PIN 0
  56. #define HEATER_1_PIN 7
  57. #define TEMP_1_PIN 1
  58. #ifdef BARICUDA
  59. #define HEATER_2_PIN 6
  60. #else
  61. #define HEATER_2_PIN -1
  62. #endif
  63. #define TEMP_2_PIN -1
  64. #define E0_STEP_PIN 34
  65. #define E0_DIR_PIN 43
  66. #define E0_ENABLE_PIN 26
  67. #define E0_MS1_PIN 65
  68. #define E0_MS2_PIN 66
  69. #define E1_STEP_PIN 33
  70. #define E1_DIR_PIN 42
  71. #define E1_ENABLE_PIN 25
  72. #define E1_MS1_PIN 63
  73. #define E1_MS2_PIN 64
  74. #undef DIGIPOTSS_PIN
  75. #define DIGIPOTSS_PIN 38
  76. #define DIGIPOT_CHANNELS {4,5,3,0,1} // X Y Z E0 E1 digipot channels to stepper driver mapping
  77. #define SDPOWER -1
  78. #define SDSS 53
  79. #define LED_PIN 13
  80. #define FAN_PIN 8
  81. /**********************************************************
  82. Fan Pins
  83. Fan_0 8
  84. Fan_1 6
  85. Fan_2 2
  86. ***********************************************************/
  87. #define PS_ON_PIN 4
  88. #define KILL_PIN -1 //80 with Smart Controller LCD
  89. #define SUICIDE_PIN -1 //PIN that has to be turned on right after start, to keep power flowing.
  90. #ifdef ULTRA_LCD
  91. #define KILL_PIN 80
  92. #ifdef NEWPANEL
  93. //arduino pin which triggers an piezzo beeper
  94. #define BEEPER 79 // Beeper on AUX-4
  95. #define LCD_PINS_RS 70
  96. #define LCD_PINS_ENABLE 71
  97. #define LCD_PINS_D4 72
  98. #define LCD_PINS_D5 73
  99. #define LCD_PINS_D6 74
  100. #define LCD_PINS_D7 75
  101. //buttons are directly attached using AUX-2
  102. #define BTN_EN1 76
  103. #define BTN_EN2 77
  104. #define BTN_ENC 78 //the click
  105. #define BLEN_C 2
  106. #define BLEN_B 1
  107. #define BLEN_A 0
  108. #define SDCARDDETECT 81 // Ramps does not use this port
  109. #else //!NEWPANEL - old style panel with shift register
  110. //arduino pin witch triggers an piezzo beeper
  111. #define BEEPER 33 No Beeper added
  112. //buttons are attached to a shift register
  113. // Not wired this yet
  114. // #define SHIFT_CLK 38
  115. // #define SHIFT_LD 42
  116. // #define SHIFT_OUT 40
  117. // #define SHIFT_EN 17
  118. #define LCD_PINS_RS 75
  119. #define LCD_PINS_ENABLE 17
  120. #define LCD_PINS_D4 23
  121. #define LCD_PINS_D5 25
  122. #define LCD_PINS_D6 27
  123. #define LCD_PINS_D7 29
  124. //bits in the shift register that carry the buttons for:
  125. // left up center down right red
  126. #define BL_LE 7
  127. #define BL_UP 6
  128. #define BL_MI 5
  129. #define BL_DW 4
  130. #define BL_RI 3
  131. #define BL_ST 2
  132. #define BLEN_B 1
  133. #define BLEN_A 0
  134. #endif // !NEWPANEL
  135. #endif // ULTRA_LCD
  136. #if defined(VIKI2) || defined(miniVIKI)
  137. #define BEEPER 44
  138. // Pins for DOGM SPI LCD Support
  139. #define DOGLCD_A0 70
  140. #define DOGLCD_CS 71
  141. #define LCD_SCREEN_ROT_180
  142. //The encoder and click button
  143. #define BTN_EN1 85
  144. #define BTN_EN2 84
  145. #define BTN_ENC 83 //the click switch
  146. #define SDCARDDETECT -1 // Pin 72 if using easy adapter board
  147. #ifdef TEMP_STAT_LEDS
  148. #define STAT_LED_RED 22
  149. #define STAT_LED_BLUE 32
  150. #endif
  151. #endif // VIKI2/miniVIKI
  152. #ifdef FILAMENT_SENSOR
  153. //Filip added pin for Filament sensor analog input
  154. #define FILWIDTH_PIN 3
  155. #endif