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_DUEMILANOVE_328P.h 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /**
  2. * Duemilanove w/ ATMega328P pin assignments
  3. */
  4. #ifndef __AVR_ATmega328P__
  5. #error Oops! Make sure you have 'Arduino Duemilanove w/ ATMega328' selected from the 'Tools -> Boards' menu.
  6. #endif
  7. #define X_STEP_PIN 19
  8. #define X_DIR_PIN 18
  9. #define X_ENABLE_PIN -1
  10. #define X_STOP_PIN 17
  11. #define Y_STEP_PIN 10
  12. #define Y_DIR_PIN 7
  13. #define Y_ENABLE_PIN -1
  14. #define Y_STOP_PIN 8
  15. #define Z_STEP_PIN 13
  16. #define Z_DIR_PIN 3
  17. #define Z_ENABLE_PIN 2
  18. #define Z_STOP_PIN 4
  19. #define E0_STEP_PIN 11
  20. #define E0_DIR_PIN 12
  21. #define E0_ENABLE_PIN -1
  22. #define SDPOWER -1
  23. #define SDSS -1
  24. #define LED_PIN -1
  25. #define FAN_PIN 5
  26. #define PS_ON_PIN -1
  27. #define KILL_PIN -1
  28. #define HEATER_0_PIN 6
  29. #define HEATER_1_PIN -1
  30. #define HEATER_2_PIN -1
  31. #define TEMP_0_PIN 0 // MUST USE ANALOG INPUT NUMBERING NOT DIGITAL OUTPUT NUMBERING!!!!!!!!!
  32. #define TEMP_1_PIN -1
  33. #define TEMP_2_PIN -1
  34. #define HEATER_BED_PIN -1
  35. #define TEMP_BED_PIN -1