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

com.ociweb.iot.grove.six_axis_accelerometer.AccelerometerMagScale 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.six_axis_accelerometer;

public enum AccelerometerMagScale {
    gauss2(0x00<<5),
    gauss4(0x01<<5),
    gauss8(0x02<<5),
    gauss12(0x03<<5);

    private final int specification;

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

    int getSpecification() {
        return specification;
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy