We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I have a question, to use the jeol-1400 configuration I filled the field
microscope: jeol-1400
within the settings.yaml config file but do i have to call
ctrl = TEMController.initialize(tem_name='jeol', cam_name=None)
or
ctrl = TEMController.initialize(tem_name='jeol-1400', cam_name=None)
The fact is that I observed an unexpected behaviour yesterday: I called
with
within settings.yaml but when i called
ctrl.tem.getMagnificationRanges()
I got those from jeol.yaml and not those from jeol-1400.yaml I don't know if I am clear
Thanks
The text was updated successfully, but these errors were encountered:
Hi @rds-itga , I think I understand, it also still gets me confused sometimes 😅 What you describe fits with how it is intended to work.
The idea is that if you filled out the settings.yaml then you can use:
settings.yaml
ctrl = TEMController.initialize()
Then it will use the value configured in settings.yaml
If you set tem_name='jeol', then it will override the value you set, and use the given value instead. This seems to be what is happening.
tem_name='jeol'
If you want to be really in the clear, just have a single file called jeol.yaml.
jeol.yaml
Sorry, something went wrong.
Ok, I understand, it is clear to me now. Thank you very much! Regards
No branches or pull requests
Hi,
I have a question, to use the jeol-1400 configuration I filled the field
within the settings.yaml config file but do i have to call
or
The fact is that I observed an unexpected behaviour yesterday:
I called
with
within settings.yaml
but when i called
I got those from jeol.yaml and not those from jeol-1400.yaml
I don't know if I am clear
Thanks
The text was updated successfully, but these errors were encountered: