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_BRAINWAVE.h 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. #define ALARM_PIN -1
  44. #if DISABLED(SDSUPPORT)
  45. // these pins are defined in the SD library if building with SD support
  46. #define SCK_PIN 9
  47. #define MISO_PIN 11
  48. #define MOSI_PIN 10
  49. #endif