Advertisement
Guest User

Untitled

a guest
Dec 15th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. * The BLTouch probe uses a Hall effect sensor and emulates a servo.
  2. */
  3. #define BLTOUCH //COS
  4. #if ENABLED(BLTOUCH)
  5. #define BLTOUCH_DELAY 100 // COS 100(ms) Enable and increase if needed
  6. #endif
  7.  
  8. /**
  9. * Enable one or more of the following if probing seems unreliable.
  10. * Heaters and/or fans can be disabled during probing to minimize electrical
  11. * noise. A delay can also be added to allow noise and vibration to settle.
  12. * These options are most useful for the BLTouch probe, but may also improve
  13. * readings with inductive probes and piezo sensors.
  14. */
  15. #define PROBING_HEATERS_OFF // COS Turn heaters off when probing
  16. #define PROBING_FANS_OFF // COS Turn fans off when probing
  17. //#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
  18.  
  19. ----------------------------------
  20. #define X_PROBE_OFFSET_FROM_EXTRUDER 46 // COS X offset: -left +right [of the nozzle]
  21. #define Y_PROBE_OFFSET_FROM_EXTRUDER 0 // COS Y offset: -front +behind [the nozzle]
  22. #define Z_PROBE_OFFSET_FROM_EXTRUDER 0 // Z offset: -below +above [the nozzle]
  23.  
  24. // X and Y axis travel speed (mm/m) between probes
  25. #define XY_PROBE_SPEED 6000
  26.  
  27. // Speed for the first approach when double-probing (with PROBE_DOUBLE_TOUCH)
  28. #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
  29.  
  30. // Speed for the "accurate" probe of each point
  31. #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
  32. // Use double touch for probing
  33. //#define PROBE_DOUBLE_TOUCH
  34.  
  35. ---------------------------------------------------------
  36. #define Z_CLEARANCE_DEPLOY_PROBE 3 // COS Z Clearance for Deploy/Stow
  37. #define Z_CLEARANCE_BETWEEN_PROBES 3 // COS Z Clearance between probe points
  38.  
  39. // For M851 give a range for adjusting the Z probe offset
  40. #define Z_PROBE_OFFSET_RANGE_MIN -60
  41. #define Z_PROBE_OFFSET_RANGE_MAX 60
  42.  
  43. // Enable the M48 repeatability test to test probe accuracy
  44. #define Z_MIN_PROBE_REPEATABILITY_TEST // COS
  45. ---------------------------------------------------
  46. // @section homing
  47.  
  48. //#define NO_MOTION_BEFORE_HOMING // Inhibit movement until all axes have been homed
  49.  
  50. #define Z_HOMING_HEIGHT 4 // cos (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
  51. // Be sure you have this distance over your Z_MAX_POS in case.
  52.  
  53. ------------------------------------------------------------
  54. // If enabled, axes won't move below MIN_POS in response to movement commands.
  55. //#define MIN_SOFTWARE_ENDSTOPS // false ?// cos
  56. // If enabled, axes won't move above MAX_POS in response to movement commands.
  57. #define MAX_SOFTWARE_ENDSTOPS // true? // COS
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement