All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ociweb.iot.grove.oled.oled2.OLEDMode Maven / Gradle / Ivy

Go to download

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;

enum OLEDMode {
    instruction(0x80),
    data(0x40);

    public final int COMMAND;

    OLEDMode(int command) {
        this.COMMAND = command;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy