diff options
Diffstat (limited to 'klippy/extras/bltouch.py')
-rw-r--r-- | klippy/extras/bltouch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/bltouch.py b/klippy/extras/bltouch.py index e95938e2..f18f7153 100644 --- a/klippy/extras/bltouch.py +++ b/klippy/extras/bltouch.py @@ -47,7 +47,7 @@ class BLTouchEndstopWrapper: 'pin_up_touch_mode_reports_triggered', True) self.start_mcu_pos = [] # Calculate pin move time - pmt = max(config.getfloat('pin_move_time', 0.200), MIN_CMD_TIME) + pmt = max(config.getfloat('pin_move_time', 0.675), MIN_CMD_TIME) self.pin_move_time = math.ceil(pmt / SIGNAL_PERIOD) * SIGNAL_PERIOD # Wrappers self.get_mcu = self.mcu_endstop.get_mcu |