fixed issue - two flywheel instances created a conflict
This commit is contained in:
@@ -7,7 +7,6 @@ import com.pedropathing.follower.Follower;
|
|||||||
public class Shooter {
|
public class Shooter {
|
||||||
|
|
||||||
Robot robot;
|
Robot robot;
|
||||||
Flywheel fly;
|
|
||||||
Turret turr;
|
Turret turr;
|
||||||
VelocityCommander commander;
|
VelocityCommander commander;
|
||||||
|
|
||||||
@@ -23,7 +22,6 @@ public class Shooter {
|
|||||||
|
|
||||||
public Shooter(Robot rob, MultipleTelemetry TELE, Follower follower, boolean redAlliance) {
|
public Shooter(Robot rob, MultipleTelemetry TELE, Follower follower, boolean redAlliance) {
|
||||||
this.robot = rob;
|
this.robot = rob;
|
||||||
this.fly = new Flywheel(rob);
|
|
||||||
this.turr = new Turret(rob);
|
this.turr = new Turret(rob);
|
||||||
this.follow = follower;
|
this.follow = follower;
|
||||||
this.commander = new VelocityCommander();
|
this.commander = new VelocityCommander();
|
||||||
|
|||||||
Reference in New Issue
Block a user