-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
Milestone
Description
Some of the defenses have different requirements such as having the arm in safe mode or maybe driving different speeds. We should make a DefenseType Enum you can pass into the auto commands. Then we can do something like:
if(this.defenseType == DefenseType.CDF) {
this.maxSpeed = something;
this.maxAccel = something;
this.armPosition = safe;
}else if...
We could even integrate this with the app, so if a path segment crosses a defense we automatically use that defense's settings for that part of the path.
Reactions are currently unavailable