[Ju...] Posted March 10 Share Posted March 10 (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 March 10 Link to comment Share on other sites More sharing options...
[Na...] Posted March 10 Share Posted March 10 Hi Jure, is there a reference point detected in the measuring volume? Link to comment Share on other sites More sharing options...
[Ju...] Posted March 10 Author Share Posted March 10 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 March 11 Share Posted March 11 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