Jump to content

Automatic Scanning Error - Cannot check online sensor movement


---
 Share

Recommended Posts

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
Link to comment
Share on other sites

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

 Share

×
×
  • Create New...