Ver código fonte

Minor updates

Anton Van Gorp 1 ano atrás
pai
commit
6abeb5154a
1 arquivos alterados com 10 adições e 8 exclusões
  1. 10 8
      src/FlipFlat.cpp

+ 10 - 8
src/FlipFlat.cpp

@@ -49,9 +49,9 @@ void loop()
     LOG("Command received");
     parseCommand();
   }
-  sendCommandResponse();
 
-  stepper.run();
+  if(!stepper.run())
+    sendCommandResponse();
 
 }
 
@@ -309,19 +309,21 @@ void sendCommandResponse()
     break;
     
   case OPEN:
-    if (stepper.distanceToGo() == 0)
-    {
+    //if (stepper.distanceToGo() == 0)
+    //{
+      coverStatus = OPENED;
       FF_SERIAL << F("*O") << deviceId << F("OOO\n");
       lastCommand = NONE;
-    }
+    //}
     break;
 
   case CLOSE:
-    if (stepper.distanceToGo() == 0)
-    {
+    //if (stepper.distanceToGo() == 0)
+    //{
+      coverStatus = CLOSED;
       FF_SERIAL << F("*C") << deviceId << F("OOO\n");
       lastCommand = NONE;
-    }
+    //}
     break;
 
   case LIGHT_ON: