diff --git a/src/main/java/frc4388/robot/subsystems/Horn.java b/src/main/java/frc4388/robot/subsystems/Horn.java new file mode 100644 index 0000000..724d5c8 --- /dev/null +++ b/src/main/java/frc4388/robot/subsystems/Horn.java @@ -0,0 +1,26 @@ +/*----------------------------------------------------------------------------*/ +/* Copyright (c) 2019 FIRST. All Rights Reserved. */ +/* Open Source Software - may be modified and shared by FRC teams. The code */ +/* must be accompanied by the FIRST BSD license file in the root directory of */ +/* the project. */ +/*----------------------------------------------------------------------------*/ + +package frc4388.robot.subsystems; + +package edu.wpi.first.wpilibj; + +import edu.wpi.first.wpilibj2.command.SubsystemBase; + +public class Horn extends SubsystemBase { + /** + * Creates a new Horn. + */ + public Horn() { + Hell + } + + @Override + public void periodic() { + // This method will be called once per scheduler run + } +}