File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
TeamCode/src/main/java/org/firstinspires/ftc/teamcode Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 3
3
import com .acmerobotics .dashboard .config .Config ;
4
4
5
5
@ Config
6
- public final class Params {
6
+ public class Params {
7
7
@ Config
8
- public final static class PIDParams {
8
+ public static class PIDParams {
9
9
//与底盘相关的kP理论值:SimpleMecanumDrive.Params.vP
10
10
//TODO:预设...[0]为底盘X,[1]为底盘Y,[2]为底盘方向
11
11
public static double [] kP = new double []{0.12 , 0.15 , 0.12 };
@@ -14,7 +14,7 @@ public final static class PIDParams{
14
14
public static double [] MAX_I = new double []{100 , 100 , 0 };
15
15
}
16
16
@ Config
17
- public final static class Configs {
17
+ public static class Configs {
18
18
/**让机器自动在运行<code>update()</code>时,自动清除所有电机的<code>power</code>*/
19
19
public static boolean autoPrepareForNextOptionWhenUpdate = true ;
20
20
/**让机器自动在执行提供的操作时,自动在更改任何<code>power</code>变量后执行<code>update()</code>*/
@@ -33,7 +33,7 @@ public final static class Configs{
33
33
public static boolean useOutTimeProtection = true ;
34
34
}
35
35
@ Config
36
- public final static class namespace {
36
+ public static class namespace {
37
37
public static String LeftFront ="leftFront" ;
38
38
public static String RightFront ="rightFront" ;
39
39
public static String LeftRear ="leftBack" ;
You can’t perform that action at this time.
0 commit comments