My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

pins_INTAMSYS40.h 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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. * Intamsys Funmat HT V4.0 Mainboard
  25. * 4988 Drivers Tested
  26. * 2208 version exists and may or may not work
  27. */
  28. #include "env_validate.h"
  29. #define BOARD_INFO_NAME "Intamsys 4.0"
  30. //
  31. // Servos
  32. //
  33. #define SERVO0_PIN 12 // Uses High Temp Present Jumper Pin
  34. //
  35. // Limit Switches
  36. //
  37. #define X_STOP_PIN 22
  38. #define Y_STOP_PIN 26
  39. #define Z_MIN_PIN 29
  40. #define Z_MAX_PIN 69
  41. #ifndef Z_MIN_PROBE_PIN
  42. #define Z_MIN_PROBE_PIN 69
  43. #endif
  44. #define FIL_RUNOUT_PIN 10
  45. //
  46. // Steppers
  47. //
  48. #define X_STEP_PIN 25
  49. #define X_DIR_PIN 23
  50. #define X_ENABLE_PIN 27 // 44
  51. #define Y_STEP_PIN 32 // 33
  52. #define Y_DIR_PIN 33 // 31, 32
  53. #define Y_ENABLE_PIN 31 // 32
  54. #define Z_STEP_PIN 35 // 35
  55. #define Z_DIR_PIN 36
  56. #define Z_ENABLE_PIN 34 // 34
  57. #define E0_STEP_PIN 42
  58. #define E0_DIR_PIN 43
  59. #define E0_ENABLE_PIN 37
  60. #define E1_STEP_PIN 49
  61. #define E1_DIR_PIN 47
  62. #define E1_ENABLE_PIN 48
  63. #define MOTOR_CURRENT_PWM_X_PIN 11
  64. #define MOTOR_CURRENT_PWM_Y_PIN 44
  65. #define MOTOR_CURRENT_PWM_Z_PIN 45
  66. #define MOTOR_CURRENT_PWM_E_PIN 46
  67. // Motor current PWM conversion, PWM value = MotorCurrentSetting * 255 / range
  68. #ifndef MOTOR_CURRENT_PWM_RANGE
  69. #define MOTOR_CURRENT_PWM_RANGE 2000
  70. #endif
  71. #define DEFAULT_PWM_MOTOR_CURRENT { 1300, 1300, 1250 }
  72. //
  73. // Temperature Sensors
  74. //
  75. #define TEMP_0_PIN 8 // Analog Input D62
  76. #define TEMP_BED_PIN 10 // Analog Input D64
  77. #define TEMP_CHAMBER_PIN 9 // Analog Input D63
  78. //
  79. // Heaters / Fans
  80. //
  81. #define HEATER_0_PIN 2 // PWM
  82. #define HEATER_BED_PIN 4 // PWM
  83. #define HEATER_CHAMBER_PIN 3 // PWM
  84. #define FAN_PIN 7 // PWM
  85. //
  86. // Misc. Functions
  87. //
  88. #define SDSS 53
  89. #define SD_DETECT_PIN 39
  90. #if ENABLED(CASE_LIGHT_ENABLE)
  91. #define CASE_LIGHT_PIN 8
  92. #endif
  93. #if ENABLED(PSU_CONTROL)
  94. #define PS_ON_PIN 38 // UPS Module
  95. #endif
  96. //
  97. // LCD Controller
  98. //
  99. #define BEEPER_PIN 18
  100. #if HAS_WIRED_LCD
  101. #define LCD_PINS_RS 20
  102. #define LCD_PINS_ENABLE 30
  103. #define LCD_PINS_D4 14
  104. #define LCD_PINS_D5 21
  105. #define LCD_PINS_D6 5
  106. #define LCD_PINS_D7 6
  107. #define BTN_EN1 40
  108. #define BTN_EN2 41
  109. #define BTN_ENC 19
  110. #endif
  111. ///////////////////// SPARE HEADERS //////////////
  112. /**
  113. * J25
  114. * 1 D54
  115. * 2 D55
  116. * 3 D56
  117. * 4 D57
  118. * 5 D58
  119. * 6 D59
  120. * 7 D60
  121. * 8 D61
  122. Hotend High Temp Connected : D12
  123. */