My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

pins_BRAINWAVE_PRO.h 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2017 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. /**
  23. * Brainwave Pro pin assignments (AT90USB1286)
  24. *
  25. * Requires hardware bundle for Arduino:
  26. * https://github.com/unrepentantgeek/brainwave-arduino
  27. */
  28. /**
  29. * Rev B 16 JAN 2017
  30. *
  31. * Added pointers to currently available Arduino IDE extensions that will
  32. * allow this board to use the latest Marlin software
  33. *
  34. *
  35. * Rev C 2 JUN 2017
  36. *
  37. * Converted to Arduino pin numbering
  38. */
  39. /**
  40. * There are two Arduino IDE extensions that are compatible with this board
  41. * and with the mainstream Marlin software.
  42. *
  43. * Teensyduino - http://www.pjrc.com/teensy/teensyduino.html
  44. * Select Teensy++ 2.0 in Arduino IDE from the 'Tools -> Boards' menu
  45. *
  46. * Installation instructions are at the above URL. Don't bother loading the
  47. * libraries - they are not used with the Marlin software.
  48. *
  49. * Printrboard - https://github.com/scwimbush/Printrboard-HID-Arduino-IDE-Support
  50. *
  51. * Installation:
  52. *
  53. * 1. Go to the above URL, click on the "Clone or Download" button and then
  54. * click on "Download ZIP" button.
  55. * 2. Unzip the file, find the "printrboard" directory and then copy it to the
  56. * hardware directory in Arduino. The Arduino hardware directory will probably
  57. * be located in a path similar to this: C:\Program Files (x86)\Arduino\hardware.
  58. * 3. Restart Arduino.
  59. * 4. Select "Printrboard" from the 'Tools -> Boards' menu.
  60. *
  61. * Teensyduino is the most popular option. Printrboard is used if your board doesn't have
  62. * the Teensyduino bootloader on it.
  63. */
  64. /**
  65. * To burn the bootloader that comes with Printrboard:
  66. *
  67. * 1. Connect your programmer to the board.
  68. * 2. In the Arduino IDE select "Printrboard" and then select the programmer.
  69. * 3. In the Arduino IDE click on "burn bootloader". Don't worry about the "verify failed at 1F000" error message.
  70. * 4. The programmer is no longer needed. Remove it.
  71. */
  72. #ifndef __AVR_AT90USB1286__
  73. #error "Oops! Make sure you have 'Teensy++ 2.0' or 'Printrboard' selected from the 'Tools -> Boards' menu."
  74. #endif
  75. #define BOARD_NAME "Brainwave Pro"
  76. //
  77. // Limit Switches
  78. //
  79. #define X_STOP_PIN 45 // F7
  80. #define Y_STOP_PIN 12 // C2
  81. #define Z_STOP_PIN 36 // E4
  82. //
  83. // Z Probe (when not Z_MIN_PIN)
  84. //
  85. #ifndef Z_MIN_PROBE_PIN
  86. #define Z_MIN_PROBE_PIN 11 // C1
  87. #endif
  88. //
  89. // Steppers
  90. //
  91. #define X_STEP_PIN 9 // E1
  92. #define X_DIR_PIN 8 // E0
  93. #define X_ENABLE_PIN 23 // B3
  94. #define Y_STEP_PIN 7 // D7
  95. #define Y_DIR_PIN 6 // D6
  96. #define Y_ENABLE_PIN 20 // B0
  97. #define Z_STEP_PIN 5 // D5
  98. #define Z_DIR_PIN 4 // D4
  99. #define Z_ENABLE_PIN 37 // E5
  100. #define E0_STEP_PIN 47 // E3
  101. #define E0_DIR_PIN 46 // E2
  102. #define E0_ENABLE_PIN 25 // B5
  103. //
  104. // Temperature Sensors
  105. //
  106. #define TEMP_0_PIN 2 // F2 Analog Input
  107. #define TEMP_1_PIN 1 // F1 Analog Input
  108. #define TEMP_BED_PIN 0 // F0 Analog Input
  109. //
  110. // Heaters / Fans
  111. //
  112. #define HEATER_0_PIN 27 // B7
  113. #define HEATER_BED_PIN 26 // B6 Bed
  114. #define FAN_PIN 16 // C6 Fan, PWM3A
  115. //
  116. // Misc. Functions
  117. //
  118. #define SDSS 20 // B0
  119. #define SD_DETECT_PIN 24 // B4
  120. #define LED_PIN 13 // C3