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

berlin.yuna.tinkerforgesensor.model.LedState Maven / Gradle / Ivy

package berlin.yuna.tinkerforgesensor.model;

public class LedState {
    final int id;
    final int state;

    public LedState(int id, int state) {
        this.id = id;
        this.state = state;
    }

    public int getId() {
        return id;
    }

    public int getState() {
        return state;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy