Return a tuple with the names of the digital input lines physical channels available on the device.
(self)
| 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): |