Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
HoldYourWaffle committed Aug 15, 2018
1 parent 3dc5ea4 commit 9aa7c03
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repositories {
}
dependencies {
compile 'com.github.HoldYourWaffle:blinkt4j:v1.1'
compile 'com.github.HoldYourWaffle:blinkt4j:v1.2'
}
```

Expand All @@ -43,7 +43,7 @@ public class BlinktExample {

blinkt.set(i-1, Color.RED); //set the left pixel to red
blinkt.set(i, 0, 255, 0); //set the middle pixel to green
blinkt.set(i+1, Color.BLUE, 1); //set the last pixel to blue with full brightness
blinkt.set(i+1, Color.BLUE, 1); //set the last pixel to blue at full brightness

blinkt.push(); //push state to the GPIO pins

Expand All @@ -66,6 +66,6 @@ public class BlinktExample {
}
```

For futher information you can read the included javadocs.
For futher information read the included javadocs.

If you get permission denied errors either run your program with `sudo` or add the user to the `gpio` group with: `sudo usermod -a -G gpio username` (the default user is `pi`)
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apply plugin: 'java-library'
version = 1.1
version = 1.2

sourceCompatibility = targetCompatibility = 1.8 //same as pi4j

Expand Down

0 comments on commit 9aa7c03

Please sign in to comment.