Pierre Cladé
Pierre Cladé
Thanks for this issue. I have implemented this distinctions on the dev2 branch (https://github.com/clade/PyDAQmx/tree/dev2). There is a new parser for the NIDAQmx.h file. For const array, I have also implemented...
How did you installed PyDAQmx ? The pydaqmx is the PEP8 compliant version PyDAQmx which is in the dev2 branch (and supposed to be released as version 2.xx).
The dev2 branch is a tentative to pep8-ify the package. The setup.py should install two package : the main one (pydaqmx) and a legacy one (PyDAQmx) that depends on the...
The dev2 branch is now tested. For example : ``` with pydaqmx.Task() as t: t.create_ai_voltage_chan("dev1/ai0","",pydaqmx.VAL_CFG_DEFAULT,-10.0,10.0,pydaqmx.VAL_VOLTS,None) ```
Hi ! In the dev branch, I modify the **init** to add the name without the prefix. This modification is backward compatible (the from PyDAQmx import \* will import the...
This is a bug that should be corrected : by default all the functions are supposed to return an error code. An exception was made to a generic case of...
Python 3 don't support the 2to3 in the setup.py anymore. I update the master branch and release the version 1.4.5 with files that should now work directly with Python 3....
1/ Yes, you need two task. I also advise you to use python object to create the task. 2/ You are using the same clock, but you also need to...
On macOS, you are using the nidaqmxbase driver and not the nidaqmx one. Only a subset of functions are available, and WriteAnalogScalarF64 is not. In your case you should probably...
Dear Michael, In order to run example with Python 3.3, you need to use bytecode string instead of string. The conversion is not made automatically. In the example, replace "cDAQ1Mod1/ai0"...