Acquiring and plotting continuous NI data doesn't work within app Designer. Please help.

2 次查看(过去 30 天)
My code for acquiring and plotting live data works well outside the app Designer. However, i would like to include it in an App where it is executed by pushing a button from the user.
This is my code:
if true
devices = daq.getDevices
%session erstellen
s = daq.createSession('ni')
addAnalogInputChannel(s,'DEV1',0, 'Voltage')
%abtastrate in Hz und Aufnahmedauer
s.Rate = 1000
s.DurationInSeconds = 5
% plottet soblad fesstgelegte Anzahl an Datenpunkten generiert ist
s.NotifyWhenDataAvailableExceeds = 10
lh = addlistener(s,'DataAvailable',@(src,event) plot(event.TimeStamps, event.Data))
s.startBackground();
end
This works well so far. But if i integrate it in a buttonpushed callback function within app Designer it doesn't work. Also it doesn't work if i try to plot it in UIAxes by adding plot(app.UIAxes, event.TimeStamps, event.Data)
Any help would be much appreciated. Thank you, Marvin

回答(1 个)

Andrei
Andrei 2018-8-8
Can you refer to "Data Acquisition Live" app, which can be downloaded from File Exchange.
This example app shows how to use Data Acquisition Toolbox and App Designer to build an app which:
  • acquires data from a DAQ device or sound card
  • displays a live view of acquired data
  • logs acquired data to a MAT file
  2 个评论
han xiao
han xiao 2019-6-11
Hello Mr.Ursache,
My name is Han. I`m a user of data acquisition toolbox and doing tests with live vibration signal. Your app design is very cool and useful, but still I have no idea on how to create a standalone application and deploy it on the target machine (without MATLAB installed).
That would be very kind of you, if you may give me some help. I`m very grateful!
Kind Regards
Han Xiao

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Develop Apps Using App Designer 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by