X-Git-Url: http://challenge-bot.com/repos/?p=3501%2F2017steamworks;a=blobdiff_plain;f=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2Fcommands%2Fclimber%2FRunWinch.java;h=7858384dac649f30555d40761e6fa52b6e09ebd5;hp=2428aff2345244364035e842c40042626d27c74d;hb=b8791ca4cfd815fbd063523ac6edc452d4a17602;hpb=6feace1b99b9f5377a1f76da783aa5e05effb75a diff --git a/src/org/usfirst/frc/team3501/robot/commands/climber/RunWinch.java b/src/org/usfirst/frc/team3501/robot/commands/climber/RunWinch.java index 2428aff..7858384 100644 --- a/src/org/usfirst/frc/team3501/robot/commands/climber/RunWinch.java +++ b/src/org/usfirst/frc/team3501/robot/commands/climber/RunWinch.java @@ -2,7 +2,6 @@ package org.usfirst.frc.team3501.robot.commands.climber; import org.usfirst.frc.team3501.robot.Robot; -import edu.wpi.first.wpilibj.Timer; import edu.wpi.first.wpilibj.command.Command; /** @@ -24,7 +23,6 @@ import edu.wpi.first.wpilibj.command.Command; */ public class RunWinch extends Command { - Timer timer; private double time; private double motorVal; @@ -34,18 +32,16 @@ public class RunWinch extends Command { * @param time * time in seconds to run the winch * @param motorVal - * value range is from -1 to 1 + * value range is frosm -1 to 1 */ public RunWinch(double time, double motorVal) { requires(Robot.getDriveTrain()); - timer = new Timer(); this.time = time; this.motorVal = motorVal; } @Override protected void initialize() { - timer.start(); } @Override @@ -56,7 +52,7 @@ public class RunWinch extends Command { @Override protected boolean isFinished() { - return timer.get() >= time; + return timeSinceInitialized() >= time; } @Override