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_CNCONTROLS_11.h 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /**
  2. * CartesioV11 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 V11"
  8. //#define LARGE_FLASH true
  9. //
  10. // Limit Switches
  11. //
  12. #define X_STOP_PIN 43
  13. #define Y_STOP_PIN 45
  14. #define Z_STOP_PIN 42
  15. //
  16. // Steppers
  17. //
  18. #define X_STEP_PIN 34
  19. #define X_DIR_PIN 36
  20. #define X_ENABLE_PIN 35
  21. #define Y_STEP_PIN 37
  22. #define Y_DIR_PIN 39
  23. #define Y_ENABLE_PIN 38
  24. #define Z_STEP_PIN 40
  25. #define Z_DIR_PIN 48
  26. #define Z_ENABLE_PIN 41
  27. #define E0_STEP_PIN 29
  28. #define E0_DIR_PIN 28
  29. #define E0_ENABLE_PIN 3
  30. #define E1_STEP_PIN 61
  31. #define E1_DIR_PIN 62
  32. #define E1_ENABLE_PIN 60
  33. #define E2_STEP_PIN 15
  34. #define E2_DIR_PIN 14
  35. #define E2_ENABLE_PIN 16
  36. #define E3_STEP_PIN 44
  37. #define E3_DIR_PIN 49
  38. #define E3_ENABLE_PIN 47
  39. //
  40. // Temperature Sensors
  41. //
  42. #define TEMP_0_PIN 0 // Analog Input
  43. #define TEMP_1_PIN 3 // Analog Input. 3 for tool2 -> 2 for chambertemp
  44. #define TEMP_2_PIN 2 // Analog Input. 9 for tool3 -> 2 for chambertemp
  45. #define TEMP_3_PIN 11 // Analog Input. 11 for tool4 -> 2 for chambertemp
  46. #define TEMP_BED_PIN 1 // Analog Input
  47. //#define TEMP_CHAMBER_PIN 2 // Analog Input
  48. //
  49. // Heaters / Fans
  50. //
  51. #define HEATER_0_PIN 5
  52. #define HEATER_1_PIN 58
  53. #define HEATER_2_PIN 64
  54. #define HEATER_3_PIN 46
  55. #define HEATER_BED_PIN 2
  56. //#define FAN_PIN 7 // common PWM pin for all tools
  57. #define ORIG_E0_AUTO_FAN_PIN 7
  58. #define ORIG_E1_AUTO_FAN_PIN 7
  59. #define ORIG_E2_AUTO_FAN_PIN 7
  60. #define ORIG_E3_AUTO_FAN_PIN 7
  61. //
  62. // Misc. Functions
  63. //
  64. #define SDSS 53
  65. #define SD_DETECT_PIN 13
  66. // Tools
  67. //#define TOOL_0_PIN 4
  68. //#define TOOL_1_PIN 59
  69. //#define TOOL_2_PIN 8
  70. //#define TOOL_3_PIN 30
  71. //#define TOOL_PWM_PIN 7 // common PWM pin for all tools
  72. // Common I/O
  73. //#define FIL_RUNOUT_PIN -1
  74. //#define PWM_1_PIN 11
  75. //#define PWM_2_PIN 10
  76. //#define SPARE_IO 12
  77. //
  78. // LCD / Controller
  79. //
  80. #define BEEPER_PIN 6
  81. // Pins for DOGM SPI LCD Support
  82. #define DOGLCD_A0 26
  83. #define DOGLCD_CS 24
  84. #define DOGLCD_MOSI -1
  85. #define DOGLCD_SCK -1
  86. #define BTN_EN1 23
  87. #define BTN_EN2 25
  88. #define BTN_ENC 27
  89. // Hardware buttons for manual movement of XYZ
  90. #define SHIFT_OUT 19
  91. #define SHIFT_LD 18
  92. #define SHIFT_CLK 17
  93. //#define UI1 31
  94. //#define UI2 22
  95. #define STAT_LED_BLUE_PIN -1
  96. #define STAT_LED_RED_PIN 31