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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /**
  2. * Brainwave Pro pin assignments (AT90USB186)
  3. *
  4. * Requires hardware bundle for Arduino:
  5. * https://github.com/unrepentantgeek/brainwave-arduino
  6. */
  7. #ifndef __AVR_AT90USB1286__
  8. #error Oops! Make sure you have 'Brainwave Pro' selected from the 'Tools -> Boards' menu.
  9. #endif
  10. #ifndef AT90USBxx_TEENSYPP_ASSIGNMENTS // use Teensyduino Teensy++2.0 pin assignments instead of Marlin alphabetical.
  11. #error Uncomment #define AT90USBxx_TEENSYPP_ASSIGNMENTS in fastio.h for this config
  12. #endif
  13. #define AT90USB 1286 // Disable MarlinSerial etc.
  14. #define X_STEP_PIN 33
  15. #define X_DIR_PIN 32
  16. #define X_ENABLE_PIN 11
  17. #define X_STOP_PIN 47
  18. #define Y_STEP_PIN 31
  19. #define Y_DIR_PIN 30
  20. #define Y_ENABLE_PIN 8
  21. #define Y_STOP_PIN 18
  22. #define Z_STEP_PIN 29
  23. #define Z_DIR_PIN 28
  24. #define Z_ENABLE_PIN 37
  25. #define Z_MAX_PIN 36
  26. #define Z_MIN_PIN 17 // Bed probe
  27. #define E0_STEP_PIN 35
  28. #define E0_DIR_PIN 34
  29. #define E0_ENABLE_PIN 13
  30. #define HEATER_0_PIN 15
  31. #define HEATER_1_PIN -1
  32. #define HEATER_2_PIN -1
  33. #define HEATER_BED_PIN 14 // Bed
  34. #define FAN_PIN 16 // Fan, PWM
  35. #define TEMP_0_PIN 2 // Extruder / Analog pin numbering
  36. #define TEMP_1_PIN 1 // Spare / Analog pin numbering
  37. #define TEMP_2_PIN -1
  38. #define TEMP_BED_PIN 0 // Bed / Analog pin numbering
  39. #define SDPOWER -1
  40. #define SDSS 20
  41. #define LED_PIN 19
  42. #define PS_ON_PIN -1
  43. #define KILL_PIN -1
  44. #define ALARM_PIN -1
  45. #define SDCARDDETECT 12
  46. #ifndef SDSUPPORT
  47. // these pins are defined in the SD library if building with SD support
  48. #define SCK_PIN 21
  49. #define MISO_PIN 23
  50. #define MOSI_PIN 22
  51. #endif