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_WEEDO_62A.h 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2022 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 <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. /**
  23. * Based on WEEDO 62A pin configuration
  24. * Copyright (c) 2019 WEEDO3D Perron
  25. */
  26. #pragma once
  27. #include "env_validate.h"
  28. #ifndef BOARD_INFO_NAME
  29. #define BOARD_INFO_NAME "WEEDO 62A"
  30. #endif
  31. //
  32. // Limit Switches
  33. //
  34. #define X_MIN_PIN 3
  35. #define X_MAX_PIN 2
  36. #define Y_MIN_PIN 40
  37. #define Y_MAX_PIN 41
  38. #define Z_MIN_PIN 18
  39. #define Z_MAX_PIN 19
  40. //
  41. // Steppers
  42. //
  43. #define X_STEP_PIN 26
  44. #define X_DIR_PIN 28
  45. #define X_ENABLE_PIN 24
  46. #define Y_STEP_PIN 60
  47. #define Y_DIR_PIN 61
  48. #define Y_ENABLE_PIN 56
  49. #define Z_STEP_PIN 46
  50. #define Z_DIR_PIN 48
  51. #define Z_ENABLE_PIN 62
  52. #define E0_STEP_PIN 54
  53. #define E0_DIR_PIN 55
  54. #define E0_ENABLE_PIN 38
  55. //
  56. // Temperature Sensors
  57. //
  58. #define TEMP_0_PIN 13 // ANALOG NUMBERING
  59. #define TEMP_BED_PIN 14 // ANALOG NUMBERING
  60. //
  61. // Heaters / Fans
  62. //
  63. #define HEATER_0_PIN 10 // EXTRUDER 1
  64. #define HEATER_BED_PIN 8 // BED
  65. #define FAN_PIN 4 // IO pin. Buffer needed
  66. //
  67. // Misc. Functions
  68. //
  69. #define PS_ON_PIN 12
  70. #define LED_PIN 13
  71. //
  72. // SD Support
  73. //
  74. #if ENABLED(SDSUPPORT)
  75. #define SDSS 53
  76. #define SD_DETECT_PIN 49
  77. #endif
  78. //
  79. // LCD / Controller
  80. //
  81. #if HAS_WIRED_LCD
  82. #define BEEPER_PIN 37
  83. #define DOGLCD_A0 27
  84. #define DOGLCD_CS 29
  85. #define LCD_RESET_PIN 25
  86. #define LCD_CONTRAST_INIT 255
  87. #define BTN_EN1 33
  88. #define BTN_EN2 31
  89. #define BTN_ENC 35
  90. #endif