Skip to content

leroycep/java-rov

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Java ROV

This is the top-side program for the Lakeview Technology Academy's ROV club, written in java.

Running the Program

To run the program, use the following commands:

git clone https://github.com/SubAquaticsROV/java-rov.git
cd java-rov
.\gradlew.bat run # OR ./gradlew run on linux 

Issues Running the Program

Q: Why isn't the command line interface working?

A: Gradle takes control of the System.in and System.out when it is running the program, so it may be interfering with the program. To ensure best results, use the following commands to run the program.

cd java-rov                              # Navigate into our local repository
.\gradlew.bat installDist unpackNatives  # Unpack natives
.\gradlew.bat installDist                # Make easy to run distribution
cd build\install\java-rov                # Navigate to distribution folder
.\bin\java-rov.bat                       # run the program

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%