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_EINSTART-S.h 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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. * Einstart S pin assignments
  24. * PCB Silkscreen: 3DPrinterCon_v3.5
  25. */
  26. #if ENABLED(TARGET_LPC1768)
  27. #error "Oops! Set MOTHERBOARD to an LPC1768-based board when building for LPC1768."
  28. #elif defined(__STM32F1__)
  29. #error "Oops! Set MOTHERBOARD to an STM32F1-based board when building for STM32F1."
  30. #endif
  31. #if DISABLED(IS_RAMPS_SMART) && DISABLED(IS_RAMPS_DUO) && DISABLED(IS_RAMPS4DUE) && DISABLED(TARGET_LPC1768)
  32. #if !defined(__AVR_ATmega1280__) && !defined(__AVR_ATmega2560__)
  33. #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
  34. #endif
  35. #endif
  36. #ifndef BOARD_NAME
  37. #define BOARD_NAME "EINSTART_S"
  38. #endif
  39. //
  40. // Limit Switches
  41. //
  42. #define X_STOP_PIN 44 // 2560 PIN 40
  43. #define Y_STOP_PIN 43 // 2560 PIN 41
  44. #define Z_STOP_PIN 42 // 2560 PIN 42
  45. //
  46. // Steppers
  47. //
  48. #define X_STEP_PIN 76 // 2560 PIN 68
  49. #define X_DIR_PIN 75 // 2560 PIN 67
  50. #define X_ENABLE_PIN 73 // 2560 PIN 66
  51. #define Y_STEP_PIN 31 // 2560 PIN 59
  52. #define Y_DIR_PIN 32 // 2560 PIN 58
  53. #define Y_ENABLE_PIN 72 // 2560 PIN 65
  54. #define Z_STEP_PIN 34 // 2560 PIN 56
  55. #define Z_DIR_PIN 35 // 2560 PIN 55
  56. #define Z_ENABLE_PIN 33 // 2560 PIN 57
  57. #define E0_STEP_PIN 36 // 2560 PIN 54
  58. #define E0_DIR_PIN 37 // 2560 PIN 53
  59. #define E0_ENABLE_PIN 30 // 2560 PIN 60
  60. //
  61. // Temperature Sensors
  62. //
  63. #define TEMP_0_PIN 0 // Analog Input
  64. #define TEMP_BED_PIN 1 // Analog Input
  65. //
  66. // Heaters / Fans
  67. //
  68. #define HEATER_0_PIN 83 // 2560 PIN 49
  69. #define HEATER_BED_PIN 38 // 2560 PIN 50
  70. #define FAN_PIN 82 // 2560 PIN 48
  71. //
  72. // Misc. Functions
  73. //
  74. #define SDSS 53 // 2560 PIN 19
  75. #define LED_PIN 4 // 2560 PIN 1
  76. //////////////////////////
  77. // LCDs and Controllers //
  78. //////////////////////////
  79. //
  80. // LCD Display output pins
  81. //
  82. // Requires #define U8GLIB_SH1106_EINSTART in Configuration.h
  83. // u8glib constructor
  84. // U8GLIB_SH1106_128X64 u8g(DOGLCD_SCK, DOGLCD_MOSI, DOGLCD_CS, LCD_PINS_DC, LCD_PINS_RS);
  85. #define LCD_PINS_DC 78 // 2560 PIN 4
  86. #define LCD_PINS_RS 79 // 2560 PIN 8
  87. // DOGM SPI LCD Support
  88. #define DOGLCD_CS 3 // 2560 PIN 7
  89. #define DOGLCD_MOSI 2 // 2560 PIN 6
  90. #define DOGLCD_SCK 5 // 2560 PIN 5
  91. #define DOGLCD_A0 2 // 2560 PIN 6
  92. //
  93. // LCD Display input pins
  94. //
  95. #define BTN_UP 25 // 2560 PIN 75
  96. #define BTN_DWN 26 // 2560 PIN 74
  97. #define BTN_LFT 27 // 2560 PIN 73
  98. #define BTN_RT 28 // 2560 PIN 72
  99. // 'OK' button
  100. #define BTN_ENC 29 // 2560 PIN 71
  101. // Set Kill to right arrow, same as RIGID_PANEL
  102. #define KILL_PIN 28 // 2560 PIN 72