mirror of
https://github.com/modelec/TCPSocketServer.git
synced 2026-03-22 07:30:42 +01:00
angle
This commit is contained in:
@@ -242,7 +242,9 @@ void TCPServer::handleMessage(const std::string& message, int clientSocket)
|
||||
}
|
||||
}
|
||||
else if (tokens[0] == "arduino" && tokens[2] == "set state") {
|
||||
this->isRobotMoving += (TCPUtils::startWith(tokens[3], "1") ? 0 : 1);
|
||||
if (TCPUtils::startWith(tokens[3], "1")) {
|
||||
this->isRobotMoving++;
|
||||
}
|
||||
}
|
||||
std::cout << "Received: " << message << std::endl;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user