My Marlin configs for Fabrikator Mini and CTC i3 Pro B
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

pins_PRINTRBOARD.h 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /**
  2. * Printrboard pin assignments (AT90USB1286)
  3. * Requires the Teensyduino software with Teensy++ 2.0 selected in Arduino IDE!
  4. * http://www.pjrc.com/teensy/teensyduino.html
  5. * See http://reprap.org/wiki/Printrboard for more info
  6. */
  7. #ifndef __AVR_AT90USB1286__
  8. #error Oops! Make sure you have 'Teensy++ 2.0' selected from the 'Tools -> Boards' menu.
  9. #endif
  10. #ifdef AT90USBxx_TEENSYPP_ASSIGNMENTS // use Teensyduino Teensy++2.0 pin assignments instead of Marlin traditional.
  11. #error These Printrboard assignments depend on traditional Marlin assignments, not AT90USBxx_TEENSYPP_ASSIGNMENTS in fastio.h
  12. #endif
  13. #define AT90USB 1286 // Disable MarlinSerial etc.
  14. #define LARGE_FLASH true
  15. #define X_STEP_PIN 0
  16. #define X_DIR_PIN 1
  17. #define X_ENABLE_PIN 39
  18. #define Y_STEP_PIN 2
  19. #define Y_DIR_PIN 3
  20. #define Y_ENABLE_PIN 38
  21. #define Z_STEP_PIN 4
  22. #define Z_DIR_PIN 5
  23. #define Z_ENABLE_PIN 23
  24. #define E0_STEP_PIN 6
  25. #define E0_DIR_PIN 7
  26. #define E0_ENABLE_PIN 19
  27. #define HEATER_0_PIN 21 // Extruder
  28. #define HEATER_1_PIN 46
  29. #define HEATER_2_PIN 47
  30. #define HEATER_BED_PIN 20
  31. // If soft or fast PWM is off then use Teensyduino pin numbering, Marlin
  32. // fastio pin numbering otherwise
  33. #ifdef FAN_SOFT_PWM || FAST_PWM_FAN
  34. #define FAN_PIN 22
  35. #else
  36. #define FAN_PIN 16
  37. #endif
  38. #define X_STOP_PIN 35
  39. #define Y_STOP_PIN 8
  40. #define Z_STOP_PIN 36
  41. #define TEMP_0_PIN 1 // Extruder / Analog pin numbering
  42. #define TEMP_BED_PIN 0 // Bed / Analog pin numbering
  43. #ifdef FILAMENT_SENSOR
  44. #define FILWIDTH_PIN 2
  45. #endif
  46. #define TEMP_1_PIN -1
  47. #define TEMP_2_PIN -1
  48. ////LCD Pin Setup////
  49. #define SDPOWER -1
  50. #define SDSS 8
  51. #define LED_PIN -1
  52. #define PS_ON_PIN -1
  53. #define KILL_PIN -1
  54. #define ALARM_PIN -1
  55. #ifndef SDSUPPORT
  56. // these pins are defined in the SD library if building with SD support
  57. #define SCK_PIN 9
  58. #define MISO_PIN 11
  59. #define MOSI_PIN 10
  60. #endif
  61. #if defined(ULTRA_LCD) && defined(NEWPANEL)
  62. //we have no buzzer installed
  63. #define BEEPER -1
  64. //LCD Pins
  65. #ifdef LCD_I2C_PANELOLU2
  66. #define BTN_EN1 27 //RX1 - fastio.h pin mapping 27
  67. #define BTN_EN2 26 //TX1 - fastio.h pin mapping 26
  68. #define BTN_ENC 43 //A3 - fastio.h pin mapping 43
  69. #define SDSS 40 //use SD card on Panelolu2 (Teensyduino pin mapping)
  70. #endif // LCD_I2C_PANELOLU2
  71. //not connected to a pin
  72. #define SDCARDDETECT -1
  73. #endif // ULTRA_LCD && NEWPANEL
  74. #if defined(VIKI2) || defined(miniVIKI)
  75. #define BEEPER 32 //FastIO
  76. // Pins for DOGM SPI LCD Support
  77. #define DOGLCD_A0 42 //Non-FastIO
  78. #define DOGLCD_CS 43 //Non-FastIO
  79. #define LCD_SCREEN_ROT_180
  80. //The encoder and click button (FastIO Pins)
  81. #define BTN_EN1 26
  82. #define BTN_EN2 27
  83. #define BTN_ENC 47 //the click switch
  84. #define SDSS 45
  85. #define SDCARDDETECT -1 // FastIO (Manual says 72 I'm not certain cause I can't test)
  86. #ifdef TEMP_STAT_LEDS
  87. #define STAT_LED_RED 12 //Non-FastIO
  88. #define STAT_LED_BLUE 10 //Non-FastIO
  89. #endif
  90. #endif