Skip to content

Team3256/FRC_Programming_2025

Repository files navigation

FRC_Programming_2025

Setup

git clone https://github.com/Team3256/FRC_Programming_2025.git
# Only needs to run this once to install deps
./gradlew build

Optionally, install the pre-commit hook:

cat <<EOF > .git/hooks/pre-commit
#!/bin/sh
stagedFiles=$(git diff --staged --name-only)
echo "Running spotlessApply. Formatting code..."
./gradlew spotlessApply
for file in $stagedFiles; do
  if test -f "$file"; then
    git add $file
  fi
done
EOF

Development

Run Glass sim:

./gradlew simulateJava

Or to deploy to the real robot, make sure you have the ethernet connected to your computer and then run:

./gradlew deploy

Before you commit your changes, remember to run Spotless:

./gradlew spotlessApply

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 7

Languages