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

com.ociweb.iot.grove.six_axis_accelerometer.AccelerometerMagRes Maven / Gradle / Ivy

package com.ociweb.iot.grove.six_axis_accelerometer;

public enum AccelerometerMagRes {
    low(0x00<<5),
    high(0x03<<5);

    private final int specification;

    AccelerometerMagRes(int specification) {
        this.specification = specification;
    }

    int getSpecification() {
        return specification;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy