2017-03-31 16:03:33 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 OTA keys S.A.
|
2017-07-03 17:21:24 +02:00
|
|
|
* 2017 HAW Hamburg
|
2017-03-31 16:03:33 +02:00
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2017-07-03 17:21:24 +02:00
|
|
|
* @ingroup tests
|
|
|
|
* @{
|
|
|
|
*
|
2017-03-31 16:03:33 +02:00
|
|
|
* @file
|
|
|
|
* @brief Test application for the LSM6DSL accelerometer/gyroscope driver.
|
|
|
|
*
|
|
|
|
* @author Vincent Dupont <vincent@otakeys.com>
|
2017-07-03 17:21:24 +02:00
|
|
|
* @author Sebastian Meiling <s@mlng.net>
|
2017-03-31 16:03:33 +02:00
|
|
|
*
|
2017-07-03 17:21:24 +02:00
|
|
|
* @}
|
2017-03-31 16:03:33 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "xtimer.h"
|
|
|
|
#include "lsm6dsl.h"
|
|
|
|
#include "lsm6dsl_params.h"
|
|
|
|
|
2017-07-03 17:21:24 +02:00
|
|
|
#define SLEEP (500UL * US_PER_MS)
|
2017-03-31 16:03:33 +02:00
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
lsm6dsl_t dev;
|
|
|
|
int16_t temp_value;
|
|
|
|
lsm6dsl_3d_data_t mag_value;
|
|
|
|
lsm6dsl_3d_data_t acc_value;
|
|
|
|
|
2017-07-03 17:21:24 +02:00
|
|
|
puts("LSM6DSL test application");
|
2017-03-31 16:03:33 +02:00
|
|
|
printf("Initializing LSM6DSL sensor at I2C_%i... ", lsm6dsl_params->i2c);
|
|
|
|
|
2017-07-03 17:21:24 +02:00
|
|
|
if (lsm6dsl_init(&dev, lsm6dsl_params) != LSM6DSL_OK) {
|
|
|
|
puts("[ERROR]");
|
2017-03-31 16:03:33 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2017-07-03 17:21:24 +02:00
|
|
|
puts("[SUCCESS]\n");
|
2017-03-31 16:03:33 +02:00
|
|
|
|
|
|
|
while (1) {
|
2017-07-03 17:21:24 +02:00
|
|
|
if (lsm6dsl_read_acc(&dev, &acc_value) == LSM6DSL_OK) {
|
2017-03-31 16:03:33 +02:00
|
|
|
printf("Accelerometer x: %i y: %i z: %i\n", acc_value.x,
|
|
|
|
acc_value.y,
|
|
|
|
acc_value.z);
|
|
|
|
}
|
|
|
|
else {
|
2017-07-03 17:21:24 +02:00
|
|
|
puts("[ERROR] reading accelerometer!\n");
|
2017-03-31 16:03:33 +02:00
|
|
|
}
|
|
|
|
|
2017-07-03 17:21:24 +02:00
|
|
|
if (lsm6dsl_read_gyro(&dev, &mag_value) == LSM6DSL_OK) {
|
2017-03-31 16:03:33 +02:00
|
|
|
printf("Gyroscope x: %i y: %i z: %i\n", mag_value.x,
|
|
|
|
mag_value.y,
|
|
|
|
mag_value.z);
|
|
|
|
}
|
|
|
|
else {
|
2017-07-03 17:21:24 +02:00
|
|
|
puts("[ERROR] reading gyroscope!\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lsm6dsl_read_temp(&dev, &temp_value) == LSM6DSL_OK) {
|
|
|
|
printf("Temperature [in °C x 100]: %i \n", temp_value);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
puts("[ERROR] reading temperature!\n");
|
2017-03-31 16:03:33 +02:00
|
|
|
}
|
|
|
|
|
2017-07-03 17:21:24 +02:00
|
|
|
puts("");
|
2017-03-31 16:03:33 +02:00
|
|
|
xtimer_usleep(SLEEP);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|