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_GEN3_MONOLITHIC.h 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /**
  2. * Gen3 Monolithic Electronics pin assignments
  3. */
  4. #ifndef __AVR_ATmega644P__
  5. #error Oops! Make sure you have 'Sanguino' selected from the 'Tools -> Boards' menu.
  6. #endif
  7. #define DEBUG_PIN 0
  8. // x axis
  9. #define X_STEP_PIN 15
  10. #define X_DIR_PIN 18
  11. #define X_MIN_PIN 20
  12. // Alex Checar #define X_STOP_PIN 20
  13. #define X_ENABLE_PIN 24 // actually uses Y_enable_pin
  14. #define X_MAX_PIN -1
  15. // y axis
  16. #define Y_STEP_PIN 23
  17. #define Y_DIR_PIN 22
  18. #define Y_MIN_PIN 25
  19. // Alex Checar #define Y_STOP_PIN 25
  20. #define Y_ENABLE_PIN 24 // shared with X_enable_pin
  21. #define Y_MAX_PIN -1
  22. // z axis
  23. #define Z_STEP_PIN 27
  24. #define Z_DIR_PIN 28
  25. #define Z_MIN_PIN 30
  26. // Alex Checar #define Z_STOP_PIN 30
  27. #define Z_ENABLE_PIN 29
  28. #define Z_MAX_PIN -1
  29. // extruder pins
  30. #define E0_STEP_PIN 12
  31. #define E0_DIR_PIN 17
  32. #define E0_ENABLE_PIN 3
  33. #define HEATER_0_PIN 16
  34. #define TEMP_0_PIN 0
  35. #define FAN_PIN -1
  36. // bed pins
  37. #define HEATER_BED_PIN -1
  38. #define TEMP_BED_PIN -1
  39. #define SDSS -1
  40. #define SDPOWER -1
  41. #define LED_PIN -1
  42. // pin for controlling the PSU.
  43. #define PS_ON_PIN 14 // Alex, Do this work on the card?
  44. // Alex extras from Gen3+
  45. #define KILL_PIN -1
  46. #define TEMP_1_PIN -1
  47. #define TEMP_2_PIN -1
  48. #define HEATER_2_PIN -1