Skip to content

Commit

Permalink
ref #9 : removed dio library & prepared environment
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertLucian committed May 4, 2017
1 parent 4d5de0c commit 07e1673
Show file tree
Hide file tree
Showing 12 changed files with 1 addition and 258 deletions.
31 changes: 0 additions & 31 deletions Software/Java8/GrovePi-dio/.classpath

This file was deleted.

23 changes: 0 additions & 23 deletions Software/Java8/GrovePi-dio/.project

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

26 changes: 0 additions & 26 deletions Software/Java8/GrovePi-dio/pom.xml

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

4 changes: 1 addition & 3 deletions Software/Java8/examples/nbproject/project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,13 @@ dist.jar=${dist.dir}/examples.jar
dist.javadoc.dir=${dist.dir}/javadoc
endorsed.classpath=
excludes=
file.reference.GrovePi-dio-0.1.0-SNAPSHOT.jar=..\\GrovePi-dio\\target\\GrovePi-dio-0.1.0-SNAPSHOT.jar
file.reference.GrovePi-pi4j-0.1.0-SNAPSHOT.jar=..\\GrovePi-pi4j\\target\\GrovePi-pi4j-0.1.0-SNAPSHOT.jar
file.reference.GrovePi-spec-0.1.0-SNAPSHOT.jar=..\\GrovePi-spec\\target\\GrovePi-spec-0.1.0-SNAPSHOT.jar
includes=**
jar.compress=false
javac.classpath=\
${file.reference.GrovePi-spec-0.1.0-SNAPSHOT.jar}:\
${file.reference.GrovePi-pi4j-0.1.0-SNAPSHOT.jar}:\
${file.reference.GrovePi-dio-0.1.0-SNAPSHOT.jar}
${file.reference.GrovePi-pi4j-0.1.0-SNAPSHOT.jar}
# Space-separated list of extra javac options
javac.compilerargs=
javac.deprecation=false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
import java.util.logging.Level;
import java.util.logging.Logger;
import org.iot.raspberry.grovepi.GrovePi;
import org.iot.raspberry.grovepi.dio.GrovePiDio;
import org.iot.raspberry.grovepi.pi4j.GrovePi4J;

public class Runner {
Expand All @@ -38,9 +37,6 @@ public static void main(String[] args) throws Exception {
String mode = args[0];
GrovePi grovePi;
switch (mode.toLowerCase()) {
case "dio":
grovePi = new GrovePiDio();
break;
case "pi4j":
grovePi = new GrovePi4J();
break;
Expand Down
1 change: 0 additions & 1 deletion Software/Java8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,5 @@
<modules>
<module>GrovePi-spec</module>
<module>GrovePi-pi4j</module>
<module>GrovePi-dio</module>
</modules>
</project>

0 comments on commit 07e1673

Please sign in to comment.