Skip to content

Commit ef983ee

Browse files
committed
Merge branch 'main' of ..\Crescendo2024\
2 parents 53160d9 + 40b4557 commit ef983ee

File tree

13 files changed

+604
-0
lines changed

13 files changed

+604
-0
lines changed

.github/workflows/gradle.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Java CI with Gradle
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v2
12+
- name: Set up JDK 17
13+
uses: actions/setup-java@v2
14+
with:
15+
java-version: '17'
16+
distribution: 'temurin'
17+
- name: Grant execute permission for gradlew
18+
run: chmod +x gradlew
19+
- name: Build with Gradle
20+
run: ./gradlew build

.pathplanner/settings.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"robotWidth": 0.9,
3+
"robotLength": 0.9,
4+
"holonomicMode": true,
5+
"pathFolders": [],
6+
"autoFolders": [],
7+
"defaultMaxVel": 3.0,
8+
"defaultMaxAccel": 3.0,
9+
"defaultMaxAngVel": 540.0,
10+
"defaultMaxAngAccel": 720.0,
11+
"maxModuleSpeed": 4.5
12+
}

README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Crescendo2024
2+
FRC team Saints Robotics 1899's code for the 2024 season.
3+
4+
5+
## Commit Message Prefixes
6+
7+
All commit messages must start with one of the following prefixes.
8+
9+
* **"docs:"** - Documentation changes
10+
* **"feat:"** - New features
11+
* **"fix:"** - Bug fixes
12+
* **"refactor:"** - Changes that affect code organization
13+
* **"style:"** - Changes that are formatting related (white-space, formatting, missing semi-colons, etc)
14+
* **"test:"** - New tests or correcting existing tests
15+
* **"perf:"** - Improves performance
16+
* **"chore:"** - Miscellaneous changes
17+
18+
### Examples
19+
20+
* feat: created swerve functions
21+
* fix: autonomous turning bug
22+
* refactor: decoupled functions into new file
23+
* docs: added more info about the codebase
24+
* style: formatted the gradle file
25+
* test: fixed deadzone test
26+
* chore: licensing and credits

networktables.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[]

simgui.json

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{
2+
"HALProvider": {
3+
"Addressable LEDs": {
4+
"0": {
5+
"columns": 44
6+
},
7+
"window": {
8+
"visible": true
9+
}
10+
}
11+
},
12+
"NTProvider": {
13+
"types": {
14+
"/FMSInfo": "FMSInfo",
15+
"/SmartDashboard/Auto Chooser": "String Chooser",
16+
"/SmartDashboard/Field": "Field2d"
17+
},
18+
"windows": {
19+
"/SmartDashboard/Auto Chooser": {
20+
"window": {
21+
"visible": true
22+
}
23+
},
24+
"/SmartDashboard/Field": {
25+
"bottom": 1476,
26+
"height": 8.210550308227539,
27+
"left": 150,
28+
"right": 2961,
29+
"top": 79,
30+
"width": 16.541748046875,
31+
"window": {
32+
"visible": true
33+
}
34+
}
35+
}
36+
},
37+
"NetworkTables": {
38+
"retained": {
39+
"SmartDashboard": {
40+
"Auto Chooser": {
41+
"open": true
42+
},
43+
"open": true
44+
}
45+
}
46+
},
47+
"NetworkTables Info": {
48+
"visible": true
49+
},
50+
"NetworkTables View": {
51+
"visible": false
52+
}
53+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
!*.jar
Binary file not shown.
Binary file not shown.
10.3 KB
Binary file not shown.

vendordeps/NavX.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"fileName": "NavX.json",
3+
"name": "NavX",
4+
"version": "2024.1.0",
5+
"uuid": "cb311d09-36e9-4143-a032-55bb2b94443b",
6+
"frcYear": "2024",
7+
"mavenUrls": [
8+
"https://dev.studica.com/maven/release/2024/"
9+
],
10+
"jsonUrl": "https://dev.studica.com/releases/2024/NavX.json",
11+
"javaDependencies": [
12+
{
13+
"groupId": "com.kauailabs.navx.frc",
14+
"artifactId": "navx-frc-java",
15+
"version": "2024.1.0"
16+
}
17+
],
18+
"jniDependencies": [],
19+
"cppDependencies": [
20+
{
21+
"groupId": "com.kauailabs.navx.frc",
22+
"artifactId": "navx-frc-cpp",
23+
"version": "2024.1.0",
24+
"headerClassifier": "headers",
25+
"sourcesClassifier": "sources",
26+
"sharedLibrary": false,
27+
"libName": "navx_frc",
28+
"skipInvalidPlatforms": true,
29+
"binaryPlatforms": [
30+
"linuxathena",
31+
"linuxraspbian",
32+
"linuxarm32",
33+
"linuxarm64",
34+
"linuxx86-64",
35+
"osxuniversal",
36+
"windowsx86-64"
37+
]
38+
}
39+
]
40+
}

0 commit comments

Comments
 (0)