nidaqmx

Displacement vibration sensor using nidaqmx and python

Displacement vibration sensor using nidaqmx and python Question: I’m trying to make a program in python using tkinter. The user should be able to use a displacement vibration sensor or transducer. There are mainly two kinds of displacement sensors used for vibration analysis, the eddy probes, and accelerometers with double integration. The current notation to …

Total answers: 1

Continuous Acquistion with nidaqmx

Continuous Acquistion with nidaqmx Question: I am not being able to acquire continuos data from NI DAQ using nidaqxm on Python 3. I already acquired finite data with a similar code, although I can’t understand what I need to change to acquire data continuously. import nidaqmx from nidaqmx import constants from nidaqmx import stream_readers from …

Total answers: 1

typeError in Python when defining a input chanel of NI-DAQ

typeError in Python when defining a input chanel of NI-DAQ Question: Python code for Data Aqusition using NI-DAQ. Had downloaded NI-driver Error Traceback (most recent call last): File “C:UsersiconDesktopDAQ 1.0.py”, line 68, in <module> chan = ctypes.create_string_buffer(‘Dev1/ai0’) File “C:Python34libctypes__init__.py”, line 63, in create_string_buffer raise TypeError(init) TypeError: Dev1/ai0 I am a student. I was trying to …

Total answers: 1