The video shows basic analog input voltage acquisition using DAQmx driver in Python. The Python version used is 3.10.0. The Python code used is given below.
import nidaqmx
with nidaqmx.Task() as task:
'# input device name as in NI-MAX
task.ai_channels.add_ai_voltage_chan("Dev2/ai0")
task.read()
#python #nidaqmx #pythondaqmx #daqmx