Change code from using now deprecated DT_<COMPAT>_<INSTANCE>_<PROP> defines to using DT_INST_<INSTANCE>_<COMPAT>_<PROP>. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
34 lines
852 B
C
34 lines
852 B
C
/*
|
|
* Copyright (c) 2018 Bosch Sensortec GmbH
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <zephyr.h>
|
|
#include <device.h>
|
|
#include <sensor.h>
|
|
#include <stdio.h>
|
|
|
|
void main(void)
|
|
{
|
|
struct device *dev = device_get_binding(DT_INST_0_BOSCH_BME680_LABEL);
|
|
struct sensor_value temp, press, humidity, gas_res;
|
|
|
|
printf("Device %p name is %s\n", dev, dev->config->name);
|
|
|
|
while (1) {
|
|
k_sleep(3000);
|
|
|
|
sensor_sample_fetch(dev);
|
|
sensor_channel_get(dev, SENSOR_CHAN_AMBIENT_TEMP, &temp);
|
|
sensor_channel_get(dev, SENSOR_CHAN_PRESS, &press);
|
|
sensor_channel_get(dev, SENSOR_CHAN_HUMIDITY, &humidity);
|
|
sensor_channel_get(dev, SENSOR_CHAN_GAS_RES, &gas_res);
|
|
|
|
printf("T: %d.%06d; P: %d.%06d; H: %d.%06d; G: %d.%06d\n",
|
|
temp.val1, temp.val2, press.val1, press.val2,
|
|
humidity.val1, humidity.val2, gas_res.val1,
|
|
gas_res.val2);
|
|
}
|
|
}
|