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.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 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 <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #pragma once
  23. /**
  24. * Einstart-S pin assignments
  25. * PCB Silkscreen: 3DPrinterCon_v3.5
  26. */
  27. #define ALLOW_MEGA1280
  28. #include "env_validate.h"
  29. #define BOARD_INFO_NAME "Einstart-S"
  30. //
  31. // Limit Switches
  32. //
  33. #define X_STOP_PIN 44
  34. #define Y_STOP_PIN 43
  35. #define Z_STOP_PIN 42
  36. //
  37. // Steppers
  38. //
  39. #define X_STEP_PIN 76
  40. #define X_DIR_PIN 75
  41. #define X_ENABLE_PIN 73
  42. #define Y_STEP_PIN 31
  43. #define Y_DIR_PIN 32
  44. #define Y_ENABLE_PIN 72
  45. #define Z_STEP_PIN 34
  46. #define Z_DIR_PIN 35
  47. #define Z_ENABLE_PIN 33
  48. #define E0_STEP_PIN 36
  49. #define E0_DIR_PIN 37
  50. #define E0_ENABLE_PIN 30
  51. //
  52. // Temperature Sensors
  53. //
  54. #define TEMP_0_PIN 0 // Analog Input
  55. #define TEMP_BED_PIN 1 // Analog Input
  56. //
  57. // Heaters / Fans
  58. //
  59. #define HEATER_0_PIN 83
  60. #define HEATER_BED_PIN 38
  61. #define FAN_PIN 82
  62. //
  63. // Misc. Functions
  64. //
  65. #define SDSS 53
  66. #define LED_PIN 4
  67. //////////////////////////
  68. // LCDs and Controllers //
  69. //////////////////////////
  70. //
  71. // LCD Display output pins
  72. //
  73. // Requires #define U8GLIB_SH1106_EINSTART in Configuration.h
  74. // u8glib constructor
  75. // U8GLIB_SH1106_128X64 u8g(DOGLCD_SCK, DOGLCD_MOSI, DOGLCD_CS, LCD_PINS_DC, LCD_PINS_RS);
  76. #define LCD_PINS_DC 78
  77. #define LCD_PINS_RS 79
  78. // DOGM SPI LCD Support
  79. #define DOGLCD_CS 3
  80. #define DOGLCD_MOSI 2
  81. #define DOGLCD_SCK 5
  82. #define DOGLCD_A0 2
  83. //
  84. // LCD Display input pins
  85. //
  86. #define BTN_UP 25
  87. #define BTN_DOWN 26
  88. #define BTN_LEFT 27
  89. #define BTN_RIGHT 28
  90. // 'OK' button
  91. #define BTN_ENC 29
  92. // Set Kill to right arrow, same as RIGID_PANEL
  93. #define KILL_PIN 28