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_15D.h 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /**
  2. * CNControls V15 for HMS434 with DUE pin assignments
  3. */
  4. #ifndef __SAM3X8E__
  5. #error "Oops! Select 'Arduino Due' in 'Tools > Board.'"
  6. #endif
  7. #define BOARD_INFO_NAME "CN Controls V15D"
  8. //
  9. // Servos
  10. //
  11. #define SERVO0_PIN 6
  12. //
  13. // Limit Switches
  14. //
  15. #define X_STOP_PIN 34
  16. #define Y_STOP_PIN 39
  17. #define Z_STOP_PIN 62
  18. #ifndef Z_MIN_PROBE_PIN
  19. #define Z_MIN_PROBE_PIN 49
  20. #endif
  21. //
  22. // Steppers
  23. //
  24. #define X_STEP_PIN 14
  25. #define X_DIR_PIN 25
  26. #define X_ENABLE_PIN 26
  27. #define Y_STEP_PIN 11
  28. #define Y_DIR_PIN 12
  29. #define Y_ENABLE_PIN 15
  30. #define Z_STEP_PIN 24
  31. #define Z_DIR_PIN 27
  32. #define Z_ENABLE_PIN 28
  33. #define E0_STEP_PIN 64
  34. #define E0_DIR_PIN 65
  35. #define E0_ENABLE_PIN 63
  36. #define E1_STEP_PIN 8
  37. #define E1_DIR_PIN 7
  38. #define E1_ENABLE_PIN 29
  39. //
  40. // Temperature Sensors
  41. // Analog Inputs
  42. //
  43. #define TEMP_0_PIN 1
  44. #define TEMP_1_PIN 2
  45. #define TEMP_BED_PIN 4
  46. #ifndef TEMP_CHAMBER_PIN
  47. #define TEMP_CHAMBER_PIN 5
  48. #endif
  49. //
  50. // Heaters
  51. //
  52. #define HEATER_0_PIN 3
  53. #define HEATER_1_PIN 4
  54. #define HEATER_BED_PIN 32
  55. #define HEATER_CHAMBER_PIN 33
  56. //
  57. // Fans
  58. //
  59. //#define FAN0_PIN 8
  60. #define ORIG_E0_AUTO_FAN_PIN 30
  61. #define ORIG_E1_AUTO_FAN_PIN 30
  62. #define ORIG_E2_AUTO_FAN_PIN 30
  63. #define ORIG_E3_AUTO_FAN_PIN 30
  64. #define ORIG_CHAMBER_AUTO_FAN_PIN 10
  65. //
  66. // SD card
  67. //
  68. #define SCK_PIN 76
  69. #define MISO_PIN 74
  70. #define MOSI_PIN 75
  71. #define SDSS 53
  72. #define SD_DETECT_PIN 40
  73. // Common I/O
  74. //#define PWM_1_PIN 6 // probe
  75. //#define PWM_2_PIN 13
  76. //#define SPARE_IO 17
  77. #define BEEPER_PIN 13
  78. #define CALIBRATION_PIN 66
  79. #define STAT_LED_BLUE_PIN -1
  80. #define STAT_LED_RED_PIN 31