Skip to content

Commit 52ebff4

Browse files
committed
qtvcp -probe routines: update qt_auto_probe_tool process
fix the qt_auto_probe_tool ngc prgm; second probe was in wriong direction. don't move to tool change position if the tool is already in the spindle. add pin for backoff setting - now follows the adjust setting in versa probe. Add probe routines to probe material and toolsetter height - related to auto_probe_tool. roughed out code for direct tool lenth probing but disabled at this time.
1 parent d265a4f commit 52ebff4

10 files changed

Lines changed: 809 additions & 290 deletions

File tree

lib/python/qtvcp/widgets/basic_probe.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,10 @@ def get_parms(self):
351351

352352
def show_results(self, line):
353353
for key in self.status_list:
354-
self['status_' + key].setText(line[key])
354+
if line[key] != 'None':
355+
self['status_' + key].setText(line[key])
356+
else:
357+
self['status_' + key].setText('')
355358

356359
##############################
357360
# required class boiler code #

0 commit comments

Comments
 (0)