How to convert a legacy based interface code to a session based interface?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Aiswarya Balakrishnan
el 11 de Feb. de 2017
Editada: Sanket Karnik
el 20 de Mzo. de 2017
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.
0 comentarios
Respuesta aceptada
Sanket Karnik
el 14 de Feb. de 2017
Editada: Sanket Karnik
el 20 de Mzo. de 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
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Motor Drives en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!