upm/examples/java/BME280_Example.java
Mihai Tudor Panu 89d5de43e0 license: update to SPDX style license text throughout
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
2020-03-05 15:13:36 -08:00

57 lines
1.7 KiB
Java

/*
* Author: Jon Trulson <jtrulson@ics.com>
* Copyright (c) 2016 Intel Corporation.
*
* This program and the accompanying materials are made available under the
* terms of the The MIT License which is available at
* https://opensource.org/licenses/MIT.
*
* SPDX-License-Identifier: MIT
*/
import upm_bmp280.BME280;
public class BME280_Example
{
public static void main(String[] args) throws InterruptedException
{
// ! [Interesting]
// Instantiate a BME280 instance using default i2c bus and address
BME280 sensor = new BME280();
// For SPI, bus 0, you would pass -1 as the address, and a
// valid pin for CS:
// BME280(0, -1, 10);
while (true)
{
// update our values from the sensor
sensor.update();
System.out.println("Compensation Temperature: "
+ sensor.getTemperature()
+ " C / "
+ sensor.getTemperature(true)
+ " F");
System.out.println("Pressure: "
+ sensor.getPressure()
+ " Pa");
System.out.println("Computed Altitude: "
+ sensor.getAltitude()
+ " m");
System.out.println("Humidity: "
+ sensor.getHumidity()
+ " %RH");
System.out.println();
Thread.sleep(1000);
}
// ! [Interesting]
}
}