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.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. #include "pins_RAMPS_13.h"
  8. #undef X_MAX_PIN
  9. #define X_MAX_PIN 79 // 2
  10. #undef Z_ENABLE_PIN
  11. #define Z_ENABLE_PIN 77 // 62
  12. #undef FAN_PIN
  13. #define FAN_PIN 12 // 4
  14. #undef HEATER_0_PIN
  15. #define HEATER_0_PIN 9 // 10
  16. #undef HEATER_1_PIN
  17. #define HEATER_1_PIN 10 // 9
  18. #undef TEMP_1_PIN
  19. #define TEMP_1_PIN 14 // 15
  20. #undef TEMP_BED_PIN
  21. #define TEMP_BED_PIN 15 // 14
  22. #define DIGIPOTSS_PIN 22
  23. #define DIGIPOT_CHANNELS { 4, 5, 3, 0, 1 }
  24. #define FAN1_PIN 7
  25. #undef PS_ON_PIN // 12
  26. #define PS_ON_PIN 81 // External Power Supply
  27. #if ENABLED(BQ_LCD_SMART_CONTROLLER) // Most similar to REPRAP_DISCOUNT_SMART_CONTROLLER
  28. #define KILL_PIN 41
  29. #define BEEPER_PIN 37
  30. #define BTN_EN1 31
  31. #define BTN_EN2 33
  32. #define BTN_ENC 35
  33. #define LCD_PIN_BL 39
  34. #define LCD_PINS_RS 16
  35. #define LCD_PINS_ENABLE 17
  36. #define LCD_PINS_D4 23
  37. #define SD_DETECT_PIN 49
  38. #endif
  39. #if ENABLED(AUTO_BED_LEVELING_FEATURE)
  40. #undef Z_MIN_PIN
  41. #undef Z_MAX_PIN
  42. #define Z_MIN_PIN 19 // IND_S_5V
  43. #define Z_MAX_PIN 18 // Z-MIN Label
  44. #endif