PyDAQmx icon indicating copy to clipboard operation
PyDAQmx copied to clipboard

Interface to National Instrument NIDAQmx driver

Results 27 PyDAQmx issues
Sort by recently updated
recently updated
newest added

We need help regarding using this package for continuous data acquisition using NI cDAQ chassis. We have a NI9184 chassis with a NI9234 module and NI9421 DI module. We would...

Hi, first, thanks for the module I love python and this helps me a lot. I'm using PyDAQmx with openSuse and DAQmxbase 14.0.0. It works great with the basic functionality,...

the `pointer_type_array` regex should be split in two, into `pointer_type_const_array` and `pointer_type_array`

I was looking for a forum to post this question but could not find one. I am trying to get size of string for the device names using the following...

Following on from [this comment](https://github.com/clade/PyDAQmx/issues/30#issuecomment-233812704). So instead of ``` python task.CfgSampClkTiming( source=None, rate=1, activeEdge=daq.Val_Rising, sampleMode=daq.Val_FiniteSamps, sampsPerChan=1 ) ``` it would become ``` python task.cfg_sample_clk_timing( source=None, rate=1, active_edge=PyDAQmx.VAL_RISING, sample_mode=PyDAQmx.VAL_FINITE_SAMPS, samps_per_chan=1 )...

That way instead of doing this and causing arbitrary namespace pollution: ``` python from PyDAQmx import * DAQmx_Some_Function(DAQmx_SomeConstant) ``` We can use the safer ``` python import PyDAQmx PyDAQmx.Some_Function(PyDAQmx.SomeConstant) ```

Hi, A suggestion: it would be useful to have a brief statement concerning Python 3 support on the project's website. The installation page currently says: "It has been reported that...

Hello, I am currently having an issue trying to write the code for the digital input and outputs of the examples and acquire data. If you could please help that...

Hi, I wrote a class to to synchronize the Analog Inputs and Outputs of an NI PCI6221 card. Things were working just fine, but when we tried to run this...