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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. #pragma once
  23. /**
  24. * Leapfrog Driver board pin assignments
  25. */
  26. #if !defined(__AVR_ATmega1280__) && !defined(__AVR_ATmega2560__)
  27. #error "Oops! Select 'Mega 1280' or 'Mega 2560' in 'Tools > Board.'"
  28. #endif
  29. #define BOARD_NAME "Leapfrog"
  30. //
  31. // Limit Switches
  32. //
  33. #define X_MIN_PIN 47
  34. #define X_MAX_PIN 2
  35. #define Y_MIN_PIN 48
  36. #define Y_MAX_PIN 15
  37. #define Z_MIN_PIN 49
  38. #define Z_MAX_PIN -1
  39. //
  40. // Steppers
  41. //
  42. #define X_STEP_PIN 28
  43. #define X_DIR_PIN 63
  44. #define X_ENABLE_PIN 29
  45. #define Y_STEP_PIN 14 // A6
  46. #define Y_DIR_PIN 15 // A0
  47. #define Y_ENABLE_PIN 39
  48. #define Z_STEP_PIN 31 // A2
  49. #define Z_DIR_PIN 32 // A6
  50. #define Z_ENABLE_PIN 30 // A1
  51. #define E0_STEP_PIN 34 // 34
  52. #define E0_DIR_PIN 35 // 35
  53. #define E0_ENABLE_PIN 33 // 33
  54. #define E1_STEP_PIN 37 // 37
  55. #define E1_DIR_PIN 40 // 40
  56. #define E1_ENABLE_PIN 36 // 36
  57. //
  58. // Temperature Sensors
  59. //
  60. #define TEMP_0_PIN 13 // Analog Input (D27)
  61. #define TEMP_1_PIN 15 // Analog Input (1)
  62. #define TEMP_BED_PIN 14 // Analog Input (1,2 or I2C)
  63. //
  64. // Heaters / Fans
  65. //
  66. #define HEATER_0_PIN 9
  67. #define HEATER_1_PIN 8 // 12
  68. #define HEATER_2_PIN 11 // 13
  69. #define HEATER_BED_PIN 10 // 14/15
  70. #define FAN_PIN 7
  71. //
  72. // Misc. Functions
  73. //
  74. #define SDSS 11
  75. #define LED_PIN 13
  76. #define SOL1_PIN 16
  77. #define SOL2_PIN 17
  78. /* 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) */