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

one.microproject.rpi.hardware.gpio.tests.BMP180Test Maven / Gradle / Ivy

package one.microproject.rpi.hardware.gpio.tests;

import one.microproject.rpi.hardware.gpio.sensors.BMP180;

public class BMP180Test {

	public static void main(String[] args) throws Exception {
		
		System.out.println("BMP180Test started ...");
		BMP180 bmp180 = new BMP180();
		float temp = bmp180.readTemperature();
		float pres = bmp180.readPressure();
		double alt = bmp180.readAltitude();
        System.out.println("temperature: " + temp + " C");
        System.out.println("pressure   : " + (pres/1000) + " kPa");
        System.out.println("altitude   : " + alt + " m");
		System.out.println("BMP180Test done.");

	}	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy