Add listener() or a callback function to app designer?

33 vues (au cours des 30 derniers jours)
Jay Vaidya
Jay Vaidya le 7 Juin 2021
Modifié(e) : Mohammad Sami le 24 Juin 2021
I want to sense something continuously in my GUI (along with other functionalities of the GUI like all other buttons have different functionalities). I was wondering how to add a listener to my GUI. I would be using a read function to read a bit state of my microcontroller. However, the app designer architecture is not allowing me to edit all the part of the code and hence I am not sure how to proceed with making a function which can continuously sense() one input and then if any other button is pressed then the GUI should enter into the button_callback() function di the job and get back to the sense() function. In other words, I want all the other stuff of my GUI to be as an interrupt and one of the main parts of the code should be the sense() function.
Please let me know your inputs.
Thanks, in advance!
  3 commentaires
Vimal Rathod
Vimal Rathod le 23 Juin 2021
Try looking into this link which talks about interrupting callbacks.
Mohammad Sami
Mohammad Sami le 24 Juin 2021
Modifié(e) : Mohammad Sami le 24 Juin 2021
Another option for you, if you have parallel processing toolbox is to start the parpool. Then you can use the parfeval function to run your sense function on the parpool. The sense function can use a data queue to send the data back to the main thread. Your GUI can then have a callback to update itself once it receives new data in the data queue. The rest of your GUI can then run normally.

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange

Produits


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by