How to adress channels independently in data acquisition toolbox session based interface

조회 수: 7 (최근 30일)
Hi,
I'm using data acquisition toolbox with the session based interface.
Is it possible, when using inpuntsinglescan and outputsinglescan, to adress lines independently? I'm scanning several sensors at the same time, and I want to perform a given action when a specific sensor displays a value independently of the other sensors values. When I use inputsinglescan I always get the values of all the channels I initialized, so for what I want to do I would have to define a if condition with the desired value in the channel i'm interested combined with all the other possibilities of values for the other channels.
Is there a better way to implement this?
Thank you in advance.

채택된 답변

Wael Hemdan
Wael Hemdan 2013년 4월 26일
Hi,
To access data on a per channel basis you need to index into the data array. For example, to look at the second channel's data you would do the following:
s = daq.createSession('ni')
s.addDigitalChannel('dev2', 'port0/line0:3', 'InputOnly')
s.addDigitalChannel('dev2', 'port0/line4:7', 'OutputOnly')
myOutputData = [0 0 0 0];
myInputData = s.inputSingleScan;
if myInputData(2) == 1
myOutputData = [1 1 1 1];
end
s.outputSingleScan(myOutputData);
Similarly, if you want to change only one output line based on the result from an input line, you can do the following:
if myInputData(1) == 1
myOutputData(3) = 0;
end
s.outputSingleScan(myOutputData)
- Wael Hemdan

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Simultaneous and Synchronized Operations에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by