How to display the current value of a TagetPC-Signal in a numeric edit field (App Designer) and update the value automatically every timestep ?
11 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I tried to display a realtime value of my TargetPC on the app designer by the following code:
% Value changed function: AEditField
function AEditFieldValueChanged(app, event)
A= app.AEditField.Value;
app.AEditField.Value = getsignal(tg,'Path',1)
end
It works, but unfortunately i have to press enter in the EditField to update the value. I just want to display the current realtime value on my GUI.
0 Commenti
Risposta accettata
Più risposte (1)
Jonas
il 9 Lug 2021
- You need to create a timer object
- Attach a function call to the timer object
- Put your code to assign the realtime value to the EditField in the function
Vedere anche
Categorie
Scopri di più su Develop Apps Using App Designer in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!