diff --git a/TCPServer.cpp b/TCPServer.cpp index fdde22f..424e3e8 100644 --- a/TCPServer.cpp +++ b/TCPServer.cpp @@ -235,7 +235,7 @@ void TCPServer::handleMessage(const std::string& message, int clientSocket) } } else if (tokens[0] == "arduino" && tokens[2] == "set state") { - this->isRobotMoving = TCPUtils::startWith(tokens[3], "0"); + this->isRobotMoving = TCPUtils::startWith(tokens[3], "1"); } std::cout << "Received: " << message << std::endl; }