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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /**
  2. * bq ZUM Mega 3D board definition
  3. */
  4. #ifndef __AVR_ATmega2560__
  5. #error Oops! Make sure you have 'Arduino Mega 2560' selected from the 'Tools -> Boards' menu.
  6. #endif
  7. #define LARGE_FLASH true
  8. #define LED_PIN 13
  9. #define X_STEP_PIN 54
  10. #define X_DIR_PIN 55
  11. #define X_ENABLE_PIN 38
  12. #define X_MIN_PIN 3
  13. #define X_MAX_PIN 79
  14. #define Y_STEP_PIN 60
  15. #define Y_DIR_PIN 61
  16. #define Y_ENABLE_PIN 56
  17. #define Y_MIN_PIN 14
  18. #define Y_MAX_PIN 15
  19. #define Z_STEP_PIN 46
  20. #define Z_DIR_PIN 48
  21. #define Z_ENABLE_PIN 77
  22. #define Z_MIN_PIN 18 // Z-MIN Label
  23. #define Z_MAX_PIN 19 // IND_S_5V
  24. #define E0_STEP_PIN 26
  25. #define E0_DIR_PIN 28
  26. #define E0_ENABLE_PIN 24
  27. #define E1_STEP_PIN 36
  28. #define E1_DIR_PIN 34
  29. #define E1_ENABLE_PIN 30
  30. #define FAN_PIN 12
  31. #define HEATER_0_PIN 9
  32. #define TEMP_0_PIN 13
  33. #define FAN1_PIN 7
  34. #define HEATER_1_PIN 10
  35. #define TEMP_1_PIN 14
  36. #define HEATER_BED_PIN 8
  37. #define TEMP_BED_PIN 15
  38. #undef DIGIPOTSS_PIN
  39. #define DIGIPOTSS_PIN 22
  40. #define DIGIPOT_CHANNELS { 4, 5, 3 , 0, 1 }
  41. #define PS_ON_PIN 81 // External Power Supply
  42. #if ENABLED(BQ_LCD_SMART_CONTROLLER)
  43. #define KILL_PIN 41
  44. #define LCD_PIN_BL 39
  45. #define LCD_PINS_RS 16
  46. #define LCD_PINS_ENABLE 17
  47. #define LCD_PINS_D4 23
  48. #define BTN_EN1 31
  49. #define BTN_EN2 33
  50. #define BTN_ENC 35
  51. #define BEEPER_PIN 37
  52. #define SDPOWER -1
  53. #define SDSS 53
  54. #define SD_DETECT_PIN 49
  55. #endif
  56. #if ENABLED(AUTO_BED_LEVELING_FEATURE)
  57. #undef Z_MIN_PIN
  58. #undef Z_MAX_PIN
  59. #define Z_MIN_PIN 19 // IND_S_5V
  60. #define Z_MAX_PIN 18 // Z-MIN Label
  61. #endif