My Marlin configs for Fabrikator Mini and CTC i3 Pro B
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

pins_BRAINWAVE.h 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /**
  2. * Brainwave 1.0 pin assignments (AT90USB646)
  3. *
  4. * Requires hardware bundle for Arduino:
  5. * https://github.com/unrepentantgeek/brainwave-arduino
  6. */
  7. #ifndef __AVR_AT90USB646__
  8. #error Oops! Make sure you have 'Brainwave' selected from the 'Tools -> Boards' menu.
  9. #endif
  10. #define X_STEP_PIN 27
  11. #define X_DIR_PIN 29
  12. #define X_ENABLE_PIN 28
  13. #define X_STOP_PIN 7
  14. #define X_ATT_PIN 26
  15. #define Y_STEP_PIN 31
  16. #define Y_DIR_PIN 33
  17. #define Y_ENABLE_PIN 32
  18. #define Y_STOP_PIN 6
  19. #define Y_ATT_PIN 30
  20. #define Z_STEP_PIN 17
  21. #define Z_DIR_PIN 19
  22. #define Z_ENABLE_PIN 18
  23. #define Z_STOP_PIN 5
  24. #define Z_ATT_PIN 16
  25. #define E0_STEP_PIN 21
  26. #define E0_DIR_PIN 23
  27. #define E0_ENABLE_PIN 22
  28. #define E0_ATT_PIN 20
  29. #define HEATER_0_PIN 4 // Extruder
  30. #define HEATER_1_PIN -1
  31. #define HEATER_2_PIN -1
  32. #define HEATER_BED_PIN 38 // Bed
  33. #define FAN_PIN 3 // Fan
  34. #define TEMP_0_PIN 7 // Extruder / Analog pin numbering
  35. #define TEMP_1_PIN -1
  36. #define TEMP_2_PIN -1
  37. #define TEMP_BED_PIN 6 // Bed / Analog pin numbering
  38. #define SDPOWER -1
  39. #define SDSS -1
  40. #define LED_PIN 39
  41. #define PS_ON_PIN -1
  42. #define KILL_PIN -1
  43. #if DISABLED(SDSUPPORT)
  44. // these pins are defined in the SD library if building with SD support
  45. #define SCK_PIN 9
  46. #define MISO_PIN 11
  47. #define MOSI_PIN 10
  48. #endif