Update after testing

hackerspace-green
Daid 2012-05-19 18:48:43 +02:00
parent d494688565
commit b3941fce5c
1 changed files with 2 additions and 2 deletions

View File

@ -1279,12 +1279,12 @@ void process_commands()
if (codenum > 0)
{
codenum += millis(); // keep track of when we started waiting
while(millis() < codenum && buttons == 0){
while(millis() < codenum && !CLICKED){
manage_heater();
manage_inactivity(1);
}
}else{
while(buttons == 0) {
while(!CLICKED) {
manage_heater();
manage_inactivity(1);
}