|
@@ -56,9 +56,9 @@ void loop()
|
|
|
|
|
|
if(!stepper.run())
|
|
|
sendCommandResponse();
|
|
|
-
|
|
|
}
|
|
|
|
|
|
+
|
|
|
void initializeStepper()
|
|
|
{
|
|
|
SPI.begin();
|
|
@@ -79,6 +79,7 @@ void initializeStepper()
|
|
|
stepper.enableOutputs();
|
|
|
}
|
|
|
|
|
|
+
|
|
|
void parseCommand()
|
|
|
{
|
|
|
LOG("Parse command");
|
|
@@ -104,6 +105,7 @@ void parseCommand()
|
|
|
FF_SERIAL.read();
|
|
|
}
|
|
|
|
|
|
+
|
|
|
void processCommand(const char *cmd, const char *data)
|
|
|
{
|
|
|
switch (*cmd)
|
|
@@ -223,6 +225,7 @@ void processCommand(const char *cmd, const char *data)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+
|
|
|
void openFlipFlat()
|
|
|
{
|
|
|
if (coverStatus != OPENED)
|
|
@@ -265,6 +268,7 @@ void rotateMotor(int direction)
|
|
|
motorDirection = IDLE;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
void setupSerial()
|
|
|
{
|
|
|
|
|
@@ -284,6 +288,7 @@ void setupSerial()
|
|
|
LOG("FlipFlat Serial up and running");
|
|
|
}
|
|
|
|
|
|
+
|
|
|
void handleCoverButton()
|
|
|
{
|
|
|
switch (coverStatus)
|
|
@@ -301,6 +306,7 @@ void handleCoverButton()
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+
|
|
|
void sendCommandResponse()
|
|
|
{
|
|
|
switch (lastCommand)
|
|
@@ -361,6 +367,7 @@ void sendCommandResponse()
|
|
|
|
|
|
}
|
|
|
|
|
|
+
|
|
|
void setBrightness(int newBrightness)
|
|
|
{
|
|
|
analogWrite(PWM, newBrightness);
|