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_K8400.h 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2019 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. * Velleman K8400 (Vertex)
  24. * 3DRAG clone
  25. *
  26. * K8400 has some minor differences over a normal 3Drag:
  27. * - No X/Y max endstops
  28. * - Second extruder step pin has moved
  29. * - No power supply control
  30. * - Second heater has moved pin
  31. */
  32. #define DEFAULT_MACHINE_NAME "Vertex"
  33. #define BOARD_NAME "K8400"
  34. #include "pins_3DRAG.h"
  35. //
  36. // Limit Switches
  37. //
  38. #define X_STOP_PIN 3
  39. #define Y_STOP_PIN 14
  40. #undef X_MIN_PIN
  41. #undef X_MAX_PIN
  42. #undef Y_MIN_PIN
  43. #undef Y_MAX_PIN
  44. //
  45. // Steppers
  46. //
  47. #undef E1_STEP_PIN
  48. #define E1_STEP_PIN 32
  49. //
  50. // Heaters / Fans
  51. //
  52. #undef HEATER_1_PIN
  53. #define HEATER_1_PIN 11
  54. //
  55. // Misc. Functions
  56. //
  57. #undef PS_ON_PIN
  58. #undef KILL_PIN
  59. #undef SD_DETECT_PIN
  60. #if Z_STEP_PIN == 26
  61. #undef Z_STEP_PIN
  62. #define Z_STEP_PIN 32
  63. #endif