Guest User

Untitled

a guest
Nov 24th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.26 KB | None | 0 0
  1. /****************************************************************************************
  2. * Teensylu 0.7 pin assingments (ATMEGA90USB)
  3. * Requires the Teensyduino software with Teensy2.0++ selected in arduino IDE!
  4. ****************************************************************************************/
  5. #if MOTHERBOARD == 8
  6. #define MOTHERBOARD 8
  7. #define KNOWN_BOARD 1
  8.  
  9.  
  10. #define X_STEP_PIN         28
  11. #define X_DIR_PIN          29
  12. #define X_ENABLE_PIN       19
  13. #define X_MIN_PIN          25
  14. #define X_MAX_PIN          -1    
  15.  
  16. #define Y_STEP_PIN         30
  17. #define Y_DIR_PIN          31
  18. #define Y_ENABLE_PIN       18
  19. #define Y_MIN_PIN          26
  20. #define Y_MAX_PIN          -1    
  21.  
  22. #define Z_STEP_PIN         32
  23. #define Z_DIR_PIN          33
  24. #define Z_ENABLE_PIN       17
  25. #define Z_MIN_PIN          27
  26. #define Z_MAX_PIN          -1    
  27.  
  28. #define E_STEP_PIN         34
  29. #define E_DIR_PIN          35
  30. #define E_ENABLE_PIN       13
  31.  
  32.  
  33.  
  34. #define HEATER_0_PIN       15   // Extruder
  35. #define HEATER_1_PIN       14   // Bed
  36. #define FAN_PIN            16   // Fan  
  37.  
  38. #define TEMP_0_PIN          7    // Extruder
  39. #define TEMP_1_PIN          6    // Bed
  40.  
  41. #define LED_PIN            -1
  42. #define PS_ON_PIN          -1
  43. #define KILL_PIN           -1 //28
  44.  
  45. #endif
Add Comment
Please, Sign In to add comment