how can create Changing lamp color with start and stop button
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Amir Azadeh Ranjbar
el 21 de Abr. de 2022
Respondida: Amir Azadeh Ranjbar
el 6 de Mayo de 2022
0 comentarios
Respuesta aceptada
Geoff Hayes
el 21 de Abr. de 2022
@Amir Azadeh Ranjbar - you would need callback functions for your start and stop buttons. These callbacks would then change the colour of the lamp. Something like the following may work:
% Button pushed function: StartButton
function StartButtonPushed(app, event)
app.Lamp.Color = 'b'; % blue
end
% Button pushed function: StopButton
function StopButtonPushed(app, event)
app.Lamp.Color = 'r'; % red
end
Más respuestas (1)
Ver también
Categorías
Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!