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_SELENA_COMPACT.h 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. * Copyright (C) 2017 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  5. *
  6. * Based on Sprinter and grbl.
  7. * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
  8. *
  9. * This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation, either version 3 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. *
  22. */
  23. /**
  24. * Selena Compact pin assignments
  25. */
  26. #ifndef TARGET_LPC1768
  27. #error "Oops! Make sure you have LPC1768 selected."
  28. #endif
  29. #ifndef BOARD_NAME
  30. #define BOARD_NAME "Selena Compact"
  31. #define DEFAULT_WEBSITE_URL "https://github.com/Ales2-k/Selena"
  32. #endif
  33. //
  34. // Limit Switches
  35. //
  36. #define X_MIN_PIN P1_28
  37. #define X_MAX_PIN P1_25
  38. #define Y_MIN_PIN P2_11
  39. #define Y_MAX_PIN -1
  40. #define Z_MIN_PIN P1_27
  41. #define Z_MAX_PIN -1
  42. #define Z_PROBE P1_22
  43. //
  44. // Steppers
  45. //
  46. #define X_STEP_PIN P2_00
  47. #define X_DIR_PIN P0_05
  48. #define X_ENABLE_PIN P0_04
  49. #define Y_STEP_PIN P2_01
  50. #define Y_DIR_PIN P0_11
  51. #define Y_ENABLE_PIN P0_10
  52. #define Z_STEP_PIN P2_02
  53. #define Z_DIR_PIN P0_20
  54. #define Z_ENABLE_PIN P0_19
  55. #define E0_STEP_PIN P2_03
  56. #define E0_DIR_PIN P0_22
  57. #define E0_ENABLE_PIN P0_21
  58. #define E1_STEP_PIN P2_08
  59. #define E1_DIR_PIN P2_13
  60. #define E1_ENABLE_PIN P4_29
  61. //
  62. // Temperature Sensors
  63. // 3.3V max when defined as an analog input
  64. //
  65. #define TEMP_BED_PIN 0 // A0 (TH1)
  66. #define TEMP_0_PIN 1 // A1 (TH2)
  67. #define TEMP_1_PIN 2 // A2 (TH3)
  68. //
  69. // Heaters / Fans
  70. //
  71. #define HEATER_BED_PIN P2_05
  72. #define HEATER_BED2_PIN P2_04
  73. #define HEATER_0_PIN P2_07
  74. #define HEATER_1_PIN P2_06
  75. #define FAN_PIN P1_24
  76. #define FAN1_PIN P1_26
  77. //
  78. // Display
  79. //
  80. #if ENABLED(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER)
  81. #define LCD_PINS_RS P0_16
  82. #define LCD_PINS_ENABLE P0_18
  83. #define LCD_PINS_D4 P0_15
  84. #define LCD_PINS_D5 P1_00
  85. #define LCD_PINS_D6 P1_01
  86. #define LCD_PINS_D7 P1_04
  87. #define BEEPER_PIN P1_31
  88. #define BTN_EN1 P3_25
  89. #define BTN_EN2 P3_26
  90. #define BTN_ENC P1_30
  91. #define SD_DETECT_PIN -1
  92. #endif // REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER
  93. //
  94. // Servo
  95. //
  96. #define SERVO0_PIN P1_23