![JAR search and dependency download from the Maven repository](/logo.png)
com.ociweb.iot.grove.oled.oled2.OLEDScrollDirection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of foglight Show documentation
Show all versions of foglight Show documentation
FogLight is a lightweight runtime that enables makers of all ages and skill levels to create highly
performant apps for embedded devices like Raspberry Pi's.
The newest version!
package com.ociweb.iot.grove.oled.oled2;
public enum OLEDScrollDirection {
right(0x27),
left(0x26);
public final int COMMAND;
OLEDScrollDirection(int command){
this.COMMAND = command;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy