From: niyatisriram Date: Wed, 17 Feb 2016 19:16:21 +0000 (-0800) Subject: fixed merge conflict in Robot.java X-Git-Url: http://challenge-bot.com/repos/?p=3501%2Fstronghold-2016;a=commitdiff_plain;h=c63ba9b9649deb7b4441f318a578c638cb26ebb9 fixed merge conflict in Robot.java --- c63ba9b9649deb7b4441f318a578c638cb26ebb9 diff --cc src/org/usfirst/frc/team3501/robot/Robot.java index 8fd099fb,99f66213..80d78676 --- a/src/org/usfirst/frc/team3501/robot/Robot.java +++ b/src/org/usfirst/frc/team3501/robot/Robot.java @@@ -1,7 -1,7 +1,6 @@@ package org.usfirst.frc.team3501.robot; import org.usfirst.frc.team3501.robot.Constants.Defense; - import org.usfirst.frc.team3501.robot.sensors.GyroLib; -import org.usfirst.frc.team3501.robot.sensors.Photogate; import org.usfirst.frc.team3501.robot.subsystems.DefenseArm; import org.usfirst.frc.team3501.robot.subsystems.DriveTrain; import org.usfirst.frc.team3501.robot.subsystems.IntakeArm; @@@ -27,11 -26,10 +25,8 @@@ public class Robot extends IterativeRob // Sendable Choosers send a drop down menu to the Smart Dashboard. SendableChooser positionChooser; SendableChooser positionOneDefense, positionTwoDefense, positionThreeDefense, - positionFourDefense, positionFiveDefense; + positionFourDefense, positionFiveDefense; - // Gyro stuff - public GyroLib gyro; - @Override public void robotInit() { driveTrain = new DriveTrain(); diff --cc src/org/usfirst/frc/team3501/robot/subsystems/Shooter.java index 60452a0c,3633c04c..0d9187a4 --- a/src/org/usfirst/frc/team3501/robot/subsystems/Shooter.java +++ b/src/org/usfirst/frc/team3501/robot/subsystems/Shooter.java @@@ -22,11 -21,9 +22,10 @@@ import edu.wpi.first.wpilibj.command.Su public class Shooter extends Subsystem { private CANTalon shooter; - private CANTalon angleAdjuster; - private DoubleSolenoid hood, punch; + private DoubleSolenoid hood1, hood2, punch; private Encoder encoder; private Lidar lidar; + private Photogate photogate; public Shooter() { shooter = new CANTalon(Constants.Shooter.PORT);