My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

pins_CNCONTROLS_12.h 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /**
  2. * CartesioV12 pin assignments
  3. */
  4. #if !defined(__AVR_ATmega1280__) && !defined(__AVR_ATmega2560__)
  5. #error Oops! Make sure you have 'Arduino Mega' selected from the 'Tools -> Boards' menu.
  6. #endif
  7. #define BOARD_NAME "CN Controls V12"
  8. //#define LARGE_FLASH true
  9. //
  10. // Limit Switches
  11. //
  12. #define X_STOP_PIN 19
  13. #define Y_STOP_PIN 22
  14. #define Z_STOP_PIN 23
  15. //
  16. // Steppers
  17. //
  18. #define X_STEP_PIN 25
  19. #define X_DIR_PIN 27
  20. #define X_ENABLE_PIN 26
  21. #define Y_STEP_PIN 28
  22. #define Y_DIR_PIN 30
  23. #define Y_ENABLE_PIN 29
  24. #define Z_STEP_PIN 31
  25. #define Z_DIR_PIN 33
  26. #define Z_ENABLE_PIN 32
  27. #define E0_STEP_PIN 57
  28. #define E0_DIR_PIN 55
  29. #define E0_ENABLE_PIN 58
  30. #define E1_STEP_PIN 61
  31. #define E1_DIR_PIN 62
  32. #define E1_ENABLE_PIN 60
  33. #define E2_STEP_PIN 46
  34. #define E2_DIR_PIN 66
  35. #define E2_ENABLE_PIN 44
  36. #define E3_STEP_PIN 45
  37. #define E3_DIR_PIN 69
  38. #define E3_ENABLE_PIN 47
  39. //
  40. // Temperature Sensors
  41. //
  42. #define TEMP_0_PIN 0 // ANALOG INPUT !!
  43. #define TEMP_1_PIN 9 // 9 for tool2 -> 13 for chambertemp
  44. #define TEMP_2_PIN 13 // 10 for tool3 -> 13 for chambertemp
  45. #define TEMP_3_PIN 11 // 11 for tool4 -> 13 for chambertemp
  46. #define TEMP_BED_PIN 14 // ANALOG INPUT !!
  47. //#define TEMP_CHAMBER_PIN 13 // ANALOG INPUT !!
  48. //
  49. // Heaters / Fans
  50. //
  51. #define HEATER_0_PIN 11
  52. #define HEATER_1_PIN 9
  53. #define HEATER_2_PIN 6
  54. #define HEATER_3_PIN 3
  55. #define HEATER_BED_PIN 24
  56. #define FAN_PIN 5 // 5 is PWMtool3 -> 7 is common PWM pin for all tools
  57. //#define PWM_1_PIN 12
  58. //#define PWM_2_PIN 13
  59. //#define SPARE_IO 17
  60. // Tools
  61. //#define TOOL_0_PIN 56
  62. //#define TOOL_0_PWM_PIN 10 // red warning led at dual extruder
  63. //#define TOOL_1_PIN 59
  64. //#define TOOL_1_PWM_PIN 8 // lights at dual extruder
  65. //#define TOOL_2_PIN 4
  66. //#define TOOL_2_PWM_PIN 5
  67. //#define TOOL_3_PIN 14
  68. //#define TOOL_3_PWM_PIN 2
  69. // Common I/O
  70. //
  71. // LCD / Controller
  72. //
  73. #define BEEPER_PIN 16
  74. // Pins for DOGM SPI LCD Support
  75. #define DOGLCD_A0 39
  76. #define DOGLCD_CS 35
  77. #define DOGLCD_MOSI 48
  78. #define DOGLCD_SCK 49
  79. #define LCD_SCREEN_ROT_180
  80. // The encoder and click button
  81. #define BTN_EN1 36
  82. #define BTN_EN2 34
  83. #define BTN_ENC 38
  84. // Hardware buttons for manual movement of XYZ
  85. #define SHIFT_OUT 42
  86. #define SHIFT_LD 41
  87. #define SHIFT_CLK 40
  88. //#define UI1 43
  89. //#define UI2 37
  90. #define STAT_LED_BLUE -1
  91. #define STAT_LED_RED 10 // TOOL_0_PWM_PIN
  92. //
  93. // SD Card
  94. //
  95. #define SDSS 53
  96. #define SD_DETECT_PIN 15
  97. // Other
  98. #define FIL_RUNOUT_PIN 18