|
@@ -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:
|