2020-01-09 23:55:46 +00:00
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
/* Copyright (c) 2017-2019 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 frc4388.robot;
|
|
|
|
|
|
2020-01-11 11:51:21 -07:00
|
|
|
import com.ctre.phoenix.motorcontrol.NeutralMode;
|
|
|
|
|
|
2020-01-09 23:55:46 +00:00
|
|
|
import edu.wpi.first.wpilibj.TimedRobot;
|
2020-03-07 12:41:37 -07:00
|
|
|
import edu.wpi.first.wpilibj.geometry.Pose2d;
|
2020-02-14 08:32:32 -07:00
|
|
|
import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;
|
2020-01-09 23:55:46 +00:00
|
|
|
import edu.wpi.first.wpilibj2.command.Command;
|
|
|
|
|
import edu.wpi.first.wpilibj2.command.CommandScheduler;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The VM is configured to automatically run this class, and to call the
|
|
|
|
|
* functions corresponding to each mode, as described in the TimedRobot
|
|
|
|
|
* documentation. If you change the name of this class or the package after
|
|
|
|
|
* creating this project, you must also update the build.gradle file in the
|
|
|
|
|
* project.
|
|
|
|
|
*/
|
|
|
|
|
public class Robot extends TimedRobot {
|
|
|
|
|
Command m_autonomousCommand;
|
|
|
|
|
|
|
|
|
|
private RobotContainer m_robotContainer;
|
2021-02-12 14:15:18 -07:00
|
|
|
double m_initialTime;
|
|
|
|
|
double m_currentTime;
|
|
|
|
|
double m_deltaTime;
|
2020-01-09 23:55:46 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This function is run when the robot is first started up and should be
|
|
|
|
|
* used for any initialization code.
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public void robotInit() {
|
|
|
|
|
// Instantiate our RobotContainer. This will perform all our button bindings, and put our
|
|
|
|
|
// autonomous chooser on the dashboard.
|
|
|
|
|
m_robotContainer = new RobotContainer();
|
2020-03-07 13:41:33 -07:00
|
|
|
SmartDashboard.putString("Is Auto Start?", "NAH");
|
2020-01-09 23:55:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This function is called every robot packet, no matter the mode. Use
|
|
|
|
|
* this for items like diagnostics that you want ran during disabled,
|
|
|
|
|
* autonomous, teleoperated and test.
|
|
|
|
|
*
|
|
|
|
|
* <p>This runs after the mode specific periodic functions, but before
|
|
|
|
|
* LiveWindow and SmartDashboard integrated updating.
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public void robotPeriodic() {
|
|
|
|
|
// Runs the Scheduler. This is responsible for polling buttons, adding newly-scheduled
|
|
|
|
|
// commands, running already-scheduled commands, removing finished or interrupted commands,
|
|
|
|
|
// and running subsystem periodic() methods. This must be called from the robot's periodic
|
|
|
|
|
// block in order for anything in the Command-based framework to work.
|
|
|
|
|
CommandScheduler.getInstance().run();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This function is called once each time the robot enters Disabled mode.
|
|
|
|
|
* You can use it to reset any subsystem information you want to clear when
|
|
|
|
|
* the robot is disabled.
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public void disabledInit() {
|
2020-01-11 11:51:21 -07:00
|
|
|
m_robotContainer.setDriveNeutralMode(NeutralMode.Coast);
|
2020-03-11 20:52:52 -06:00
|
|
|
/* Builds Autos */
|
|
|
|
|
m_robotContainer.buildAutos();
|
2020-03-07 13:41:33 -07:00
|
|
|
SmartDashboard.putString("Is Auto Start?", "NAH");
|
2020-01-09 23:55:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void disabledPeriodic() {
|
2021-02-12 12:41:04 -07:00
|
|
|
m_robotContainer.resetOdometry(new Pose2d());
|
2020-01-09 23:55:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This autonomous runs the autonomous command selected by your {@link RobotContainer} class.
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public void autonomousInit() {
|
|
|
|
|
m_autonomousCommand = m_robotContainer.getAutonomousCommand();
|
|
|
|
|
|
2021-02-12 15:34:56 -07:00
|
|
|
m_robotContainer.setDriveNeutralMode(NeutralMode.Coast);
|
2020-03-07 18:24:58 -07:00
|
|
|
m_robotContainer.setDriveGearState(true);
|
2020-03-11 20:52:52 -06:00
|
|
|
|
2021-02-12 14:15:18 -07:00
|
|
|
m_initialTime = System.currentTimeMillis();
|
|
|
|
|
|
2020-03-11 20:52:52 -06:00
|
|
|
//m_robotContainer.resetGyroYawRobotContainer(0);
|
2020-03-11 19:41:56 -06:00
|
|
|
|
2020-02-14 08:32:32 -07:00
|
|
|
//m_robotContainer.configDriveTrainSensors(FeedbackDevice.IntegratedSensor);
|
2020-02-13 00:28:55 -07:00
|
|
|
|
2020-01-09 23:55:46 +00:00
|
|
|
/*
|
|
|
|
|
* String autoSelected = SmartDashboard.getString("Auto Selector",
|
|
|
|
|
* "Default"); switch(autoSelected) { case "My Auto": autonomousCommand
|
|
|
|
|
* = new MyAutoCommand(); break; case "Default Auto": default:
|
|
|
|
|
* autonomousCommand = new ExampleCommand(); break; }
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// schedule the autonomous command (example)
|
|
|
|
|
if (m_autonomousCommand != null) {
|
2020-03-07 18:24:58 -07:00
|
|
|
m_autonomousCommand.schedule();
|
2020-03-07 13:41:33 -07:00
|
|
|
SmartDashboard.putString("Is Auto Start?", "YEA");
|
2020-01-09 23:55:46 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This function is called periodically during autonomous.
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public void autonomousPeriodic() {
|
2021-02-12 14:15:18 -07:00
|
|
|
m_currentTime = System.currentTimeMillis();
|
|
|
|
|
m_deltaTime = m_currentTime - m_initialTime;
|
|
|
|
|
SmartDashboard.putNumber("Auto Path Time", (m_deltaTime)/1000);
|
2020-01-09 23:55:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void teleopInit() {
|
2020-02-25 17:12:56 -07:00
|
|
|
m_robotContainer.setDriveNeutralMode(NeutralMode.Brake);
|
2020-03-07 18:24:58 -07:00
|
|
|
m_robotContainer.setDriveGearState(true);
|
2020-03-06 20:34:28 -07:00
|
|
|
|
|
|
|
|
m_robotContainer.shiftClimberRachet(false);
|
2020-02-14 08:32:32 -07:00
|
|
|
//m_robotContainer.configDriveTrainSensors(FeedbackDevice.IntegratedSensor);
|
2020-02-13 17:34:59 -07:00
|
|
|
|
2020-01-09 23:55:46 +00:00
|
|
|
// This makes sure that the autonomous stops running when
|
|
|
|
|
// teleop starts running. If you want the autonomous to
|
|
|
|
|
// continue until interrupted by another command, remove
|
|
|
|
|
// this line or comment it out.
|
|
|
|
|
if (m_autonomousCommand != null) {
|
|
|
|
|
m_autonomousCommand.cancel();
|
|
|
|
|
}
|
2020-02-14 08:32:32 -07:00
|
|
|
|
|
|
|
|
SmartDashboard.putString("Auto?", "NAH");
|
2020-01-09 23:55:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This function is called periodically during operator control.
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public void teleopPeriodic() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This function is called periodically during test mode.
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public void testPeriodic() {
|
|
|
|
|
}
|
|
|
|
|
}
|