Lamps in Matlab App Desinger

22 vues (au cours des 30 derniers jours)
Aqib Habib Memon
Aqib Habib Memon le 22 Oct 2022
Hello.
I am trying to do something simple i.e. to change the lamp color whenever the switch is pressed.
The app has multiple components i.e. groups as seen in the screen shot
I am using the following callback function for the switch.
% Value changed function: Switch2
function Switch2ValueChanged(app, event)
value_S2 = app.Switch2.Value;
if strcmp(value_S2,'On')
app.Lamp.Color='g';
else
app.Lamp.Color='r';
end
end
The problem is , whenever a run the app and press the switch, it becomes red and doesnt change its color to green.

Réponses (1)

Cris LaPierre
Cris LaPierre le 22 Oct 2022
Your code looks fine to me. A simple test app also works for me. Note that you want your lamp to turn green when it is turned on. By default, the lamp color is green to start with, and the switch by default is off. You can change the default setting of one to get the behavior you want.
I attached my test app.

Catégories

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

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by