CatherineH / pyHighFinesse

Python interface to High Finesse devices
0 stars 3 forks source link

does not execute #1

Open ginnies opened 8 years ago

ginnies commented 8 years ago

Traceback (most recent call last): File "C:\Python27\wavemeter_manager\wlm\scatterplot.py", line 3, in reading = specm.Spectrometer() File "C:\Python27\wavemeter_manager\wlm\spectrometer.py", line 51, in init control_show = self.lib.ControlWLM(getattr(self, 'cCtrlWLMShow'), 0, 0) ValueError: Procedure called with not enough arguments (12 bytes missing) or wrong calling convention

CatherineH commented 8 years ago

Hi,

How was this module installed? I am confused about why it is in a wavemeter_manager folder.

CatherineH commented 8 years ago

Try changing that line to:

control_show = self.lib.ControlWLM(self.cCtrlWLMShow, 0, 0)

If that does not work, change it to:

control_show = self.lib.ControlWLM(1, 0, 0)