Skip to content

Setting Up

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.

  1. Create a runs package under the user package. When writing your run files, place them inside.
  2. 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.

Clone this wiki locally