Use NI USB 6001 without the Data Acquisition Toolbox
45 ビュー (過去 30 日間)
古いコメントを表示
I have a measurement system running on Matlab 2014a on an old laboratory computer. I purchased an NI USB 6001 to produce an analog output using that lab computer. The issue is that due to security reasons, the company prohibits to connect that lab PC to the internet, which makes it difficult to install the data acquisition toolbox needed to interface matlab with the NI USB 6001.
Is it possible to communicate with the NI USB 6001 card with matlab, but without the data acquisition toolbox?
1 件のコメント
Mario Malic
2023 年 8 月 31 日
https://uk.mathworks.com/matlabcentral/fileexchange/45086-data-acquisition-toolbox-support-package-for-national-instruments-ni-daqmx-devices and this https://uk.mathworks.com/matlabcentral/answers/489580-why-does-data-acquisition-toolbox-support-package-for-national-instruments-ni-daqmx-devices-fail-t say that you should be able to only install NI DAQmx for your MATLAB version and it should work.
回答 (1 件)
chrisw23
2023 年 10 月 26 日
It is, using the .net DAQmx driver...some code lines ...
NET.addAssembly('NationalInstruments.Common');
NET.addAssembly('NationalInstruments.DAQmx');
import NationalInstruments.DAQmx.*;
obj.DaqSystem = NationalInstruments.DAQmx.DaqSystem(); % init DAQ System
...
function device = loadDevice(obj,deviceName)
% try to load requested device by alias
devIndex = obj.Devices.DeviceID == deviceName;
if any(devIndex)
obj.CurrentDevice = obj.DaqSystem.Local.LoadDevice(obj.Devices.DeviceID(devIndex));
else
assert(false,"Error@DAQmxBase load device failed " + newline + "devices found are " + obj.Devices.DeviceID.join)
end
device = obj.CurrentDevice;
end
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Data Acquisition Toolbox Supported Hardware についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!