d5c9c60f508b200b111274568c1d0d924ab8c195
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / commands / accessories / ToggleCameraFeed.java
1 package org.usfirst.frc.team3501.robot.commands.accessories;
2
3 import org.usfirst.frc.team3501.robot.CameraFeeds;
4 import org.usfirst.frc.team3501.robot.Robot;
5
6 import edu.wpi.first.wpilibj.command.Command;
7
8 public class ToggleCameraFeed extends Command {
9
10 @Override
11 protected void execute() {
12 CameraFeeds cf = Robot.getCameraFeeds();
13 // System.out.println(cf.getCurrentCamName());
14 cf.toggleCamera();
15 }
16
17 @Override
18 protected boolean isFinished() {
19 return true;
20 }
21
22 }