Ejemplo n.º 1
0
Archivo: daqmx.py Proyecto: epage/DAQpy
def get_daqmx_update_version():
   return utils.get_scalar(c_system.DAQmxGetSysNIDAQUpdateVersion, ctypes.c_uint32)
Ejemplo n.º 2
0
Archivo: daqmx.py Proyecto: epage/DAQpy
def get_daqmx_minor_version():
   return utils.get_scalar(c_system.DAQmxGetSysNIDAQMinorVersion, ctypes.c_uint32)
Ejemplo n.º 3
0
Archivo: daqmx.py Proyecto: epage/DAQpy
def get_physical_chan_bool_attribute(devName, attrId):
   value = utils.get_scalar(c_daqmx.DAQmxGetPhysicalChanAttribute, ctypes.c_uint32, ctypes.c_char_p(devName), ctypes.c_int32(attrId))
   return bool(value)
Ejemplo n.º 4
0
Archivo: daqmx.py Proyecto: epage/DAQpy
def get_physical_chan_double_attribute(devName, attrId):
   return utils.get_scalar(c_daqmx.DAQmxGetPhysicalChanAttribute, ctypes.c_double, devName, ctypes.c_int32(attrId))
Ejemplo n.º 5
0
Archivo: daqmx.py Proyecto: epage/DAQpy
def get_device_bool_attribute(devName, attrId):
   value = utils.get_scalar(c_daqmx.DAQmxGetDeviceAttribute, ctypes.c_uint32, ctypes.c_char_p(devName), ctypes.c_int32(attrId))
   return bool(value)
Ejemplo n.º 6
0
Archivo: daqmx.py Proyecto: epage/DAQpy
def get_device_double_attribute(devName, attrId):
   return utils.get_scalar(c_daqmx.DAQmxGetDeviceAttribute, ctypes.c_double, devName, ctypes.c_int32(attrId))