This project isn't dead. Just "not very active" in development.
An ev3dev unified language binding for Java, that followed with the language wrapper specification.
If you are finding a document or a tutorial for a specific version, come to https://mob41.github.io/ev3dev-lang-java
This library supports ev3dev kernel version 17:
v4.4.32-17-ev3dev-ev3for EV3v4.4.31-ti-rt-r67-17-ev3dev-bb.orgfor BeagleBonev4.4.32-17-ev3dev-rpifor Raspberry Pi 0/1v4.4.32-17-ev3dev-rpi2for Raspberry Pi 2/3
All the drivers and functions listed in the language wrapper specification are all supported, but without confirming the stability of those devices.
Other motors listed in http://www.ev3dev.org/docs/motors are also supported. DCMotor handles rcx-motor motors.
Other sensors listed in http://www.ev3dev.org/docs/sensors are still in heavy development.
Still in heavy development, please don't expect all things to be working, see issue #15 for more details or tracking development stage.
This library currently does not have any releases, but snapshots (nightly builds) instead.
You can download the latest snapshot from the OSSRH repository directly or via Maven:
-
Add the Sonatype snapshot repository.
<repositories> <repository> <id>oss-sonatype</id> <name>oss-sonatype</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories>
-
Add the dependency.
<dependency> <groupId>org.ev3dev</groupId> <artifactId>ev3dev-lang-java</artifactId> <version>1.0.0-SNAPSHOT</version> </dependency>
You can build your own library with some steps.
-
Ensure you have Maven installed in your system
-
Clone this repository
-
Switch to the repository directory
cd ev3dev-lang-java
-
Build!
maven package
-
Switch to the
targetdirectorycd target
-
There should have
ev3dev-lang-java-x.x.x-x.jarandev3dev-lang-java-x.x.x-x-jar-with-dependencies.jarin the directory.
This project is based on the MIT License
MIT License
Copyright (c) 2016 Anthony Law
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.