My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

pins_LEAPFROG.h 2.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. * Leapfrog Driver board pin assignments
  24. */
  25. #if !defined(__AVR_ATmega1280__) && !defined(__AVR_ATmega2560__)
  26. #error "Oops! Make sure you have 'Arduino Mega' selected from the 'Tools -> Boards' menu."
  27. #endif
  28. #define X_STEP_PIN 28
  29. #define X_DIR_PIN 63
  30. #define X_ENABLE_PIN 29
  31. #define X_MIN_PIN 47
  32. #define X_MAX_PIN 2 //Max endstops default to disabled "-1", set to commented value to enable.
  33. #define Y_STEP_PIN 14 // A6
  34. #define Y_DIR_PIN 15 // A0
  35. #define Y_ENABLE_PIN 39
  36. #define Y_MIN_PIN 48
  37. #define Y_MAX_PIN 15
  38. #define Z_STEP_PIN 31 // A2
  39. #define Z_DIR_PIN 32 // A6
  40. #define Z_ENABLE_PIN 30 // A1
  41. #define Z_MIN_PIN 49
  42. #define Z_MAX_PIN -1
  43. #define E0_STEP_PIN 34 //34
  44. #define E0_DIR_PIN 35 //35
  45. #define E0_ENABLE_PIN 33 //33
  46. #define E1_STEP_PIN 37 //37
  47. #define E1_DIR_PIN 40 //40
  48. #define E1_ENABLE_PIN 36 //36
  49. #define SDPOWER -1
  50. #define SDSS 11
  51. #define SD_DETECT_PIN -1 // 10 optional also used as mode pin
  52. #define LED_PIN 13
  53. #define FAN_PIN 7
  54. #define PS_ON_PIN -1
  55. #define KILL_PIN -1
  56. #define SOL1_PIN 16
  57. #define SOL2_PIN 17
  58. #define HEATER_0_PIN 9
  59. #define HEATER_1_PIN 8 // 12
  60. #define HEATER_2_PIN 11 //-1 // 13
  61. #define TEMP_0_PIN 13 //D27 // MUST USE ANALOG INPUT NUMBERING NOT DIGITAL OUTPUT NUMBERING!!!!!!!!!
  62. #define TEMP_1_PIN 15 // 1
  63. #define TEMP_2_PIN -1 // 2
  64. #define HEATER_BED_PIN 10 // 14/15
  65. #define TEMP_BED_PIN 14 // 1,2 or I2C
  66. /* 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) */