Team3256 / myWB-flutter

An iOS + Android App to be utilized by FRC Team 3256 for inventory, attendance tracking, and scouting
8 stars 1 forks source link

Scouting State Management #4

Closed BK1031 closed 5 years ago

BK1031 commented 5 years ago

Bridge the Sandstorm and Teleop states via a Scouting State class. This way we can track what field elements a robot currently posesses when the Sandstorm period ends and the app transitions to Teleop.

class ScoutingState {
  String object;
  double startTime;
  double cycleTime;
  String intakeLocation;

  ScoutingState(this.object, this.startTime, this.cycleTime, this.intakeLocation);
}