From ea99fa577e714f15582ccccbcc24afc045e93033 Mon Sep 17 00:00:00 2001 From: Kavin Muralikrishnan <921563@lcps.org> Date: Sat, 21 Sep 2024 19:21:46 -0400 Subject: [PATCH] credits --- src/main/java/frc/robot/Constants.java | 2 +- src/main/java/frc/robot/Main.java | 2 +- src/main/java/frc/robot/Robot.java | 2 +- src/main/java/frc/robot/RobotContainer.java | 2 +- src/main/java/frc/robot/commands/DriveCommands.java | 1 + src/main/java/frc/robot/commands/ServoCommands.java | 1 + src/main/java/frc/robot/subsystems/Rangefinder.java | 1 + src/main/java/frc/robot/subsystems/Servo.java | 1 + 8 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/main/java/frc/robot/Constants.java b/src/main/java/frc/robot/Constants.java index 591d9e3..99b96ea 100644 --- a/src/main/java/frc/robot/Constants.java +++ b/src/main/java/frc/robot/Constants.java @@ -1,7 +1,7 @@ // 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. - +// Credit to Team 5338 for any changes to the base command XRP template. package frc.robot; /** diff --git a/src/main/java/frc/robot/Main.java b/src/main/java/frc/robot/Main.java index 8776e5d..ba54598 100644 --- a/src/main/java/frc/robot/Main.java +++ b/src/main/java/frc/robot/Main.java @@ -1,7 +1,7 @@ // 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. - +// Credit to Team 5338 for any changes to the base command XRP template. package frc.robot; import edu.wpi.first.wpilibj.RobotBase; diff --git a/src/main/java/frc/robot/Robot.java b/src/main/java/frc/robot/Robot.java index cb75ced..6a7a310 100644 --- a/src/main/java/frc/robot/Robot.java +++ b/src/main/java/frc/robot/Robot.java @@ -1,7 +1,7 @@ // 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. - +// Credit to Team 5338 for any changes to the base command XRP template. package frc.robot; import edu.wpi.first.wpilibj.TimedRobot; diff --git a/src/main/java/frc/robot/RobotContainer.java b/src/main/java/frc/robot/RobotContainer.java index 5aea71e..1605058 100644 --- a/src/main/java/frc/robot/RobotContainer.java +++ b/src/main/java/frc/robot/RobotContainer.java @@ -1,7 +1,7 @@ // 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. - +// Credit to Team 5338 for any changes to the base command XRP template. package frc.robot; import edu.wpi.first.wpilibj.XboxController; diff --git a/src/main/java/frc/robot/commands/DriveCommands.java b/src/main/java/frc/robot/commands/DriveCommands.java index 105c55a..0a923fa 100644 --- a/src/main/java/frc/robot/commands/DriveCommands.java +++ b/src/main/java/frc/robot/commands/DriveCommands.java @@ -1,6 +1,7 @@ // 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. +// Credit to Team 5338 for any changes to the base command XRP template. package frc.robot.commands; diff --git a/src/main/java/frc/robot/commands/ServoCommands.java b/src/main/java/frc/robot/commands/ServoCommands.java index 5bad132..9a4d23b 100644 --- a/src/main/java/frc/robot/commands/ServoCommands.java +++ b/src/main/java/frc/robot/commands/ServoCommands.java @@ -1,3 +1,4 @@ +// Credit to Team 5338 for any changes to the base command XRP template. package frc.robot.commands; public class ServoCommands { diff --git a/src/main/java/frc/robot/subsystems/Rangefinder.java b/src/main/java/frc/robot/subsystems/Rangefinder.java index 0d0d544..95d31b0 100644 --- a/src/main/java/frc/robot/subsystems/Rangefinder.java +++ b/src/main/java/frc/robot/subsystems/Rangefinder.java @@ -1,3 +1,4 @@ +// Credit to Team 5338 for any changes to the base command XRP template. package frc.robot.subsystems; import edu.wpi.first.wpilibj.xrp.XRPRangefinder; diff --git a/src/main/java/frc/robot/subsystems/Servo.java b/src/main/java/frc/robot/subsystems/Servo.java index 657d5f9..bc74941 100644 --- a/src/main/java/frc/robot/subsystems/Servo.java +++ b/src/main/java/frc/robot/subsystems/Servo.java @@ -1,3 +1,4 @@ +// Credit to Team 5338 for any changes to the base command XRP template. package frc.robot.subsystems; import edu.wpi.first.wpilibj.xrp.XRPServo;