MATLAB app designer, how to update value of a property in declared callback function
17 views (last 30 days)
Show older comments
Yuandi Wu
on 18 Jan 2022
Commented: Alessandro Livi
on 21 Jul 2024
Hello all,
I am rather new to MATLAB, and therefore a little unfamiliar with the app designer, apologies in advance.
I am trying to write a code that tracks the position of a stepper motor over serial communication. Currently, I have the setup such that it will callback the readSerialData Function everytime the terminator "CR" is reached.
Ideally I would like to access the value read. I wanted to save this value to the motorPos property of the app for use in separate functions later down the line. However, from tests, it seems that the value of app.motorPos does not update and remains the initial value of 0, as defined in the startup function. While it does display the correct value in the command window (from the disp(app.arduino) function), the value of the property app.arduino seem to remain 0, when called upon in later functions.
How should I go about updating the value of property motorPos?
Thanks,
Yuandi Wu
properties (Access = public)
arduino
motorPos
end
methods (Access = private)
function readSerialData(app,src)
app.motorPos = readline(src);
disp(app.motorPos);
end
end
% Callbacks that handle component events
methods (Access = private)
% Code that executes after component creation
function startupFcn(app)
delete(instrfindall);
app.arduino = serialport ("COM3", 9600, "Timeout", 0.1);
app.arduino.DataBits = 8;
configureTerminator(app.arduino,"CR")
configureCallback(app.arduino,"terminator",@readSerialData)
%initially, upon startup, display these values
app.motorPos = '0';
disp(app.motorPos)
end
2 Comments
Michael Van de Graaff
on 18 Jan 2022
does this help? https://www.mathworks.com/matlabcentral/answers/555832-how-to-configure-serialport-callback-in-app-designer?s_tid=answers_rc1-2_p2_MLT
Maybe this would work?
configureCallback(app.arduino,"terminator",@(src) readSerialData(app,src))
Accepted Answer
Michael Van de Graaff
on 22 Jan 2022
I put the following in a comment, and OP says it worked, so i'm copying this into an answer in the hopes that it can be accepted officially
------------------------------------------
does this help? https://www.mathworks.com/matlabcentral/answers/555832-how-to-configure-serialport-callback-in-app-designer?s_tid=answers_rc1-2_p2_MLT
Maybe this would work?
configureCallback(app.arduino,"terminator",@(src) readSerialData(app,src))
0 Comments
More Answers (1)
Mohammad Sami
on 18 Jan 2022
You can try the following.
configureCallback(app.arduino,"terminator",@app.readSerialData)
2 Comments
Alessandro Livi
on 21 Jul 2024
2 year later and still no definitive answer that works
Pick one or offer yet another that works:
function SerInput(app,src)
function SerInput(~,src)
Pick one or offer yet another that works: (MyCom is the serial port handle
app.MyCom.configureCallback("terminator",@SerInput);
configureCallback(app.MyCom,"terminator",@SerInput);
configureCallback(app.MyCom,"terminator",@app.MyInput); % answer 555832
% As recommended by staff in answer 555832 below above
configureCallback(app.MyCom,"terminator",@(src) MyInput(app,src));
Tried last option: App Designer is now stopping debug (returning to >Run) leaving my app running and NO error message there or in Command Window when I get a char from the MyCom
See Also
Categories
Find more on Develop Apps Using App Designer 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!