Compare commits

..
2 Commits
Author SHA1 Message Date
KeshavAnandCode daba960f38 added pedropathing quickstart files
suppreseted appcompact gradle warning with comment
2026-08-12 21:50:57 -05:00
KeshavAnandCode c9d723570f changed gradle deps to include pedro
change copmile sdk version to 34
2026-08-12 21:44:55 -05:00
5 changed files with 1820 additions and 2 deletions
+1 -1
View File
@@ -17,8 +17,8 @@ android {
buildFeatures {
buildConfig = true
}
compileSdk 34
compileSdkVersion 30
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
@@ -0,0 +1,19 @@
package org.firstinspires.ftc.teamcode.pedroPathing;
import com.pedropathing.follower.Follower;
import com.pedropathing.follower.FollowerConstants;
import com.pedropathing.ftc.FollowerBuilder;
import com.pedropathing.paths.PathConstraints;
import com.qualcomm.robotcore.hardware.HardwareMap;
public class Constants {
public static FollowerConstants followerConstants = new FollowerConstants();
public static PathConstraints pathConstraints = new PathConstraints(0.99, 100, 1, 1);
public static Follower createFollower(HardwareMap hardwareMap) {
return new FollowerBuilder(followerConstants, hardwareMap)
.pathConstraints(pathConstraints)
.build();
}
}
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -19,7 +19,7 @@ import java.util.regex.Pattern
android {
compileSdkVersion 30
compileSdk 34
signingConfigs {
release {
+6
View File
@@ -1,17 +1,23 @@
repositories {
mavenCentral()
google() // Needed for androidx
maven { url = "https://mymaven.bylazar.com/releases" }
}
dependencies {
implementation 'org.firstinspires.ftc:Inspection:11.2.1'
implementation 'org.firstinspires.ftc:Blocks:11.2.1'
//noinspection Aligned16KB
implementation 'org.firstinspires.ftc:RobotCore:11.2.1'
implementation 'org.firstinspires.ftc:RobotServer:11.2.1'
implementation 'org.firstinspires.ftc:OnBotJava:11.2.1'
implementation 'org.firstinspires.ftc:Hardware:11.2.1'
implementation 'org.firstinspires.ftc:FtcCommon:11.2.1'
implementation 'org.firstinspires.ftc:Vision:11.2.1'
//noinspection GradleDependency
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.pedropathing:ftc:2.1.2'
implementation 'com.pedropathing:telemetry:1.0.0'
implementation 'com.bylazar:fullpanels:1.0.12'
}