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_MEGATRONICS_3.h 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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. * MegaTronics v3.0 pin assignments
  24. */
  25. #ifndef __AVR_ATmega2560__
  26. #error "Oops! Make sure you have 'Arduino Mega' selected from the 'Tools -> Boards' menu."
  27. #endif
  28. #define BOARD_NAME "Megatronics v3.0"
  29. #define LARGE_FLASH true
  30. #if ENABLED(Z_PROBE_SLED)
  31. #define SLED_PIN -1
  32. #endif
  33. // Servo support
  34. #define SERVO0_PIN 46 //AUX3-6
  35. #define SERVO1_PIN 47 //AUX3-5
  36. #define SERVO2_PIN 48 //AUX3-4
  37. #define SERVO3_PIN 49 //AUX3-3
  38. #define X_STEP_PIN 58
  39. #define X_DIR_PIN 57
  40. #define X_ENABLE_PIN 59
  41. #define X_MIN_PIN 37
  42. #define X_MAX_PIN 40 // put to -1 to disable
  43. #define Y_STEP_PIN 5
  44. #define Y_DIR_PIN 17
  45. #define Y_ENABLE_PIN 4
  46. #define Y_MIN_PIN 41
  47. #define Y_MAX_PIN 38 // put to -1 to disable
  48. #define Z_STEP_PIN 16
  49. #define Z_DIR_PIN 11
  50. #define Z_ENABLE_PIN 3
  51. #define Z_MIN_PIN 18
  52. #define Z_MAX_PIN 19 // put to -1 to disable
  53. #define E0_STEP_PIN 28
  54. #define E0_DIR_PIN 27
  55. #define E0_ENABLE_PIN 29
  56. #define E1_STEP_PIN 25
  57. #define E1_DIR_PIN 24
  58. #define E1_ENABLE_PIN 26
  59. #define E2_STEP_PIN 22
  60. #define E2_DIR_PIN 60
  61. #define E2_ENABLE_PIN 23
  62. #define SDSS 53
  63. #define LED_PIN 13
  64. #define PS_ON_PIN 12
  65. #define HEATER_0_PIN 2
  66. #define HEATER_1_PIN 9
  67. #define HEATER_2_PIN 8
  68. #define HEATER_BED_PIN 10
  69. #define FAN_PIN 6
  70. #define FAN2_PIN 7
  71. #if TEMP_SENSOR_0 == -1
  72. #define TEMP_0_PIN 11 // ANALOG NUMBERING
  73. #else
  74. #define TEMP_0_PIN 15 // ANALOG NUMBERING
  75. #endif
  76. #if TEMP_SENSOR_1 == -1
  77. #define TEMP_1_PIN 10 // ANALOG NUMBERING
  78. #else
  79. #define TEMP_1_PIN 13 // ANALOG NUMBERING
  80. #endif
  81. #if TEMP_SENSOR_2 == -1
  82. #define TEMP_2_PIN 9 // ANALOG NUMBERING
  83. #else
  84. #define TEMP_2_PIN 12 // ANALOG NUMBERING
  85. #endif
  86. #if TEMP_SENSOR_BED == -1
  87. #define TEMP_BED_PIN 8 // ANALOG NUMBERING
  88. #else
  89. #define TEMP_BED_PIN 14 // ANALOG NUMBERING
  90. #endif
  91. #define BEEPER_PIN 61
  92. #define LCD_PINS_RS 32
  93. #define LCD_PINS_ENABLE 31
  94. #define LCD_PINS_D4 14
  95. #define LCD_PINS_D5 30
  96. #define LCD_PINS_D6 39
  97. #define LCD_PINS_D7 15
  98. #define SHIFT_CLK 43
  99. #define SHIFT_LD 35
  100. #define SHIFT_OUT 34
  101. #define SHIFT_EN 44
  102. // Buttons are directly attached using keypad
  103. #define BTN_EN1 44
  104. #define BTN_EN2 45
  105. #define BTN_ENC 33 // the click
  106. #define BLEN_C 2
  107. #define BLEN_B 1
  108. #define BLEN_A 0