Skip to content

Commit 948131f

Browse files
committed
imports
1 parent 045afbc commit 948131f

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

TeamCode/src/main/java/org/firstinspires/ftc/teamcode/Params.java

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
import com.acmerobotics.dashboard.config.Config;
44

5+
import org.firstinspires.ftc.teamcode.Tuning.SecPowerPerInchTuner;
6+
import org.firstinspires.ftc.teamcode.Tuning.ThreeInOne_DeadWheelTuner;
7+
58
@Config
69
public class Params {
710
@Config
@@ -65,22 +68,22 @@ public static class PositionalMotorConfigs{
6568
}
6669
/**
6770
* 每Tick机器所旋转的角度
68-
* @see org.firstinspires.ftc.teamcode.Tuning.ThreeInOne_DeadWheelTuner
71+
* @see ThreeInOne_DeadWheelTuner
6972
*/
7073
public static double TurningDegPerTick = 0.01339983622422392615201369761;
7174
/**
7275
* 每Tick机器所前进的距离
73-
* @see org.firstinspires.ftc.teamcode.Tuning.ThreeInOne_DeadWheelTuner
76+
* @see ThreeInOne_DeadWheelTuner
7477
*/
7578
public static double AxialInchPerTick=0.001131541725601131541725601132;
7679
/**
7780
* 每Tick机器所平移的距离
78-
* @see org.firstinspires.ftc.teamcode.Tuning.ThreeInOne_DeadWheelTuner
81+
* @see ThreeInOne_DeadWheelTuner
7982
*/
8083
public static double LateralInchPerTick=AxialInchPerTick;
8184
/**
8285
* 用1f的力,在1s后所前行的距离,单位:inch (time(1s)*power(1f)) [sf/inch]
83-
* @see org.firstinspires.ftc.teamcode.Tuning.SecPowerPerInchTuner
86+
* @see SecPowerPerInchTuner
8487
*/
8588
public static double secPowerPerInch =0;
8689
/**

build.dependencies.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ dependencies {
1616
implementation 'org.firstinspires.ftc:FtcCommon:10.1.0'
1717
implementation 'org.firstinspires.ftc:Vision:10.1.0'
1818

19+
//noinspection GradleDependency
1920
implementation 'androidx.appcompat:appcompat:1.2.0'
2021

2122
implementation 'org.openftc:easyopencv:1.7.3'

0 commit comments

Comments
 (0)