MCPcopy Create free account
hub / github.com/LabPy/lantz / digital_input_lines

Method digital_input_lines

lantz/drivers/legacy/ni/daqmx/base.py:247–253  ·  view source on GitHub ↗

Return a tuple with the names of the digital input lines physical channels available on the device.

(self)

Source from the content-addressed store, hash-verified

245
246 @Feat(read_once=True)
247 def digital_input_lines(self):
248 """Return a tuple with the names of the digital input lines
249 physical channels available on the device.
250 """
251 err, buf = self.lib.GetDevDILines(*RetStr(default_buf_size))
252 names = tuple(n.strip() for n in buf.split(',') if n.strip())
253 return names
254
255 @Feat(read_once=True)
256 def digital_output_lines(self):

Callers

nothing calls this directly

Calls 1

RetStrClass · 0.90

Tested by

no test coverage detected