Azzera filtri
Azzera filtri

Any master willing to guide a beginner to code the app of 2 input and lamp as output (appdesigner)?

1 visualizzazione (ultimi 30 giorni)
The condition is either input entry is >= 10, then the lamp will turn Red, otherwise turn green.
Your kindness will be deeply appreciated and paid it forward.

Risposta accettata

Kevin Chng
Kevin Chng il 11 Ott 2018
Modificato: Kevin Chng il 11 Ott 2018
Hi engchai Ang,
I guess you have tried your best to do it. Refer to my code, paste this code in your callback function
a = app.Input1EditField.Value;
b = app.Input2EditField.Value;
if a>=10 || b>=10
app.Lamp.Color = [1 0 0]
else
app.Lamp.Color = [0 1 0]
end
However, I have attached a .m file for you.
.mlapp file is not allowed to be uploaded here. Hence, i copy the code and paste it in .m file for you.

Più risposte (0)

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!

Translated by