Skip to content

Commit

Permalink
Added L and K in reefLocation values. Refactored reefLocation enum to…
Browse files Browse the repository at this point in the history
… correspond orbitals to integers that will be submitted to the robot (i.e. J = 0, I = 1, etc.). Note: the values might start at J = 1 so be aware in future when calling reefLocation.
  • Loading branch information
Acrenos committed Jan 10, 2025
1 parent 130c3da commit 743cde7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,18 @@ class AutoScoreCommandConstants() {


enum class reefLocation {
PointA,
PointB,
PointC,
PointD,
PointE,
PointF,
PointG,
PointH,
PointJ,
PointI,
PointJ
PointH,
PointG,
PointF,
PointE,
PointD,
PointC,
PointB,
PointA,
PointL,
PointK
}

enum class reefLevel {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ class AutoScoreCommands (
AutoScoreCommandConstants.reefLocation.PointH -> TODO()
AutoScoreCommandConstants.reefLocation.PointI -> TODO()
AutoScoreCommandConstants.reefLocation.PointJ -> TODO()
AutoScoreCommandConstants.reefLocation.PointL -> TODO()
AutoScoreCommandConstants.reefLocation.PointK -> TODO()
}
}
/*
Expand Down

0 comments on commit 743cde7

Please sign in to comment.