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_LEAPFROG.h 3.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 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 <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #pragma once
  23. /**
  24. * Leapfrog Driver board pin assignments
  25. */
  26. #define ALLOW_MEGA1280
  27. #include "env_validate.h"
  28. #define BOARD_INFO_NAME "Leapfrog"
  29. //
  30. // Limit Switches
  31. //
  32. #define X_MIN_PIN 47
  33. #define X_MAX_PIN 2
  34. #define Y_MIN_PIN 48
  35. #define Y_MAX_PIN 15
  36. #define Z_MIN_PIN 49
  37. #define Z_MAX_PIN -1
  38. //
  39. // Steppers
  40. //
  41. #define X_STEP_PIN 28
  42. #define X_DIR_PIN 63
  43. #define X_ENABLE_PIN 29
  44. #define Y_STEP_PIN 14 // A6
  45. #define Y_DIR_PIN 15 // A0
  46. #define Y_ENABLE_PIN 39
  47. #define Z_STEP_PIN 31 // A2
  48. #define Z_DIR_PIN 32 // A6
  49. #define Z_ENABLE_PIN 30 // A1
  50. #define E0_STEP_PIN 34 // 34
  51. #define E0_DIR_PIN 35 // 35
  52. #define E0_ENABLE_PIN 33 // 33
  53. #define E1_STEP_PIN 37 // 37
  54. #define E1_DIR_PIN 40 // 40
  55. #define E1_ENABLE_PIN 36 // 36
  56. //
  57. // Temperature Sensors
  58. //
  59. #define TEMP_0_PIN 13 // Analog Input (D27)
  60. #define TEMP_1_PIN 15 // Analog Input (1)
  61. #define TEMP_BED_PIN 14 // Analog Input (1,2 or I2C)
  62. //
  63. // Heaters / Fans
  64. //
  65. #define HEATER_0_PIN 9
  66. #define HEATER_1_PIN 8 // 12
  67. #define HEATER_2_PIN 11 // 13
  68. #define HEATER_BED_PIN 10 // 14/15
  69. #define FAN_PIN 7
  70. //
  71. // Misc. Functions
  72. //
  73. #define SDSS 11
  74. #define LED_PIN 13
  75. #define SOL1_PIN 16
  76. #define SOL2_PIN 17
  77. /* Unused (1) (2) (3) 4 5 6 7 8 9 10 11 12 13 (14) (15) (16) 17 (18) (19) (20) (21) (22) (23) 24 (25) (26) (27) 28 (29) (30) (31) */