You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
johnmeshulam edited this page Nov 10, 2019
·
3 revisions
After you've cloned the project and converted it into a leJOS EV3 project as described in the README, it's time to set up your project.
This is the recommended project setup. Feel free to organize your files inside FLL-leJOS however you like, but if you don't know where to start, this might be useful.
Create a runs package under the user package. When writing your run files, place them inside.
Create a utils package under the user package. Place your helper classes and functions inside, or even create your own subpackages for further organization.
Your project should look like this:
* src
* main
* robot
* user
* runs
* utils
HardwareCreator.java
RunCreator.java
In all further wiki examples and tutorials, this package layout will be used.