Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
4ed3093
Update README.md
spoopr Jan 11, 2024
07ba4c3
Update for 2024 and remove unrelated things
NetLockJ Jan 12, 2024
d51a30e
Remove getRequirements()
NetLockJ Jan 13, 2024
fd77ac4
Re-add drive command
adamfire1922 Jan 13, 2024
e4c8548
Merge branch 'main' of https://github.com/Team2530/RobotCode2024
adamfire1922 Jan 13, 2024
4199308
Initial Vision code checked in for 2024 Game. This is untested. Need …
sengomsguru Jan 14, 2024
67dda2c
1.15.2024 added more debugging and fixed some issues
voidReq Jan 16, 2024
4bfa591
Vision added debugging details
sengomsguru Jan 18, 2024
f69a34d
Vision changes for GoToAprilTagCommand
sengomsguru Jan 18, 2024
04f9a81
Stuff #2
Technological-Guru Jan 20, 2024
4b2859c
Added Comments
sengomsguru Jan 20, 2024
954f6b8
Revert "Stuff #2"
Technological-Guru Jan 20, 2024
ad1c9de
Merge branch 'Vision' of https://github.com/Team2530/RobotCode2024 in…
Technological-Guru Jan 20, 2024
628ff61
Merge branch 'Vision' of https://github.com/Team2530/RobotCode2024 in…
Technological-Guru Jan 20, 2024
f42d8f5
Merge branch 'Vision' of https://github.com/Team2530/RobotCode2024 in…
Technological-Guru Jan 20, 2024
f243f27
Changed the tagId to double in constants
Technological-Guru Jan 20, 2024
547a6a6
Changed the tagId to double in constants
Technological-Guru Jan 20, 2024
4409b09
Amp apriltag working version in shop
Yunju607 Jan 20, 2024
405b5a3
Working version for robot position based on april tag position
Yunju607 Jan 20, 2024
704c254
Cleanup in GoToAprilTagCommand
Yunju607 Jan 23, 2024
6df37fb
reimplemented x-stance, bound to right bumper
spoopr Jan 27, 2024
4c05708
Eradicate JUnit
michael-m-2983 Jan 27, 2024
d738ea0
Comp Robot Works!
Technological-Guru Jan 30, 2024
ae65501
Merge branch 'main' of https://github.com/Team2530/RobotCode2024
Technological-Guru Jan 30, 2024
fa8322d
Recalibrated swerve module offsets
adamfire1922 Feb 1, 2024
a782cde
-Vision capabilities--Drive to april tags, rotate until finding and d…
voidReq Feb 1, 2024
13ff480
Update drive constants
adamfire1922 Feb 1, 2024
4f0edf3
Removed unnecessary import
Technological-Guru Feb 8, 2024
31a6ded
Added Pose estimtor into vision branch
Technological-Guru Feb 8, 2024
acdc73a
Merge branch 'Vision' of https://github.com/Team2530/RobotCode2024 in…
Sunghwan1234 Feb 9, 2024
004472f
Partialy working vision version 2
Yunju607 Feb 9, 2024
092182e
Merge branch 'Vision' of https://github.com/Team2530/RobotCode2024 in…
Yunju607 Feb 9, 2024
0d1f41c
getAprilTag misspell fix
Sunghwan1234 Feb 10, 2024
465524b
Vision V2 April Tag Pose converted to meters from inches
Yunju607 Feb 10, 2024
f489e55
Merge branch 'Vision' of https://github.com/Team2530/RobotCode2024 in…
Yunju607 Feb 10, 2024
30093fa
Updated getAprilTag
Yunju607 Feb 10, 2024
270af03
Added getTagPose2dInField, getTagPose2dInFieldWithPreset and getTagPo…
Technological-Guru Feb 11, 2024
e6614bb
Fixed the AddVisionMeasurement updating the odometry to 0 issue, when…
Technological-Guru Feb 15, 2024
44e081f
New controller binds, adjusted stage constants
voidReq Feb 16, 2024
0f04355
Fixed x and y directions
Yunju607 Feb 16, 2024
59e9bb6
Merge branch 'Vision' of https://github.com/Team2530/RobotCode2024 in…
Yunju607 Feb 16, 2024
bf348a4
fixed "CurrentApril Tag" to "Current April Tag"
Sunghwan1234 Feb 20, 2024
84107fe
Merge branch 'Vision' of https://github.com/Team2530/RobotCode2024 in…
Sunghwan1234 Feb 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions README.md

This file was deleted.

2 changes: 1 addition & 1 deletion WPILib-License.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2009-2021 FIRST and other WPILib contributors
Copyright (c) 2009-2023 FIRST and other WPILib contributors
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
20 changes: 7 additions & 13 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
plugins {
id "java"
id "edu.wpi.first.GradleRIO" version "2023.4.3"
id "edu.wpi.first.GradleRIO" version "2024.1.1"
}

sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

def ROBOT_MAIN_CLASS = "frc.robot.Main"

Expand Down Expand Up @@ -43,7 +45,7 @@ def deployArtifact = deploy.targets.roborio.artifacts.frcJava
wpi.java.debugJni = false

// Set this to true to enable desktop support.
def includeDesktopSupport = true
def includeDesktopSupport = false

// Defining my dependencies. In this case, WPILib (+ friends), and vendor libraries.
// Also defines JUnit 5.
Expand All @@ -64,15 +66,6 @@ dependencies {
nativeRelease wpi.java.deps.wpilibJniRelease(wpi.platforms.desktop)
nativeRelease wpi.java.vendor.jniRelease(wpi.platforms.desktop)
simulationRelease wpi.sim.enableRelease()

testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
}

test {
useJUnitPlatform()
systemProperty 'junit.jupiter.extensions.autodetection.enabled', 'true'
}

// Simulation configuration (e.g. environment variables).
Expand All @@ -84,6 +77,7 @@ wpi.sim.addDriverstation()
// knows where to look for our Robot Class.
jar {
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
from sourceSets.main.allSource
manifest edu.wpi.first.gradlerio.GradleRIOPlugin.javaManifest(ROBOT_MAIN_CLASS)
duplicatesStrategy = DuplicatesStrategy.INCLUDE
}
Expand Down
42 changes: 0 additions & 42 deletions drive_sysid_config.json

This file was deleted.

Loading