X-Git-Url: https://git.realraum.at/?p=svn42.git;a=blobdiff_plain;f=firmware%2Ftuer.pde;h=cd4b57624a21164e45cccbe6e2a734818306ed98;hp=c4bfcb4ddf32924300bc43f9e7b116b7bda86daa;hb=5770ab5e75f7893fbea16358b58d546edfca531b;hpb=4bb3eba50f61cc7f57d0ad279ab310ea5368a88d diff --git a/firmware/tuer.pde b/firmware/tuer.pde index c4bfcb4..cd4b576 100644 --- a/firmware/tuer.pde +++ b/firmware/tuer.pde @@ -549,6 +549,7 @@ void setup() current_state = CLOSING; start_step_timer(); } + Serial.println("init complete"); } void loop() @@ -564,8 +565,8 @@ void loop() } else if (command == CMD_OPEN) { if(current_state == IDLE) { - if(is_opened()) - Serial.println("Already open"); + if(is_opened()) + Serial.println("Already open"); else { start_open(); Serial.println("Ok"); @@ -576,8 +577,8 @@ void loop() } else if (command == CMD_CLOSE) { if(current_state == IDLE) { - if(is_closed()) - Serial.println("Already closed"); + if(is_closed()) + Serial.println("Already closed"); else { start_close(); Serial.println("Ok"); @@ -588,11 +589,11 @@ void loop() } else if (command == CMD_TOGGLE) { if(current_state == IDLE) { - if(is_closed()) - start_open(); - else - start_close(); - Serial.println("Ok"); + if(is_closed()) + start_open(); + else + start_close(); + Serial.println("Ok"); } else Serial.println("Error: Operation in progress");