-
Notifications
You must be signed in to change notification settings - Fork 190
Expand file tree
/
Copy path_digital_single_channel_reader.py
More file actions
447 lines (372 loc) · 19.9 KB
/
_digital_single_channel_reader.py
File metadata and controls
447 lines (372 loc) · 19.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
from __future__ import annotations
import numpy
from nidaqmx._feature_toggles import WAVEFORM_SUPPORT, requires_feature
from nidaqmx.constants import FillMode, READ_ALL_AVAILABLE
from nitypes.waveform import DigitalWaveform
from ._channel_reader_base import ChannelReaderBase
class DigitalSingleChannelReader(ChannelReaderBase):
"""
Reads samples from a digital input channel in an NI-DAQmx task.
"""
def read_many_sample_port_byte(
self, data, number_of_samples_per_channel=READ_ALL_AVAILABLE,
timeout=10.0):
"""
Reads one or more 8-bit unsigned integer samples from a single
digital input channel in a task.
Use this method for devices with up to 8 lines per port.
This read method accepts a preallocated NumPy array to hold
the samples requested, which can be advantageous for performance
and interoperability with NumPy and SciPy.
Passing in a preallocated array is valuable in continuous
acquisition scenarios, where the same array can be used
repeatedly in each call to the method.
Args:
data (numpy.ndarray): Specifies a preallocated 1D NumPy
array of 8-bit unsigned integer values to hold the
samples requested.
Each element in the array corresponds to a sample from
the channel. The size of the array must be large enough
to hold all requested samples from the channel in the
task; otherwise, an error is thrown.
number_of_samples_per_channel (Optional[int]): Specifies the
number of samples to read.
If you set this input to nidaqmx.constants.
READ_ALL_AVAILABLE, NI-DAQmx determines how many samples
to read based on if the task acquires samples
continuously or acquires a finite number of samples.
If the task acquires samples continuously and you set
this input to nidaqmx.constants.READ_ALL_AVAILABLE, this
method reads all the samples currently available in the
buffer.
If the task acquires a finite number of samples and you
set this input to nidaqmx.constants.READ_ALL_AVAILABLE,
the method waits for the task to acquire all requested
samples, then reads those samples. If you set the
"read_all_avail_samp" property to True, the method reads
the samples currently available in the buffer and does
not wait for the task to acquire all requested samples.
timeout (Optional[float]): Specifies the amount of time in
seconds to wait for samples to become available. If the
time elapses, the method returns an error and any
samples read before the timeout elapsed. The default
timeout is 10 seconds. If you set timeout to
nidaqmx.constants.WAIT_INFINITELY, the method waits
indefinitely. If you set timeout to 0, the method tries
once to read the requested samples and returns an error
if it is unable to.
Returns:
int:
Indicates the number of samples acquired by each channel.
NI-DAQmx returns a single value because this value is the
same for all channels.
"""
number_of_samples_per_channel = (
self._task._calculate_num_samps_per_chan(
number_of_samples_per_channel))
self._verify_array(data, number_of_samples_per_channel, False, True)
_, samps_per_chan_read = self._interpreter.read_digital_u8(
self._handle, number_of_samples_per_channel, timeout,
FillMode.GROUP_BY_CHANNEL.value, data)
return samps_per_chan_read
def read_many_sample_port_uint16(
self, data, number_of_samples_per_channel=READ_ALL_AVAILABLE,
timeout=10.0):
"""
Reads one or more 16-bit unsigned integer samples from a single
digital input channel in a task.
Use this method for devices with up to 16 lines per port.
This read method accepts a preallocated NumPy array to hold
the samples requested, which can be advantageous for performance
and interoperability with NumPy and SciPy.
Passing in a preallocated array is valuable in continuous
acquisition scenarios, where the same array can be used
repeatedly in each call to the method.
Args:
data (numpy.ndarray): Specifies a preallocated 1D NumPy
array of 16-bit unsigned integer values to hold the
samples requested.
Each element in the array corresponds to a sample from
the channel. The size of the array must be large enough
to hold all requested samples from the channel in the
task; otherwise, an error is thrown.
number_of_samples_per_channel (Optional[int]): Specifies the
number of samples to read.
If you set this input to nidaqmx.constants.
READ_ALL_AVAILABLE, NI-DAQmx determines how many samples
to read based on if the task acquires samples
continuously or acquires a finite number of samples.
If the task acquires samples continuously and you set
this input to nidaqmx.constants.READ_ALL_AVAILABLE, this
method reads all the samples currently available in the
buffer.
If the task acquires a finite number of samples and you
set this input to nidaqmx.constants.READ_ALL_AVAILABLE,
the method waits for the task to acquire all requested
samples, then reads those samples. If you set the
"read_all_avail_samp" property to True, the method reads
the samples currently available in the buffer and does
not wait for the task to acquire all requested samples.
timeout (Optional[float]): Specifies the amount of time in
seconds to wait for samples to become available. If the
time elapses, the method returns an error and any
samples read before the timeout elapsed. The default
timeout is 10 seconds. If you set timeout to
nidaqmx.constants.WAIT_INFINITELY, the method waits
indefinitely. If you set timeout to 0, the method tries
once to read the requested samples and returns an error
if it is unable to.
Returns:
int:
Indicates the number of samples acquired by each channel.
NI-DAQmx returns a single value because this value is the
same for all channels.
"""
number_of_samples_per_channel = (
self._task._calculate_num_samps_per_chan(
number_of_samples_per_channel))
self._verify_array(data, number_of_samples_per_channel, False, True)
_, samps_per_chan_read = self._interpreter.read_digital_u16(
self._handle, number_of_samples_per_channel, timeout,
FillMode.GROUP_BY_CHANNEL.value, data)
return samps_per_chan_read
def read_many_sample_port_uint32(
self, data, number_of_samples_per_channel=READ_ALL_AVAILABLE,
timeout=10.0):
"""
Reads one or more 32-bit unsigned integer samples from a single
digital input channel in a task.
Use this method for devices with up to 32 lines per port.
This read method accepts a preallocated NumPy array to hold
the samples requested, which can be advantageous for performance
and interoperability with NumPy and SciPy.
Passing in a preallocated array is valuable in continuous
acquisition scenarios, where the same array can be used
repeatedly in each call to the method.
Args:
data (numpy.ndarray): Specifies a preallocated 1D NumPy
array of 32-bit unsigned integer values to hold the
samples requested.
Each element in the array corresponds to a sample from
the channel. The size of the array must be large enough
to hold all requested samples from the channel in the
task; otherwise, an error is thrown.
number_of_samples_per_channel (Optional[int]): Specifies the
number of samples to read.
If you set this input to nidaqmx.constants.
READ_ALL_AVAILABLE, NI-DAQmx determines how many samples
to read based on if the task acquires samples
continuously or acquires a finite number of samples.
If the task acquires samples continuously and you set
this input to nidaqmx.constants.READ_ALL_AVAILABLE, this
method reads all the samples currently available in the
buffer.
If the task acquires a finite number of samples and you
set this input to nidaqmx.constants.READ_ALL_AVAILABLE,
the method waits for the task to acquire all requested
samples, then reads those samples. If you set the
"read_all_avail_samp" property to True, the method reads
the samples currently available in the buffer and does
not wait for the task to acquire all requested samples.
timeout (Optional[float]): Specifies the amount of time in
seconds to wait for samples to become available. If the
time elapses, the method returns an error and any
samples read before the timeout elapsed. The default
timeout is 10 seconds. If you set timeout to
nidaqmx.constants.WAIT_INFINITELY, the method waits
indefinitely. If you set timeout to 0, the method tries
once to read the requested samples and returns an error
if it is unable to.
Returns:
int:
Indicates the number of samples acquired by each channel.
NI-DAQmx returns a single value because this value is the
same for all channels.
"""
number_of_samples_per_channel = (
self._task._calculate_num_samps_per_chan(
number_of_samples_per_channel))
self._verify_array(data, number_of_samples_per_channel, False, True)
_, samps_per_chan_read = self._interpreter.read_digital_u32(
self._handle, number_of_samples_per_channel, timeout,
FillMode.GROUP_BY_CHANNEL.value, data)
return samps_per_chan_read
def read_one_sample_multi_line(self, data, timeout=10):
"""
Reads a single boolean sample from a single digital input
channel in a task. The channel can contain multiple digital
lines.
This read method accepts a preallocated NumPy array to hold the
samples requested, which can be advantageous for performance and
interoperability with NumPy and SciPy.
Passing in a preallocated array is valuable in continuous
acquisition scenarios, where the same array can be used
repeatedly in each call to the method.
Args:
data (numpy.ndarray): Specifies a preallocated 1D NumPy
array of boolean values to hold the samples requested.
Each element in the array corresponds to a sample from
a line in the channel. The size of the array must be
large enough to hold all requested samples from the
channel in the task; otherwise, an error is thrown.
timeout (Optional[float]): Specifies the amount of time in
seconds to wait for samples to become available. If the
time elapses, the method returns an error and any
samples read before the timeout elapsed. The default
timeout is 10 seconds. If you set timeout to
nidaqmx.constants.WAIT_INFINITELY, the method waits
indefinitely. If you set timeout to 0, the method tries
once to read the requested samples and returns an error
if it is unable to.
"""
self._verify_array_digital_lines(data, False, True)
_, samps_per_chan_read, num_bytes_per_samp = self._interpreter.read_digital_lines(
self._handle, 1, timeout, FillMode.GROUP_BY_CHANNEL.value, data)
def read_one_sample_one_line(self, timeout=10):
"""
Reads a single boolean sample from a single digital input
channel in a task. The channel can contain only one digital
line.
Args:
timeout (Optional[float]): Specifies the amount of time in
seconds to wait for samples to become available. If the
time elapses, the method returns an error and any
samples read before the timeout elapsed. The default
timeout is 10 seconds. If you set timeout to
nidaqmx.constants.WAIT_INFINITELY, the method waits
indefinitely. If you set timeout to 0, the method tries
once to read the requested samples and returns an error
if it is unable to.
Returns:
bool:
Indicates a single boolean sample from the task.
"""
data = numpy.zeros(1, dtype=bool)
_, samps_per_chan_read, num_bytes_per_samp= self._interpreter.read_digital_lines(
self._handle, 1, timeout, FillMode.GROUP_BY_CHANNEL.value, data)
return bool(data[0])
def read_one_sample_port_byte(self, timeout=10):
"""
Reads a single 8-bit unsigned integer sample from a single
digital input channel in a task.
Use this method for devices with up to 8 lines per port.
Args:
timeout (Optional[float]): Specifies the amount of time in
seconds to wait for samples to become available. If the
time elapses, the method returns an error and any
samples read before the timeout elapsed. The default
timeout is 10 seconds. If you set timeout to
nidaqmx.constants.WAIT_INFINITELY, the method waits
indefinitely. If you set timeout to 0, the method tries
once to read the requested samples and returns an error
if it is unable to.
Returns:
int:
Indicates a single 8-bit unsigned integer sample from the
task.
"""
data = numpy.zeros(1, dtype=numpy.uint8)
_, samps_per_chan_read = self._interpreter.read_digital_u8(
self._handle, 1, timeout, FillMode.GROUP_BY_CHANNEL.value, data)
return int(data[0])
def read_one_sample_port_uint16(self, timeout=10):
"""
Reads a single 16-bit unsigned integer sample from a single
digital input channel in a task.
Use this method for devices with up to 16 lines per port.
Args:
timeout (Optional[float]): Specifies the amount of time in
seconds to wait for samples to become available. If the
time elapses, the method returns an error and any
samples read before the timeout elapsed. The default
timeout is 10 seconds. If you set timeout to
nidaqmx.constants.WAIT_INFINITELY, the method waits
indefinitely. If you set timeout to 0, the method tries
once to read the requested samples and returns an error
if it is unable to.
Returns:
int:
Indicates a single 16-bit unsigned integer sample from the
task.
"""
data = numpy.zeros(1, dtype=numpy.uint16)
_, samps_per_read_chan = self._interpreter.read_digital_u16(
self._handle, 1, timeout, FillMode.GROUP_BY_CHANNEL.value, data)
return int(data[0])
def read_one_sample_port_uint32(self, timeout=10):
"""
Reads a single 32-bit unsigned integer sample from a single
digital input channel in a task.
Use this method for devices with up to 32 lines per port.
Args:
timeout (Optional[float]): Specifies the amount of time in
seconds to wait for samples to become available. If the
time elapses, the method returns an error and any
samples read before the timeout elapsed. The default
timeout is 10 seconds. If you set timeout to
nidaqmx.constants.WAIT_INFINITELY, the method waits
indefinitely. If you set timeout to 0, the method tries
once to read the requested samples and returns an error
if it is unable to.
Returns:
int:
Indicates a single 32-bit unsigned integer sample from the
task.
"""
return self._interpreter.read_digital_scalar_u32(self._handle, timeout)
@requires_feature(WAVEFORM_SUPPORT)
def read_waveform(
self,
waveform: DigitalWaveform[numpy.uint8],
number_of_samples_per_channel: int = READ_ALL_AVAILABLE,
timeout: float = 10.0,
) -> int:
"""
Reads one or more digital samples from a single digital input
channel into a waveform.
Args:
waveform (DigitalWaveform[numpy.uint8]): Specifies a
preallocated DigitalWaveform object to hold the samples
requested.
number_of_samples_per_channel (Optional[int]): Specifies the
number of samples to read.
If you set this input to nidaqmx.constants.
READ_ALL_AVAILABLE, NI-DAQmx determines how many samples
to read based on if the task acquires samples
continuously or acquires a finite number of samples.
If the task acquires samples continuously and you set
this input to nidaqmx.constants.READ_ALL_AVAILABLE, this
method reads all the samples currently available in the
buffer.
If the task acquires a finite number of samples and you
set this input to nidaqmx.constants.READ_ALL_AVAILABLE,
the method waits for the task to acquire all requested
samples, then reads those samples. If you set the
"read_all_avail_samp" property to True, the method reads
the samples currently available in the buffer and does
not wait for the task to acquire all requested samples.
timeout (Optional[float]): Specifies the amount of time in
seconds to wait for samples to become available. If the
time elapses, the method returns an error and any
samples read before the timeout elapsed. The default
timeout is 10 seconds. If you set timeout to
nidaqmx.constants.WAIT_INFINITELY, the method waits
indefinitely. If you set timeout to 0, the method tries
once to read the requested samples and returns an error
if it is unable to.
Returns:
int:
Indicates the number of samples acquired by each channel.
NI-DAQmx returns a single value because this value is the
same for all channels.
"""
number_of_samples_per_channel = (
self._task._calculate_num_samps_per_chan(
number_of_samples_per_channel))
return self._interpreter.read_digital_waveform(
self._handle,
number_of_samples_per_channel,
timeout,
waveform,
self._in_stream.waveform_attribute_mode
)