-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRobot.java
114 lines (94 loc) · 3.38 KB
/
Robot.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*----------------------------------------------------------------------------*/
/* Copyright (c) 2017-2018 FIRST. All Rights Reserved. */
/* Open Source Software - may be modified and shared by FRC teams. The code */
/* must be accompanied by the FIRST BSD license file in the root directory of */
/* the project. */
/*----------------------------------------------------------------------------*/
package org.usfirst.frc.team6489.robot;
import edu.wpi.first.wpilibj.IterativeRobot;
import edu.wpi.first.wpilibj.Joystick;
import edu.wpi.first.wpilibj.Spark;
import edu.wpi.first.wpilibj.Timer;
import edu.wpi.first.wpilibj.smartdashboard.SendableChooser;
import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;
/**
* The VM is configured to automatically run this class, and to call the
* functions corresponding to each mode, as described in the IterativeRobot
* documentation. If you change the name of this class or the package after
* creating this project, you must also update the build.properties file in the
* project.
*/
public class Robot extends IterativeRobot {
private static final String kDefaultAuto = "Default";
private static final String kCustomAuto = "My Auto";
private String m_autoSelected;
private SendableChooser<String> m_chooser = new SendableChooser<>();
Joystick joystick = new Joystick(0);
/** Negative is forward **/
Spark leftSide;
/** Positive is forward **/
Spark rightSide;
Timer timer;
@Override
public void robotInit() {
m_chooser.addDefault("Default Auto", kDefaultAuto);
m_chooser.addObject("My Auto", kCustomAuto);
SmartDashboard.putData("Auto choices", m_chooser);
leftSide = new Spark(0);
rightSide = new Spark(1);
timer = new Timer();
}
@Override
public void autonomousInit() {
m_autoSelected = m_chooser.getSelected();
// autoSelected = SmartDashboard.getString("Auto Selector",
// defaultAuto);
System.out.println("Auto selected: " + m_autoSelected);
timer.start();
}
@Override
public void autonomousPeriodic() {
if (timer.get() < 3.0) {
leftSide.set(-.3);
rightSide.set(.3);
} else if (timer.get() < 6.0) {
leftSide.set(.3);
rightSide.set(-.3);
} else {
leftSide.set(0);
rightSide.set(0);
}
/*switch (m_autoSelected) {
case kCustomAuto:
// Put custom auto code here
break;
case kDefaultAuto:
default:
// Put default auto code here
break;
}*/
}
@Override
public void teleopPeriodic() {
// This makes the joystick work where the robot just goes where you point the stick
/*leftSide.set(joystick.getX() + joystick.getY());
rightSide.set(joystick.getX() - joystick.getY());*/
// Makes forward/backward use Y axis and turning use Z axis
leftSide.set((joystick.getZ() + joystick.getY()) * .5);
rightSide.set((joystick.getZ() - joystick.getY()) * .5);
// ATTEMPT to get speed slider to work
/*if (joystick.getY() < 0.5) {
leftSide.set((joystick.getThrottle() / 2) + .5);
rightSide.set((-joystick.getThrottle() / 2) + .5);
} else if (joystick.getY() > 0.5) {
leftSide.set((-joystick.getThrottle() / 2) + .5);
rightSide.set((joystick.getThrottle() / 2) + .5);
}*/
/*value = joystick.getZ();
value = joystick.getThrottle();
value = joystick.getTwist();
boolean buttonValue;
buttonValue = joystick.getTop();
buttonValue = joystick.getTrigger();*/
}
}