[Ju...] Posted yesterday at 02:49 PM Share Posted yesterday at 02:49 PM (edited) Hello everyone, I am looking for a solution. I used the record button to create this code, which is supposed to scan automatically. gom.script.atos.set_acquisition_parameters(measurement_temperature=20.0) GOM_MMT_RETRIES = 10 GOM_MMT_ERROR_CODES = ['MPROJ-0037'] while True : try: gom.script.atos.insert_scan_measurement () except RuntimeError as ex: if GOM_MMT_ERROR_CODES and not ex.args[0] in GOM_MMT_ERROR_CODES : raise GOM_MMT_RETRIES -= 1 if GOM_MMT_RETRIES <= 0 : raise else: break Unfortunately, I get the following error message when I run it automatically: RequestError: MATOS-S032: Cannot check online sensor movement. File .... , line 29, in <module> gom.script.atos.insert_scan_measurement () What could be the reason for this and how can I fix the problem (I am using Zeiss Inspect 2026)? Best regards, Jure Baloh Edited yesterday at 02:54 PM Link to comment Share on other sites More sharing options...
[Na...] Posted yesterday at 03:19 PM Share Posted yesterday at 03:19 PM Hi Jure, is there a reference point detected in the measuring volume? Link to comment Share on other sites More sharing options...
[Ju...] Posted yesterday at 03:21 PM Author Share Posted yesterday at 03:21 PM Hey Nanno, yes, in live-Mode you can see a few green points. Link to comment Share on other sites More sharing options...
[Na...] Posted 7 hours ago Share Posted 7 hours ago Maybe deactivate the movement check in the acquisition parameters and have a look at the measurement will help to understand why that check did not work. Usually the movement of reference points during the measurement is detected, so I guess something interferes with that check. Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in