Skip to content

Commit

Permalink
Test Autos (#30)
Browse files Browse the repository at this point in the history
* Begin testing autos

* Rework logging using Monologue

* Created Preliminary Auto Paths

* Add Yoinker auto

* Auto paths

* Add back C2sC1.traj

* Tune teleop PID
  • Loading branch information
ACat701 authored Jan 20, 2024
1 parent b278a5b commit f53942c
Show file tree
Hide file tree
Showing 34 changed files with 9,419 additions and 5,414 deletions.
6 changes: 3 additions & 3 deletions .pathplanner/settings.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"robotWidth": 0.9,
"robotLength": 0.9,
"robotWidth": 0.8636,
"robotLength": 0.8636,
"holonomicMode": true,
"pathFolders": [],
"autoFolders": [],
"defaultMaxVel": 3.0,
"defaultMaxAccel": 3.0,
"defaultMaxAngVel": 540.0,
"defaultMaxAngAccel": 720.0,
"maxModuleSpeed": 4.5
"maxModuleSpeed": 5.55
}
4,976 changes: 4,976 additions & 0 deletions ChoreoPaths.chor

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ plugins {
id "edu.wpi.first.GradleRIO" version "2024.1.1"
}

repositories {
maven { url 'https://jitpack.io' }
}

java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
Expand Down Expand Up @@ -67,6 +71,7 @@ dependencies {
nativeRelease wpi.java.vendor.jniRelease(wpi.platforms.desktop)
simulationRelease wpi.sim.enableRelease()

implementation 'com.github.shueja:Monologue:v1.0.0-beta4'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
Expand Down
11 changes: 11 additions & 0 deletions simgui-ds.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
{
"System Joysticks": {
"window": {
"visible": false
}
},
"keyboardJoysticks": [
{
"axisConfig": [
Expand Down Expand Up @@ -88,5 +93,11 @@
"buttonCount": 0,
"povCount": 0
}
],
"robotJoysticks": [
{
"guid": "030000004c050000e60c000000000000",
"useGamepad": true
}
]
}
23 changes: 22 additions & 1 deletion simgui.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,28 @@
{
"NTProvider": {
"types": {
"/FMSInfo": "FMSInfo"
"/FMSInfo": "FMSInfo",
"/SmartDashboard/Field": "Field2d"
},
"windows": {
"/SmartDashboard/Field": {
"window": {
"visible": true
}
}
}
},
"NetworkTables": {
"transitory": {
"Monologue": {
"open": true,
"subDrivetrain": {
"open": true
}
},
"SmartDashboard": {
"open": true
}
}
},
"NetworkTables Info": {
Expand Down
Loading

0 comments on commit f53942c

Please sign in to comment.