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.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. * 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 BOARD_NAME "K8400"
  33. #define DEFAULT_MACHINE_NAME "Vertex"
  34. #define DEFAULT_SOURCE_CODE_URL "https://github.com/birkett/Vertex-K8400-Firmware"
  35. #include "pins_3DRAG.h"
  36. //
  37. // Limit Switches
  38. //
  39. #define X_STOP_PIN 3
  40. #define Y_STOP_PIN 14
  41. #undef X_MIN_PIN
  42. #undef X_MAX_PIN
  43. #undef Y_MIN_PIN
  44. #undef Y_MAX_PIN
  45. //
  46. // Steppers
  47. //
  48. #undef E1_STEP_PIN
  49. #define E1_STEP_PIN 32
  50. //
  51. // Heaters / Fans
  52. //
  53. #undef HEATER_1_PIN
  54. #define HEATER_1_PIN 11
  55. //
  56. // Misc. Functions
  57. //
  58. #undef PS_ON_PIN
  59. #undef KILL_PIN
  60. #undef SD_DETECT_PIN
  61. #if Z_STEP_PIN == 26
  62. #undef Z_STEP_PIN
  63. #define Z_STEP_PIN 32
  64. #endif