banner mission

This commit is contained in:
acki
2025-05-30 09:16:11 -04:00
parent abe236ce76
commit 94fb99a0f4
2 changed files with 4 additions and 4 deletions

View File

@@ -27,7 +27,7 @@ namespace Modelec
{
GO_TO_FRONT,
DEPLOY_BANNER,
WAIT_5_SECONDS,
WAIT_2_SECONDS,
UNDEPLOY_BANNER,
GO_FORWARD,
DONE

View File

@@ -61,14 +61,14 @@ namespace Modelec
case DEPLOY_BANNER:
{
if ((node_->now() - deploy_time_).seconds() >= 5)
if ((node_->now() - deploy_time_).seconds() >= 2)
{
step_ = WAIT_5_SECONDS;
step_ = WAIT_2_SECONDS;
}
}
break;
case WAIT_5_SECONDS:
case WAIT_2_SECONDS:
{
action_executor_->UndeployBanner();