com.skylarwatson.blinky.api.config.LED Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blinky Show documentation
Show all versions of blinky Show documentation
Java API for interacting with blink(1) USB
The newest version!
package com.skylarwatson.blinky.api.config;
public enum LED {
BOTH(0x00),
TOP(0x01),
BOTTOM(0x02);
byte value;
LED(int value) {
this.value = (byte) value;
}
public byte value() {
return value;
}
}