Skip to content

Commit

Permalink
Automated deploy commit at 10/22/2024 19:04:49
Browse files Browse the repository at this point in the history
  • Loading branch information
RHR2713 committed Oct 22, 2024
1 parent 9c4e759 commit b898733
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 2 deletions.
27 changes: 26 additions & 1 deletion .Glass/glass.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,34 @@
{
"NetworkTables": {
"retained": {
"AdvantageKit": {
"DashboardInputs": {
"open": true
},
"open": true
},
"SmartDashboard": {
"open": true
}
},
"types": {
"/FMSInfo": "FMSInfo",
"/SmartDashboard/Autonomous Routine": "String Chooser",
"/SmartDashboard/Mech2d": "Mechanism2d",
"/SmartDashboard/Robot Mode": "String Chooser"
}
},
"NetworkTables Info": {
"Clients": {
"open": true
},
"Server": {
"open": true
},
"visible": true
},
"NetworkTables Settings": {
"mode": "Client (NT4)",
"serverTeam": "127.0.0.1"
"serverTeam": "10.27.13.1"
}
}
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/util/MotionHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public static ChassisSpeeds driveTrajectoryHeadingController(ChassisSpeeds cs) {
* @return The desired array of desaturated swerveModuleStates.
*/
public static ChassisSpeeds driveFullControl() {
double speedFactor = Robot.modeManager.getMode() == RobotMode.DEMO ? 0.01 : 1;
double speedFactor = Robot.modeManager.getMode() == RobotMode.DEMO ? 0.1 : 1;

double xSpeed =
MathUtil.applyDeadband(-Robot.driver.getLeftY(), DriveConstants.K_JOYSTICK_TURN_DEADZONE)
Expand Down

0 comments on commit b898733

Please sign in to comment.