Skip to content

Commit

Permalink
contrib-drivers/rainbowhat: add missing LEDSTRIP_LENGTH
Browse files Browse the repository at this point in the history
Change-Id: I3aab8e94b664fe8e676dc006a81c9b3b29116b34
  • Loading branch information
proppy committed Dec 19, 2016
1 parent 23bc0ca commit 0031477
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion rainbowhat/publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ allprojects {
apply from: 'build.gradle'
apply plugin: 'maven-publish'

def packageVersion = '0.1'
def packageVersion = '0.2'

task sourceJar(type: Jar) {
classifier = 'sources'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public class RainbowHat {
public static final String LED_RED = "BCM6";
public static final String LED_GREEN = "BCM19";
public static final String LED_BLUE = "BCM26";
public static final int LEDSTRIP_LENGTH = 7;

public static Bmx280 openSensor() throws IOException {
return new Bmx280(BUS_SENSOR);
Expand Down

0 comments on commit 0031477

Please sign in to comment.