Skip to content

Commit

Permalink
Squashed commit of the following:
Browse files Browse the repository at this point in the history
commit 2f7d77e
Merge: 5bf3fb8 e4f26a7
Author: Emiel Steerneman <[email protected]>
Date:   Mon Jul 31 22:17:21 2023 +0200

    Merge pull request #89 from RoboTeamTwente/update/headless-mode

    Make sure that robots drive without GUI

commit e4f26a7
Author: emiel steerneman <[email protected]>
Date:   Mon Jul 31 00:06:14 2023 +0200

    Make sure that robots drive without GUI
  • Loading branch information
emielsteerneman committed Jul 31, 2023
1 parent 61db147 commit a049175
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions roboteam_ai/src/interface/api/Output.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
namespace rtt::ai::interface {

// these values are default initialized here, but will be updated once mainWidget.cpp constructs the PID widget.
pidVals Output::numTreePID = pidVals(0.0, 0.0, 0.0);
pidVals Output::receivePID = pidVals(0.0, 0.0, 0.0);
pidVals Output::interceptPID = pidVals(0.0, 0.0, 0.0);
pidVals Output::keeperPID = pidVals(0.0, 0.0, 0.0);
pidVals Output::keeperInterceptPID = pidVals(0.0, 0.0, 0.0);
pidVals Output::numTreePID = Constants::standardNumTreePID();
pidVals Output::receivePID = Constants::standardReceivePID();
pidVals Output::interceptPID = Constants::standardInterceptPID();
pidVals Output::keeperPID = Constants::standardKeeperPID();
pidVals Output::keeperInterceptPID = Constants::standardKeeperInterceptPID();

rtt::Vector2 Output::markerPosition = {0, 0}; // initialize on middle of the field
bool Output::useRefereeCommands = false;
Expand Down

0 comments on commit a049175

Please sign in to comment.