Skip to content
This repository was archived by the owner on Sep 14, 2019. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions Robot2018/.classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="var" path="wpilib" sourcepath="wpilib.sources"/>
<classpathentry kind="var" path="networktables" sourcepath="networktables.sources"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="var" path="opencv" sourcepath="opencv.sources"/>
<classpathentry kind="var" path="cscore" sourcepath="cscore.sources"/>
<classpathentry kind="var" path="wpiutil" sourcepath="wpiutil.sources"/>
<classpathentry kind="output" path="bin"/>
</classpath>
3 changes: 1 addition & 2 deletions Robot2018/.gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/bin/
/build/
/dist/
.classpath
.DS_Store
.DS_Store
2 changes: 1 addition & 1 deletion Robot2018/build.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Project specific information
package=org.usfirst.frc.team199.robot
package=org.usfirst.frc.team199.Robot2018
robot.class=${package}.Robot
simulation.world.file=/usr/share/frcsim/worlds/GearsBotDemo.world
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package org.usfirst.frc.team199.robot;
package org.usfirst.frc.team199.Robot2018;

import edu.wpi.first.wpilibj.buttons.Button;

import org.usfirst.frc.team199.robot.commands.ExampleCommand;
import org.usfirst.frc.team199.Robot2018.commands.ExampleCommand;

/**
* This class is the glue that binds the controls on the physical operator
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

package org.usfirst.frc.team199.robot;
package org.usfirst.frc.team199.Robot2018;

import edu.wpi.first.wpilibj.IterativeRobot;
import edu.wpi.first.wpilibj.command.Command;
Expand All @@ -8,8 +8,8 @@
import edu.wpi.first.wpilibj.smartdashboard.SendableChooser;
import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;

import org.usfirst.frc.team199.robot.commands.ExampleCommand;
import org.usfirst.frc.team199.robot.subsystems.ExampleSubsystem;
import org.usfirst.frc.team199.Robot2018.commands.ExampleCommand;
import org.usfirst.frc.team199.Robot2018.subsystems.ExampleSubsystem;

/**
* The VM is configured to automatically run this class, and to call the
Expand Down Expand Up @@ -111,6 +111,5 @@ public void teleopPeriodic() {
*/
@Override
public void testPeriodic() {
LiveWindow.run();
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.usfirst.frc.team199.robot;
package org.usfirst.frc.team199.Robot2018;

/**
* The RobotMap is a mapping from the ports sensors and actuators are wired into
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package org.usfirst.frc.team199.robot.commands;
package org.usfirst.frc.team199.Robot2018.commands;

import edu.wpi.first.wpilibj.command.Command;

import org.usfirst.frc.team199.robot.Robot;
import org.usfirst.frc.team199.Robot2018.Robot;

/**
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.usfirst.frc.team199.robot.subsystems;
package org.usfirst.frc.team199.Robot2018.subsystems;

import edu.wpi.first.wpilibj.command.Subsystem;

Expand Down