This commit is contained in:
samuel desharnais 2024-02-06 18:48:33 -05:00
parent b4ee2d228a
commit e72a23fdde
3 changed files with 17 additions and 1 deletions

View File

@ -0,0 +1,8 @@
package frc.robot;
public class PixyException extends Exception {
public PixyException(String message){
super(message);
}
}

View File

@ -0,0 +1,9 @@
package frc.robot;
public class PixyPacket {
public int X;
public int Y;
public int Width;
public int Height;
}

View File

@ -7,7 +7,6 @@ package frc.robot.subsystem;
import edu.wpi.first.wpilibj2.command.SubsystemBase; import edu.wpi.first.wpilibj2.command.SubsystemBase;
public class Pixy extends SubsystemBase { public class Pixy extends SubsystemBase {
/** Creates a new Pixy. */ /** Creates a new Pixy. */
public Pixy() {} public Pixy() {}