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_ULTIMAKER_OLD.h 2.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. * Ultimaker pin assignments (Old electronics)
  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 DEFAULT_MACHINE_NAME "Ultimaker"
  29. #define DEFAULT_SOURCE_CODE_URL "https://github.com/Ultimaker/Marlin"
  30. #define BOARD_NAME "Ultimaker <1.5.4"
  31. #define LARGE_FLASH true
  32. //
  33. // Limit Switches
  34. //
  35. #define X_MIN_PIN 15
  36. #define X_MAX_PIN 14
  37. #define Y_MIN_PIN 17
  38. #define Y_MAX_PIN 16
  39. #define Z_MIN_PIN 19
  40. #define Z_MAX_PIN 18
  41. //
  42. // Z Probe (when not Z_MIN_PIN)
  43. //
  44. #ifndef Z_MIN_PROBE_PIN
  45. #define Z_MIN_PROBE_PIN 18
  46. #endif
  47. //
  48. // Steppers
  49. //
  50. #define X_STEP_PIN 25
  51. #define X_DIR_PIN 23
  52. #define X_ENABLE_PIN 27
  53. #define Y_STEP_PIN 31
  54. #define Y_DIR_PIN 33
  55. #define Y_ENABLE_PIN 29
  56. #define Z_STEP_PIN 37
  57. #define Z_DIR_PIN 39
  58. #define Z_ENABLE_PIN 35
  59. #define E0_STEP_PIN 43
  60. #define E0_DIR_PIN 45
  61. #define E0_ENABLE_PIN 41
  62. #define E1_STEP_PIN -1
  63. #define E1_DIR_PIN -1
  64. #define E1_ENABLE_PIN -1
  65. //
  66. // Temperature Sensors
  67. //
  68. #define TEMP_0_PIN 8 // Analog Input
  69. #define TEMP_1_PIN 1 // Analog Input
  70. //
  71. // Heaters / Fans
  72. //
  73. #define HEATER_0_PIN 2
  74. #define HEATER_1_PIN 1
  75. //
  76. // LCD / Controller
  77. //
  78. #define LCD_PINS_RS 24
  79. #define LCD_PINS_ENABLE 22
  80. #define LCD_PINS_D4 36
  81. #define LCD_PINS_D5 34
  82. #define LCD_PINS_D6 32
  83. #define LCD_PINS_D7 30