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_3DRAG.h 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. * 3DRAG (and K8200 / K8400) Arduino Mega with RAMPS v1.4 pin assignments
  24. */
  25. #ifndef BOARD_NAME
  26. #define BOARD_NAME "3Drag"
  27. #endif
  28. #ifndef DEFAULT_MACHINE_NAME
  29. #define DEFAULT_MACHINE_NAME "3Drag"
  30. #endif
  31. #ifndef DEFAULT_SOURCE_CODE_URL
  32. #define DEFAULT_SOURCE_CODE_URL "http://3dprint.elettronicain.it/"
  33. #endif
  34. #define RAMPS_D8_PIN 9
  35. #define RAMPS_D9_PIN 8
  36. #define MOSFET_D_PIN 12
  37. #include "pins_RAMPS.h"
  38. //
  39. // Limit Switches
  40. //
  41. #undef Z_MAX_PIN
  42. #define Z_MAX_PIN -1
  43. //
  44. // Steppers
  45. //
  46. #undef Z_ENABLE_PIN
  47. #define Z_ENABLE_PIN 63
  48. //
  49. // SD Card
  50. //
  51. #undef SDSS
  52. #define SDSS 25//53
  53. //
  54. // Heaters / Fans
  55. //
  56. #define HEATER_2_PIN 6
  57. //
  58. // LCD / Controller
  59. //
  60. #if ENABLED(ULTRA_LCD) && ENABLED(NEWPANEL)
  61. #undef BEEPER_PIN
  62. #define BEEPER_PIN -1
  63. #undef LCD_PINS_RS
  64. #undef LCD_PINS_ENABLE
  65. #undef LCD_PINS_D4
  66. #undef LCD_PINS_D5
  67. #undef LCD_PINS_D6
  68. #undef LCD_PINS_D7
  69. #define LCD_PINS_RS 27
  70. #define LCD_PINS_ENABLE 29
  71. #define LCD_PINS_D4 37
  72. #define LCD_PINS_D5 35
  73. #define LCD_PINS_D6 33
  74. #define LCD_PINS_D7 31
  75. // Buttons
  76. #undef BTN_EN1
  77. #undef BTN_EN2
  78. #undef BTN_ENC
  79. #define BTN_EN1 16
  80. #define BTN_EN2 17
  81. #define BTN_ENC 23
  82. #else
  83. #define BEEPER_PIN 33
  84. #endif // ULTRA_LCD && NEWPANEL