blob: 46abd6f2927aaf2756b67b3f4632a4f2c806c730 [file] [log] [blame]
/*
* Copyright (c) 2018 STMicroelectronics
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr.h>
#include <device.h>
#include <drivers/sensor.h>
#include <stdio.h>
#include <sys/util.h>
void main(void)
{
struct sensor_value temp1, temp2, hum, press;
struct sensor_value accel1[3], accel2[3];
struct sensor_value gyro[3];
struct sensor_value magn[3];
struct device *hts221 = device_get_binding(DT_INST_0_ST_HTS221_LABEL);
struct device *lps22hb = device_get_binding(DT_INST_0_ST_LPS22HB_PRESS_LABEL);
struct device *lsm6dsl = device_get_binding(DT_INST_0_ST_LSM6DSL_LABEL);
struct device *lsm303agr_a = device_get_binding(DT_INST_0_ST_LIS2DH_LABEL);
struct device *lsm303agr_m = device_get_binding(DT_INST_0_ST_LIS2MDL_LABEL);
if (hts221 == NULL) {
printf("Could not get HTS221 device\n");
return;
}
if (lps22hb == NULL) {
printf("Could not get LPS22HB device\n");
return;
}
if (lsm6dsl == NULL) {
printf("Could not get LSM6DSL device\n");
return;
}
if (lsm303agr_a == NULL) {
printf("Could not get LSM303AGR Accel device\n");
return;
}
if (lsm303agr_m == NULL) {
printf("Could not get LSM303AGR Magn device\n");
return;
}
/* set LSM6DSL accel/gyro sampling frequency to 104 Hz */
struct sensor_value odr_attr;
odr_attr.val1 = 104;
odr_attr.val2 = 0;
if (sensor_attr_set(lsm6dsl, SENSOR_CHAN_ACCEL_XYZ,
SENSOR_ATTR_SAMPLING_FREQUENCY, &odr_attr) < 0) {
printk("Cannot set sampling frequency for accelerometer.\n");
return;
}
if (sensor_attr_set(lsm6dsl, SENSOR_CHAN_GYRO_XYZ,
SENSOR_ATTR_SAMPLING_FREQUENCY, &odr_attr) < 0) {
printk("Cannot set sampling frequency for gyro.\n");
return;
}
while (1) {
int ret;
/* Get sensor samples */
if (sensor_sample_fetch(hts221) < 0) {
printf("HTS221 Sensor sample update error\n");
return;
}
if (sensor_sample_fetch(lps22hb) < 0) {
printf("LPS22HB Sensor sample update error\n");
return;
}
if (sensor_sample_fetch(lsm6dsl) < 0) {
printf("LSM6DSL Sensor sample update error\n");
return;
}
ret = sensor_sample_fetch(lsm303agr_a);
if (ret < 0 && ret != -EBADMSG) {
printf("LSM303AGR Accel Sensor sample update error\n");
return;
}
if (sensor_sample_fetch(lsm303agr_m) < 0) {
printf("LSM303AGR Magn Sensor sample update error\n");
return;
}
/* Get sensor data */
sensor_channel_get(hts221, SENSOR_CHAN_AMBIENT_TEMP, &temp1);
sensor_channel_get(hts221, SENSOR_CHAN_HUMIDITY, &hum);
sensor_channel_get(lps22hb, SENSOR_CHAN_PRESS, &press);
sensor_channel_get(lps22hb, SENSOR_CHAN_AMBIENT_TEMP, &temp2);
sensor_channel_get(lsm6dsl, SENSOR_CHAN_ACCEL_XYZ, accel1);
sensor_channel_get(lsm6dsl, SENSOR_CHAN_GYRO_XYZ, gyro);
sensor_channel_get(lsm303agr_a, SENSOR_CHAN_ACCEL_XYZ, accel2);
sensor_channel_get(lsm303agr_m, SENSOR_CHAN_MAGN_XYZ, magn);
/* Display sensor data */
/* Erase previous */
printf("\0033\014");
printf("X-NUCLEO-IKS01A2 sensor dashboard\n\n");
/* temperature */
printf("HTS221: Temperature: %.1f C\n",
sensor_value_to_double(&temp1));
/* humidity */
printf("HTS221: Relative Humidity: %.1f%%\n",
sensor_value_to_double(&hum));
/* pressure */
printf("LPS22HB: Pressure:%.3f kpa\n",
sensor_value_to_double(&press));
/* lps22hb temperature */
printf("LPS22HB: Temperature: %.1f C\n",
sensor_value_to_double(&temp2));
/* lsm6dsl accel */
printf("LSM6DSL: Accel (m.s-2): x: %.1f, y: %.1f, z: %.1f\n",
sensor_value_to_double(&accel1[0]),
sensor_value_to_double(&accel1[1]),
sensor_value_to_double(&accel1[2]));
/* lsm6dsl gyro */
printf("LSM6DSL: Gyro (dps): x: %.3f, y: %.3f, z: %.3f\n",
sensor_value_to_double(&gyro[0]),
sensor_value_to_double(&gyro[1]),
sensor_value_to_double(&gyro[2]));
/* lsm303agr accel */
printf("LSM303AGR: Accel (m.s-2): x: %.1f, y: %.1f, z: %.1f\n",
sensor_value_to_double(&accel2[0]),
sensor_value_to_double(&accel2[1]),
sensor_value_to_double(&accel2[2]));
/* lsm303agr magn */
printf("LSM303AGR: Magn (gauss): x: %.3f, y: %.3f, z: %.3f\n",
sensor_value_to_double(&magn[0]),
sensor_value_to_double(&magn[1]),
sensor_value_to_double(&magn[2]));
k_sleep(K_MSEC(2000));
}
}