Total Complexity | 6 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | package org.usfirst.frc.team3695.robot.commands; |
||
9 | public class ToggleCommandIntimidate extends Command { |
||
10 | |||
11 | public ToggleCommandIntimidate() { |
||
12 | requires(Robot.SUB_DRIVE); |
||
13 | requires(Robot.SUB_MANIPULATOR); |
||
14 | } |
||
15 | |||
16 | protected void initialize() {} |
||
17 | |||
18 | protected void execute() { |
||
19 | Robot.SUB_MANIPULATOR.rev(OI.DRIVER); |
||
20 | } |
||
21 | |||
22 | protected boolean isFinished() { return false; } |
||
23 | |||
24 | protected void end() {} |
||
25 | |||
26 | protected void interrupted() {} |
||
27 | } |
||
28 |