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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 AT90USB 646 // Disable MarlinSerial etc.
  11. #define X_STEP_PIN 27
  12. #define X_DIR_PIN 29
  13. #define X_ENABLE_PIN 28
  14. #define X_STOP_PIN 7
  15. #define X_ATT_PIN 26
  16. #define Y_STEP_PIN 31
  17. #define Y_DIR_PIN 33
  18. #define Y_ENABLE_PIN 32
  19. #define Y_STOP_PIN 6
  20. #define Y_ATT_PIN 30
  21. #define Z_STEP_PIN 17
  22. #define Z_DIR_PIN 19
  23. #define Z_ENABLE_PIN 18
  24. #define Z_STOP_PIN 5
  25. #define Z_ATT_PIN 16
  26. #define E0_STEP_PIN 21
  27. #define E0_DIR_PIN 23
  28. #define E0_ENABLE_PIN 22
  29. #define E0_ATT_PIN 20
  30. #define HEATER_0_PIN 4 // Extruder
  31. #define HEATER_1_PIN -1
  32. #define HEATER_2_PIN -1
  33. #define HEATER_BED_PIN 38 // Bed
  34. #define FAN_PIN 3 // Fan
  35. #define TEMP_0_PIN 7 // Extruder / Analog pin numbering
  36. #define TEMP_1_PIN -1
  37. #define TEMP_2_PIN -1
  38. #define TEMP_BED_PIN 6 // Bed / Analog pin numbering
  39. #define SDPOWER -1
  40. #define SDSS -1
  41. #define LED_PIN 39
  42. #define PS_ON_PIN -1
  43. #define KILL_PIN -1
  44. #define ALARM_PIN -1
  45. #ifndef SDSUPPORT
  46. // these pins are defined in the SD library if building with SD support
  47. #define SCK_PIN 9
  48. #define MISO_PIN 11
  49. #define MOSI_PIN 10
  50. #endif