Pixy
This commit is contained in:
@@ -0,0 +1,8 @@
|
|||||||
|
package frc.robot;
|
||||||
|
|
||||||
|
public class PixyException extends Exception {
|
||||||
|
public PixyException(String message){
|
||||||
|
super(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
package frc.robot;
|
||||||
|
|
||||||
|
public class PixyPacket {
|
||||||
|
public int X;
|
||||||
|
public int Y;
|
||||||
|
public int Width;
|
||||||
|
public int Height;
|
||||||
|
|
||||||
|
}
|
||||||
@@ -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() {}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user