how can create Changing lamp color with start and stop button
    5 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
Risposta accettata
  Geoff Hayes
      
      
 il 21 Apr 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
Più risposte (1)
Vedere anche
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!


