Clear Filters
Clear Filters

How to convert a legacy based interface code to a session based interface?

6 views (last 30 days)
function sm() object=daq.createSession('ni'); spec=addDigitalChannel(object,'Dev1','Port1/Line0:3','OutputOnly'); putvalue(spec,0); pattern=[5 6 10 9]; for i=1:25 putvalue(spec,pattern(1)); pause(0.3); putvalue(spec,pattern(2)); pause(0.3); putvalue(spec,pattern(3)); pause(0.3); putvalue(spec,pattern(4)); pause(0.3); end; putvalue(spec,0);
This is a code to run a stepper motor using MATLAB 2013. I need a MATLAB 2015 code for the same.

Accepted Answer

Sanket Karnik
Sanket Karnik on 14 Feb 2017
Edited: Sanket Karnik on 20 Mar 2017
I understand that you have code written in MATLAB using legacy interface provided by MATLAB Data Acquisition Toolbox and you want to convert that code to session based interface. Please refer the following link to see how to transition your code from legacy interface to session based interface: https://www.mathworks.com/help/daq/transition-your-code-to-session-based-interface.html
You can also refer to these release notes which describe the functions which were removed from legacy interface and their substitutes(if any) in session based interface: https://www.mathworks.com/help/daq/release-notes.html?rntext=putvalue&startrelease=R2015b&endrelease=R2016a&groupby=release&sortby=descending

More Answers (0)

Categories

Find more on Hardware Discovery and Setup in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!