From e85fe397784f9f92e3744407113afa1c31cdffc4 Mon Sep 17 00:00:00 2001 From: ackimixs Date: Thu, 2 May 2024 12:10:26 +0200 Subject: [PATCH] checkpoint plants --- TCPServer.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/TCPServer.cpp b/TCPServer.cpp index 712306a..21d7d47 100644 --- a/TCPServer.cpp +++ b/TCPServer.cpp @@ -869,7 +869,7 @@ void TCPServer::findAndGoFlower(const StratPattern sp) { this->setSpeed(200); if (team == BLUE) { if (sp == TAKE_FLOWER_TOP) { - this->go(1000, 210); + this->go(1000, 250); awaitRobotIdle(); this->setSpeed(180); @@ -878,7 +878,7 @@ void TCPServer::findAndGoFlower(const StratPattern sp) { this->setSpeed(200); } else if (sp == TAKE_FLOWER_BOTTOM) { - this->go(1000, 1700); + this->go(1000, 1750); awaitRobotIdle(); this->setSpeed(180); @@ -890,7 +890,7 @@ void TCPServer::findAndGoFlower(const StratPattern sp) { } } else if (team == YELLOW) { if (sp == TAKE_FLOWER_TOP) { - this->go(2000, 210); + this->go(2000, 250); awaitRobotIdle(); this->setSpeed(180); @@ -899,7 +899,7 @@ void TCPServer::findAndGoFlower(const StratPattern sp) { this->setSpeed(200); } else if (sp == TAKE_FLOWER_BOTTOM) { - this->go(2000, 1700); + this->go(2000, 1750); awaitRobotIdle(); this->setSpeed(180);