-
Notifications
You must be signed in to change notification settings - Fork 3
/
Updated Botcode
150 lines (128 loc) · 5.12 KB
/
Updated Botcode
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/*----------------------------------------------------------------------------*/
/* 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.team6468.robot;
import edu.wpi.first.wpilibj.IterativeRobot;
import edu.wpi.first.wpilibj.smartdashboard.SendableChooser;
import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;
import edu.wpi.first.wpilibj.DigitalInput;
import edu.wpi.first.wpilibj.GenericHID;
import edu.wpi.first.wpilibj.Joystick;
import edu.wpi.first.wpilibj.XboxController;
import edu.wpi.first.wpilibj.buttons.*;
import edu.wpi.first.wpilibj.Servo;
import edu.wpi.first.wpilibj.Timer;
import edu.wpi.first.wpilibj.drive.DifferentialDrive;
import com.ctre.phoenix.motorcontrol.can.*;
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<>();
private XboxController gamePad = new XboxController(1);
private Joystick joy = new Joystick(0);
private JoystickButton button1 = new JoystickButton(joy, 1);
private JoystickButton button2 = new JoystickButton(joy, 2);
private Servo claw = new Servo(1);
WPI_TalonSRX _verticalMotor = new WPI_TalonSRX(6);
WPI_TalonSRX _middleMotor = new WPI_TalonSRX(5);
WPI_TalonSRX _leftSlave1 = new WPI_TalonSRX(1);
WPI_TalonSRX _rightSlave1 = new WPI_TalonSRX(4);
WPI_TalonSRX _frontLeftMotor = new WPI_TalonSRX(2);
WPI_TalonSRX _frontRightMotor = new WPI_TalonSRX(3);
DifferentialDrive _drive = new DifferentialDrive(_frontLeftMotor, _frontRightMotor);
private Timer timer = new Timer();
DigitalInput microSwitch = new DigitalInput(1);
@Override
public void robotInit() {
m_chooser.addDefault("Default Auto", kDefaultAuto);
m_chooser.addObject("My Auto", kCustomAuto);
SmartDashboard.putData("Auto choices", m_chooser);
_rightSlave1.follow(_frontRightMotor);
_leftSlave1.follow(_frontLeftMotor);
}
/**
* This autonomous (along with the chooser code above) shows how to select
* between different autonomous modes using the dashboard. The sendable
* chooser code works with the Java SmartDashboard. If you prefer the
* LabVIEW Dashboard, remove all of the chooser code and uncomment the
* getString line to get the auto name from the text box below the Gyro
*
* <p>You can add additional auto modes by adding additional comparisons to
* the switch structure below with additional strings. If using the
* SendableChooser make sure to add them to the chooser code above as well.
*/
@Override
public void autonomousInit() {
m_autoSelected = m_chooser.getSelected();
// autoSelected = SmartDashboard.getString("Auto Selector",
// defaultAuto);
System.out.println("Auto selected: " + m_autoSelected);
}
/**
* This function is called periodically during autonomous.
*/
@Override
public void autonomousPeriodic() {
switch (m_autoSelected) {
case kCustomAuto:
// Put custom auto code here
break;
case kDefaultAuto:
default:
// Put default auto code here
break;
}
}
/**
* This function is called periodically during operator control.
*/
@Override
public void teleopPeriodic() {
double clawDeg = claw.getAngle();
double RTrig = gamePad.getTriggerAxis(GenericHID.Hand.kRight);
double LTrig = gamePad.getTriggerAxis(GenericHID.Hand.kLeft);
double RStickX = gamePad.getX(GenericHID.Hand.kRight);
double LStickY = -gamePad.getY(GenericHID.Hand.kLeft);
boolean RBump = gamePad.getBumper(GenericHID.Hand.kRight);
boolean LBump = gamePad.getBumper(GenericHID.Hand.kLeft);
double joyY = joy.getY();
boolean joyTrig = joy.getRawButton(1);
boolean joyButton = joy.getRawButton(2);
boolean switchState = microSwitch.get();
if(switchState == true && joyY < 0) _verticalMotor.set(0);
if(RBump == true && LBump == false) _middleMotor.set(.5);
else if(RBump == false && LBump == true) _middleMotor.set(-.5);
else _middleMotor.set(0);
_drive.arcadeDrive(LStickY, RStickX);
if(RBump==true) _frontLeftMotor.set(0);
System.out.println(_frontLeftMotor.get());
if(joyY != 0) _verticalMotor.set(joyY);
else _verticalMotor.set(0);
if(microSwitch.get() == true) {
System.out.println("Recieved micro switch input");
}
else System.out.println("not pressed");
for(double x = clawDeg; joyTrig == true && x < 180; x++) {
System.out.println("+++++++++++++++");
System.out.println(joyTrig+" "+x);
claw.setAngle(x);
clawDeg = x;
}
for(double x = clawDeg; joyButton == true && x > 0; x--) {
System.out.println("--------------");
System.out.println(joyButton+" "+x);
claw.setAngle(x);
clawDeg = x;
}
}
/**
* This function is called periodically during test mode.
*/
@Override
public void testPeriodic() {
}
}