Advertisement
Guest User

Untitled

a guest
Nov 17th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. #define BABYSTEPPING
  2. #if ENABLED(BABYSTEPPING)
  3. //#define BABYSTEP_WITHOUT_HOMING
  4. //#define BABYSTEP_XY // Also enable X/Y Babystepping. Not supported on DELTA!
  5. #define BABYSTEP_INVERT_Z false // Change if Z babysteps should go the other way
  6. #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
  7.  
  8. #define DOUBLECLICK_FOR_Z_BABYSTEPPING // Double-click on the Status Screen for Z Babystepping.
  9. #if ENABLED(DOUBLECLICK_FOR_Z_BABYSTEPPING)
  10. #define DOUBLECLICK_MAX_INTERVAL 1250 // Maximum interval between clicks, in milliseconds.
  11. // Note: Extra time may be added to mitigate controller latency.
  12. //#define BABYSTEP_ALWAYS_AVAILABLE // Allow babystepping at all times (not just during movement).
  13. //#define MOVE_Z_WHEN_IDLE // Jump to the move Z menu on doubleclick when printer is idle.
  14. #if ENABLED(MOVE_Z_WHEN_IDLE)
  15. #define MOVE_Z_IDLE_MULTIPLICATOR 1 // Multiply 1mm by this factor for the move step size.
  16. #endif
  17. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement