X-Git-Url: http://challenge-bot.com/repos/?a=blobdiff_plain;f=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2Fsubsystems%2FDrivetrain.java;fp=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2Fsubsystems%2FDrivetrain.java;h=5dd39abb4a716f1bf8a7729b57696371281ec823;hb=3e4790a8551e2a7c20db705dea86cb59f3c84696;hp=5285956a4b78898b4ff296e3459fd47c2dded9cd;hpb=b449387d8a410c4d224b9ebca4cbe6b6689ff26b;p=3501%2F3501-spark-go diff --git a/src/org/usfirst/frc/team3501/robot/subsystems/Drivetrain.java b/src/org/usfirst/frc/team3501/robot/subsystems/Drivetrain.java index 5285956..5dd39ab 100644 --- a/src/org/usfirst/frc/team3501/robot/subsystems/Drivetrain.java +++ b/src/org/usfirst/frc/team3501/robot/subsystems/Drivetrain.java @@ -1,6 +1,7 @@ package org.usfirst.frc.team3501.robot.subsystems; import org.usfirst.frc.team3501.robot.RobotMap; +import org.usfirst.frc.team3501.robot.commands.DriveWithJoysticks; import edu.wpi.first.wpilibj.CANJaguar; import edu.wpi.first.wpilibj.RobotDrive; @@ -8,7 +9,7 @@ import edu.wpi.first.wpilibj.command.Subsystem; public class Drivetrain extends Subsystem { - RobotDrive robotDrive; + private RobotDrive robotDrive; public Drivetrain() { CANJaguar frontLeft = new CANJaguar(RobotMap.FRONT_LEFT_ADDRESS); @@ -46,6 +47,8 @@ public class Drivetrain extends Subsystem { return (x + Math.signum(x) * Math.sqrt(Math.abs(x))) / 2; } - public void initDefaultCommand() {} + public void initDefaultCommand() { + setDefaultCommand(new DriveWithJoysticks()); + } }