Img.1. - Let's turn on the LegoBrick again and make remote project based on Gradle
The previous post about Lego MindStorm EV3 has been focused on its installation. I've touched how to install JavaJDK setup Wifi on LegoBrick + small sample "hello world" project. This blog post is about setting up little more advanced project. The simple HelloWorldGradle Remote project uses:
The legoBrick, connected to the WiFi, is possible to access remotely without problem using Java Remote Method Invocation, shortly RMI.
RemoteEV3 ev3Brick = new RemoteEV3(EV3BRICK_IP);
ev3Brick.setDefault();
Before we start working on the sample source code we create Gradle project. We can randomly choose the project as HelloWorldGradle. Important is to setup Gradle property file "build.gradle" correctly
jar library "ev3classes" is very important! This library creates the gateway into the lego hardware by using RMI because EV3 acts as the RMI Registry. You need to create it by yourself.
This library can be created by maven with usage of maven-assembly-plugin. The final *.jar file can then easily imported into the local maven cache. Now we are ready to remotely access our Lego MindStorm robot and in our case let him to play some short song.
RemoteEV3 ev3Brick = new RemoteEV3(EV3BRICK_IP);
ev3Brick.setDefault();
Audio soundProcessor = ev3Brick.getAudio();
List tones = new ArrayList<>(asList(0,1,2,3,4,5));
tones.forEach(tone -> {
soundProcessor.systemSound(tone);
});
The sample LejOS remote project HelloWorldGradle is available here (GITHub). Enjoy !
I do believe that the default lego software for EV3 is pretty awesome ;) but my interest belongs to java virtual machine which implies installation of LeJOS.
Let's prepare LeJOS SD card for the mission: 1. from the manual: card must be bigger than 2GB and FAT32 2. unpack leJOS file -> go to the folder -> copy the lejosimage.zip file to the SD Card 3. unpack lejosimage.zip 4. copy downloaded Java SE file to the CD-Card (SD Card root) 5. put SD-CARD to the Lego Brick and finally startup
To work with LeJOS comfortably is required to have WiFi connection via dongle (Img.2.). Then is possible to deploy directly for the IDE (IntelliJ IDEA 13.x in my case) to Lego Brick.
Img.2.:: supported NetGear N150 USB Wireless Adapter
Prepare Wifi Connection: 1. Boot Brick and select Control -> Wifi -> select network with WPA2
Img.3.:set the wifi password
2. Create a sample maven program (how to will be the topic of the next blog post)
Img.4.: favorite IDE IntelliJ IDEA 13.x with Maven Lego Project inside and upload command
for those who want to use maven directly for the deployment they need to configure maven-antrun-plugin So now we have Lego Mindstorm EV3 ready for read development and sensors usage...