My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

pins_3DRAG.h 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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) Arduino Mega with RAMPS v1.4 pin assignments
  24. */
  25. #include "pins_RAMPS_14.h"
  26. #undef Z_ENABLE_PIN
  27. #define Z_ENABLE_PIN 63
  28. #undef X_MAX_PIN
  29. #undef Y_MAX_PIN
  30. #undef Z_MAX_PIN
  31. #define X_MAX_PIN 2
  32. #define Y_MAX_PIN 15
  33. #define Z_MAX_PIN -1
  34. #undef SDSS
  35. #define SDSS 25//53
  36. #undef FAN_PIN
  37. #define FAN_PIN 8
  38. #undef HEATER_1_PIN
  39. #undef HEATER_2_PIN
  40. #undef HEATER_BED_PIN
  41. #define HEATER_0_PIN 10
  42. #define HEATER_1_PIN 12
  43. #define HEATER_2_PIN 6
  44. #define HEATER_BED_PIN 9 // BED
  45. #if ENABLED(ULTRA_LCD) && ENABLED(NEWPANEL)
  46. #undef BEEPER_PIN
  47. #define BEEPER_PIN -1
  48. #undef LCD_PINS_RS
  49. #undef LCD_PINS_ENABLE
  50. #undef LCD_PINS_D4
  51. #undef LCD_PINS_D5
  52. #undef LCD_PINS_D6
  53. #undef LCD_PINS_D7
  54. #define LCD_PINS_RS 27
  55. #define LCD_PINS_ENABLE 29
  56. #define LCD_PINS_D4 37
  57. #define LCD_PINS_D5 35
  58. #define LCD_PINS_D6 33
  59. #define LCD_PINS_D7 31
  60. // Buttons
  61. #undef BTN_EN1
  62. #undef BTN_EN2
  63. #undef BTN_ENC
  64. #define BTN_EN1 16
  65. #define BTN_EN2 17
  66. #define BTN_ENC 23 //the click
  67. #else
  68. #define BEEPER_PIN 33
  69. #endif // ULTRA_LCD && NEWPANEL