Lamps in Matlab App Desinger

조회 수: 22 (최근 30일)
Aqib Habib Memon
Aqib Habib Memon 2022년 10월 22일
답변: Cris LaPierre 2022년 10월 22일
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.

답변 (1개)

Cris LaPierre
Cris LaPierre 2022년 10월 22일
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.

카테고리

Help CenterFile 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!

Translated by