patplanner

This commit is contained in:
samuel desharnais
2024-01-22 20:13:26 -05:00
parent b46e1a57eb
commit 0ad28ac416
4 changed files with 147 additions and 0 deletions

View File

@ -0,0 +1,18 @@
// Copyright (c) FIRST and other WPILib contributors.
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
package frc.robot.subsystem;
import edu.wpi.first.wpilibj2.command.SubsystemBase;
public class Pixy extends SubsystemBase {
/** Creates a new Pixy. */
public Pixy() {}
@Override
public void periodic() {
// This method will be called once per scheduler run
}
}