ghmj n
This commit is contained in:
parent
078a5f60b7
commit
14870e51a3
@ -1,14 +0,0 @@
|
||||
default:
|
||||
image: gradle:jdk11
|
||||
tags:
|
||||
- robot
|
||||
|
||||
stages: # List of stages for jobs, and their order of execution
|
||||
- build
|
||||
|
||||
build-job: # This job runs in the build stage, which runs first.
|
||||
stage: build
|
||||
script:
|
||||
- chmod +x gradlew
|
||||
- ./gradlew build
|
||||
|
Binary file not shown.
@ -4,7 +4,10 @@
|
||||
|
||||
package frc.robot;
|
||||
|
||||
|
||||
import edu.wpi.first.wpilibj.TimedRobot;
|
||||
import edu.wpi.first.wpilibj.shuffleboard.Shuffleboard;
|
||||
|
||||
import edu.wpi.first.wpilibj2.command.Command;
|
||||
import edu.wpi.first.wpilibj2.command.CommandScheduler;
|
||||
|
||||
@ -35,7 +38,6 @@ public class Robot extends TimedRobot {
|
||||
@Override
|
||||
public void autonomousInit() {
|
||||
m_autonomousCommand = m_robotContainer.getAutonomousCommand();
|
||||
|
||||
if (m_autonomousCommand != null) {
|
||||
m_autonomousCommand.schedule();
|
||||
}
|
||||
|
@ -12,8 +12,7 @@ import com.ctre.phoenix.motorcontrol.can.WPI_TalonSRX;
|
||||
|
||||
|
||||
import edu.wpi.first.wpilibj.DigitalInput;
|
||||
|
||||
|
||||
import edu.wpi.first.wpilibj.shuffleboard.Shuffleboard;
|
||||
import frc.robot.Constants;
|
||||
|
||||
|
||||
@ -51,6 +50,9 @@ public class Gratte extends SubsystemBase {
|
||||
}
|
||||
@Override
|
||||
public void periodic() {
|
||||
// This method will be called once per scheduler run
|
||||
Shuffleboard.getTab("SmartDashBoard") .add("limithd",0.1);
|
||||
Shuffleboard.getTab("SmartDashBoard") .add("limitbd",0.1);
|
||||
Shuffleboard.getTab("SmartDashBoard") .add("limithg",0.1);
|
||||
Shuffleboard.getTab("SmartDashBoard") .add("limitbg",0.1);
|
||||
}
|
||||
}
|
||||
|
@ -4,6 +4,8 @@
|
||||
|
||||
package frc.robot.subsystems;
|
||||
|
||||
import edu.wpi.first.cameraserver.CameraServer;
|
||||
import edu.wpi.first.wpilibj.shuffleboard.Shuffleboard;
|
||||
import edu.wpi.first.wpilibj2.command.SubsystemBase;
|
||||
|
||||
public class Limelight extends SubsystemBase {
|
||||
@ -12,6 +14,7 @@ public class Limelight extends SubsystemBase {
|
||||
|
||||
@Override
|
||||
public void periodic() {
|
||||
// This method will be called once per scheduler run
|
||||
CameraServer.startAutomaticCapture();
|
||||
Shuffleboard.getTab("SmartDashBoard") .add("limelight",0.1);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user