Skip to content

Commit 429afac

Browse files
selym3Sam-BelliveauProg694
authoredMar 18, 2022
Implement PID tuned shooter (#91)
* code does not work * upload some fixes / more implementation * Add integrator filter class * begin implementing pidflywheel in subsystem * add pid flywheel documentation * add is empty method * add align to shoot command * spotless apply * encapsulate alignment helpers * add constant for debounce time * add feedforward, pid to shooter settings * implement rest of shooter api in pid shooter * add documentation * [not finished] reimplement smartpidcontroller * configure motors in subsystem * add target filter * spotless apply * fix typo * update pid gains and min/max pid output * uncomment constants * revert constant (again) * small changes * Update StuyLib * Merged Clamping PID Controllers * fix typos / slight fixes * add shooter, feeder configuration. shooter data * sysid values * change pid flywheel to use array of motors * add tuned values from characterization/auto tuning * change integral max adjust * add new shuffleboard for tuning * add characterization data Co-authored-by: Sam Belliveau <[email protected]> Co-authored-by: Prog694 <[email protected]>
1 parent 2e069af commit 429afac

27 files changed

+517667
-370
lines changed
 

‎.SysId/sysid.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"SysId": {
3+
"Analysis Type": "General Mechanism",
4+
"NetworkTables Settings": {
5+
"serverTeam": "694"
6+
},
7+
"mode": "Client",
8+
"serverTeam": "694"
9+
}
10+
}

‎.vscode/settings.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,6 @@
2525
}
2626
},
2727
],
28-
"java.test.defaultConfig": "WPIlibUnitTests"
28+
"java.test.defaultConfig": "WPIlibUnitTests",
29+
"java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx2G -Xms100m"
2930
}

‎build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ allprojects {
1111
}
1212
}
1313

14-
final String STUYLIB_VERSION = 'v2022.1.2'
14+
final String STUYLIB_VERSION = 'v2022.2.0'
1515
def ROBOT_MAIN_CLASS = "com.stuypulse.robot.Main"
1616

1717
sourceCompatibility = JavaVersion.VERSION_11

‎shuffleboard.json

