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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /**
  2. * Brainwave Pro pin assignments (AT90USB1286)
  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. #include "fastio.h"
  11. #ifndef AT90USBxx_TEENSYPP_ASSIGNMENTS // use Teensyduino Teensy++2.0 pin assignments instead of Marlin alphabetical.
  12. #error Uncomment #define AT90USBxx_TEENSYPP_ASSIGNMENTS in fastio.h for this config
  13. #endif
  14. #define LARGE_FLASH true
  15. #define X_STEP_PIN 33
  16. #define X_DIR_PIN 32
  17. #define X_ENABLE_PIN 11
  18. #define X_STOP_PIN 47
  19. #define Y_STEP_PIN 31
  20. #define Y_DIR_PIN 30
  21. #define Y_ENABLE_PIN 8
  22. #define Y_STOP_PIN 18
  23. #define Z_STEP_PIN 29
  24. #define Z_DIR_PIN 28
  25. #define Z_ENABLE_PIN 37
  26. #define Z_MAX_PIN 36
  27. #define Z_MIN_PIN 17 // Bed probe
  28. #define E0_STEP_PIN 35
  29. #define E0_DIR_PIN 34
  30. #define E0_ENABLE_PIN 13
  31. #define HEATER_0_PIN 15
  32. #define HEATER_1_PIN -1
  33. #define HEATER_2_PIN -1
  34. #define HEATER_BED_PIN 14 // Bed
  35. #define FAN_PIN 16 // Fan, PWM
  36. #define TEMP_0_PIN 2 // Extruder / Analog pin numbering
  37. #define TEMP_1_PIN 1 // Spare / Analog pin numbering
  38. #define TEMP_2_PIN -1
  39. #define TEMP_BED_PIN 0 // Bed / Analog pin numbering
  40. #define SDPOWER -1
  41. #define SDSS 20
  42. #define LED_PIN 19
  43. #define PS_ON_PIN -1
  44. #define KILL_PIN -1
  45. #define ALARM_PIN -1
  46. #define SD_DETECT_PIN 12
  47. #if DISABLED(SDSUPPORT)
  48. // these pins are defined in the SD library if building with SD support
  49. #define SCK_PIN 21
  50. #define MISO_PIN 23
  51. #define MOSI_PIN 22
  52. #endif