Effacer les filtres
Effacer les filtres

How to Turn LED blinking on and off using Toggle button?

3 vues (au cours des 30 derniers jours)
Sanjay Yadav
Sanjay Yadav le 1 Fév 2017
Commenté : Stephen23 le 14 Fév 2021
On a toggle button callback, I'm doing this:
while button_state == get(hObject,'Max')
writeDigitalPin(a,'D3',1);
writeDigitalPin(a, 'D6' ,0);
pause(.5);
writeDigitalPin(a,'D3',0);
writeDigitalPin(a, 'D6' ,1);
pause(.5);
end
if button_state == get(hObject,'Min')
writeDigitalPin(a, 'D3' ,0);
writeDigitalPin(a, 'D6' ,0);
end
Now problem is once LED starts blinking, they wont stop and blink continuously, even after I turn toggle button "off". Help me solving the logic.

Réponse acceptée

Image Analyst
Image Analyst le 1 Fév 2017
You're not updating button_state inside the loops. You need to do that
while button_state == handles.btnToggle.Max
writeDigitalPin(a,'D3',1);
writeDigitalPin(a, 'D6' ,0);
pause(.5);
writeDigitalPin(a,'D3',0);
writeDigitalPin(a, 'D6' ,1);
pause(.5);
% Update button status
button_state = handles.btnToggle.Value; % Or however you get it.
end
Same for the other while loop.
  1 commentaire
Sanjay Yadav
Sanjay Yadav le 2 Fév 2017
Thank you so much sir, it was a silly mistake thanks for pointing out.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Arduino Hardware dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by