+246-8
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,43 @@
140140
"Colors/Color when true": "#7CFC00FF",
141141
"Colors/Color when false": "#8B0000FF"
142142
}
143+
},
144+
"0,0": {
145+
"size": [
146+
1,
147+
1
148+
],
149+
"content": {
150+
"_type": "Text View",
151+
"_source0": "network_table:///SmartDashboard/Climber/Max Extension",
152+
"_title": "Max Extension"
153+
}
154+
},
155+
"1,0": {
156+
"size": [
157+
2,
158+
2
159+
],
160+
"content": {
161+
"_type": "Boolean Box",
162+
"_source0": "network_table:///SmartDashboard/Climber/Stall Detection",
163+
"_title": "Stall Detection",
164+
"Colors/Color when true": "#7CFC00FF",
165+
"Colors/Color when false": "#8B0000FF"
166+
}
167+
},
168+
"9,0": {
169+
"size": [
170+
2,
171+
2
172+
],
173+
"content": {
174+
"_type": "Boolean Box",
175+
"_source0": "network_table:///SmartDashboard/Climber/Enable Encoders",
176+
"_title": "Enable Encoders",
177+
"Colors/Color when true": "#7CFC00FF",
178+
"Colors/Color when false": "#8B0000FF"
179+
}
143180
}
144181
}
145182
}
@@ -739,8 +776,7 @@
739776
"Y-axis/Upper bound": 4000.0,
740777
"Y-axis/Lower bound": 0.0,
741778
"Y-axis/Unit": "rpm",
742-
"Visible data/SmartDashboard/Debug/Shooter/Shooter RPM": true,
743-
"Visible data/SmartDashboard/Shooter/Target": true
779+
"Visible data/SmartDashboard/Debug/Shooter/Shooter RPM": true
744780
}
745781
},
746782
"2,1": {
@@ -792,8 +828,7 @@
792828
"Y-axis/Upper bound": 4000.0,
793829
"Y-axis/Lower bound": 0.0,
794830
"Y-axis/Unit": "rpm",
795-
"Visible data/SmartDashboard/Debug/Shooter/Feeder RPM": true,
796-
"Visible data/SmartDashboard/Shooter/Target": true
831+
"Visible data/SmartDashboard/Debug/Shooter/Feeder RPM": true
797832
}
798833
}
799834
}
@@ -1056,15 +1091,218 @@
10561091
"_source0": "network_table:///SmartDashboard/Intake/Locked Speed",
10571092
"_title": "Locked Speed"
10581093
}
1094+
},
1095+
"0,0": {
1096+
"size": [
1097+
1,
1098+
1
1099+
],
1100+
"content": {
1101+
"_type": "Boolean Box",
1102+
"_source0": "network_table:///SmartDashboard/Intake/Auto Retract",
1103+
"_title": "Auto Retract",
1104+
"Colors/Color when true": "#7CFC00FF",
1105+
"Colors/Color when false": "#8B0000FF"
1106+
}
1107+
}
1108+
}
1109+
}
1110+
},
1111+
{
1112+
"title": "Shooter",
1113+
"autoPopulate": true,
1114+
"autoPopulatePrefix": "network_table:///SmartDashboard/Shooter/",
1115+
"widgetPane": {
1116+
"gridSize": 100.0,
1117+
"showGrid": true,
1118+
"hgap": 16.0,
1119+
"vgap": 16.0,
1120+
"titleType": 0,
1121+
"tiles": {
1122+
"10,3": {
1123+
"size": [
1124+
2,
1125+
1
1126+
],
1127+
"content": {
1128+
"_type": "Text View",
1129+
"_source0": "network_table:///SmartDashboard/Shooter/Feeder/Tuning Speed",
1130+
"_title": "Feeder/Tuning Speed"
1131+
}
1132+
},
1133+
"5,3": {
1134+
"size": [
1135+
3,
1136+
1
1137+
],
1138+
"content": {
1139+
"_type": "Text View",
1140+
"_source0": "network_table:///SmartDashboard/Shooter/Target RPM",
1141+
"_title": "Target RPM"
1142+
}
1143+
},
1144+
"1,2": {
1145+
"size": [
1146+
2,
1147+
1
1148+
],
1149+
"content": {
1150+
"_type": "Toggle Switch",
1151+
"_source0": "network_table:///SmartDashboard/Shooter/Shooter/Tuning PID",
1152+
"_title": "Shooter/Tuning PID"
1153+
}
1154+
},
1155+
"5,4": {
1156+
"size": [
1157+
3,
1158+
1
1159+
],
1160+
"content": {
1161+
"_type": "Text View",
1162+
"_source0": "network_table:///SmartDashboard/Shooter/Feeder Multipler",
1163+
"_title": "Feeder Multipler"
1164+
}
1165+
},
1166+
"5,0": {
1167+
"size": [
1168+
3,
1169+
1
1170+
],
1171+
"content": {
1172+
"_type": "Text View",
1173+
"_source0": "network_table:///SmartDashboard/Shooter/Ring RPM",
1174+
"_title": "Ring RPM"
1175+
}
1176+
},
1177+
"1,3": {
1178+
"size": [
1179+
2,
1180+
1
1181+
],
1182+
"content": {
1183+
"_type": "Text View",
1184+
"_source0": "network_table:///SmartDashboard/Shooter/Shooter/Tuning Speed",
1185+
"_title": "Shooter/Tuning Speed"
1186+
}
1187+
},
1188+
"5,1": {
1189+
"size": [
1190+
3,
1191+
1
1192+
],
1193+
"content": {
1194+
"_type": "Text View",
1195+
"_source0": "network_table:///SmartDashboard/Shooter/Fender RPM",
1196+
"_title": "Fender RPM"
1197+
}
1198+
},
1199+
"9,3": {
1200+
"size": [
1201+
1,
1202+
1
1203+
],
1204+
"content": {
1205+
"_type": "Text View",
1206+
"_source0": "network_table:///SmartDashboard/Shooter/Feeder/D",
1207+
"_title": "Feeder/D"
1208+
}
1209+
},
1210+
"9,2": {
1211+
"size": [
1212+
1,
1213+
1
1214+
],
1215+
"content": {
1216+
"_type": "Text View",
1217+
"_source0": "network_table:///SmartDashboard/Shooter/Feeder/I",
1218+
"_title": "Feeder/I"
1219+
}
1220+
},
1221+
"10,2": {
1222+
"size": [
1223+
2,
1224+
1
1225+
],
1226+
"content": {
1227+
"_type": "Toggle Switch",
1228+
"_source0": "network_table:///SmartDashboard/Shooter/Feeder/Tuning PD",
1229+
"_title": "Feeder/Tuning PD"
1230+
}
1231+
},
1232+
"9,1": {
1233+
"size": [
1234+
1,
1235+
1
1236+
],
1237+
"content": {
1238+
"_type": "Text View",
1239+
"_source0": "network_table:///SmartDashboard/Shooter/Feeder/P",
1240+
"_title": "Feeder/P"
1241+
}
1242+
},
1243+
"3,3": {
1244+
"size": [
1245+
1,
1246+
1
1247+
],
1248+
"content": {
1249+
"_type": "Text View",
1250+
"_source0": "network_table:///SmartDashboard/Shooter/Shooter/D",
1251+
"_title": "Shooter/D"
1252+
}
1253+
},
1254+
"3,2": {
1255+
"size": [
1256+
1,
1257+
1
1258+
],
1259+
"content": {
1260+
"_type": "Text View",
1261+
"_source0": "network_table:///SmartDashboard/Shooter/Shooter/I",
1262+
"_title": "Shooter/I"
1263+
}
1264+
},
1265+
"1,1": {
1266+
"size": [
1267+
2,
1268+
1
1269+
],
1270+
"content": {
1271+
"_type": "Toggle Switch",
1272+
"_source0": "network_table:///SmartDashboard/Shooter/Shooter/Tuning PD",
1273+
"_title": "Shooter/Tuning PD"
1274+
}
1275+
},
1276+
"3,1": {
1277+
"size": [
1278+
1,
1279+
1
1280+
],
1281+
"content": {
1282+
"_type": "Text View",
1283+
"_source0": "network_table:///SmartDashboard/Shooter/Shooter/P",
1284+
"_title": "Shooter/P"
1285+
}
1286+
},
1287+
"10,1": {
1288+
"size": [
1289+
2,
1290+
1
1291+
],
1292+
"content": {
1293+
"_type": "Toggle Switch",
1294+
"_source0": "network_table:///SmartDashboard/Shooter/Feeder/Tuning PID",
1295+
"_title": "Feeder/Tuning PID"
1296+
}
10591297
}
10601298
}
10611299
}
10621300
}
10631301
],
10641302
"windowGeometry": {
1065-
"x": 60.0,
1066-
"y": 25.0,
1067-
"width": 1620.0,
1068-
"height": 1025.0
1303+
"x": -7.199999809265137,
1304+
"y": -7.199999809265137,
1305+
"width": 1550.4000244140625,
1306+
"height": 838.4000244140625
10691307
}
10701308
}

