MATLAB app designer, how to update value of a property in declared callback function
조회 수: 17 (최근 30일)
이전 댓글 표시
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
Michael Van de Graaff
2022년 1월 18일
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))
채택된 답변
Michael Van de Graaff
2022년 1월 22일
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
추가 답변 (1개)
Mohammad Sami
2022년 1월 18일
You can try the following.
configureCallback(app.arduino,"terminator",@app.readSerialData)
댓글 수: 2
Alessandro Livi
2024년 7월 21일
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
참고 항목
카테고리
Help Center 및 File 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!