‎src/main/java/com/stuypulse/robot/RobotContainer.java

+7-13
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,9 @@
1313
import com.stuypulse.robot.commands.conveyor.*;
1414
import com.stuypulse.robot.commands.drivetrain.*;
1515
import com.stuypulse.robot.commands.intake.*;
16-
import com.stuypulse.robot.commands.leds.LEDSetCommand;
1716
import com.stuypulse.robot.commands.shooter.*;
1817
import com.stuypulse.robot.constants.*;
1918
import com.stuypulse.robot.subsystems.*;
20-
import com.stuypulse.robot.util.LEDColor;
2119

2220
import edu.wpi.first.wpilibj.DriverStation;
2321
import edu.wpi.first.wpilibj.livewindow.LiveWindow;
@@ -89,21 +87,17 @@ private void configureButtonBindings() {
8987
operator.getLeftButton().whileHeld(new ConveyorForceEjectCommand(conveyor));
9088

9189
/*** Drivetrain ***/
90+
driver.getLeftButton().whileHeld(new ConveyorShootCommand(conveyor).perpetually());
9291
driver.getBottomButton()
9392
.whileHeld(
94-
new DrivetrainAlignCommand(
95-
drivetrain, Settings.Limelight.RING_SHOT_DISTANCE)
96-
.perpetually())
97-
.whenReleased(new LEDSetCommand(leds, LEDColor.GREEN));
93+
new DrivetrainAlignToShootCommand(
94+
drivetrain, conveyor, Settings.Limelight.RING_SHOT_DISTANCE));
9895

99-
driver.getDPadLeft()
100-
.whileHeld(
101-
new DrivetrainTuneCommand.Angle(
102-
drivetrain, Settings.Limelight.RING_SHOT_DISTANCE));
103-
driver.getDPadRight()
96+
driver.getTopButton()
10497
.whileHeld(
105-
new DrivetrainTuneCommand.Speed(
106-
drivetrain, Settings.Limelight.RING_SHOT_DISTANCE));
98+
new DrivetrainAlignCommand(
99+
drivetrain, Settings.Limelight.RING_SHOT_DISTANCE)
100+
.perpetually());
107101

108102
/*** Intake ***/
109103
operator.getRightTriggerButton()

0 commit comments

Comments
 (0)
Please sign in to comment.