1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/drivers/hdc1000/main.c

65 lines
1.4 KiB
C
Raw Normal View History

2014-11-24 00:17:02 +01:00
/*
* Copyright (C) 2014-2017 Freie Universität Berlin
2014-11-24 00:17:02 +01:00
* Copyright (C) 2014 PHYTEC Messtechnik GmbH
*
* 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.
*/
/**
* @ingroup tests
2014-11-24 00:17:02 +01:00
* @{
*
* @file
* @brief Test application for the HDC1000 sensor driver
2014-11-24 00:17:02 +01:00
*
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
* @author Johann Fischer <j.fischer@phytec.de>
*
* @}
*/
#include <stdio.h>
#include "fmt.h"
#include "xtimer.h"
2014-11-24 00:17:02 +01:00
#include "hdc1000.h"
#include "hdc1000_params.h"
2014-11-24 00:17:02 +01:00
#define SLEEP_USEC (1000 * 1000U)
2014-11-24 00:17:02 +01:00
int main(void)
{
hdc1000_t dev;
int16_t temp, hum;
char tstr[8];
char hstr[8];
2014-11-24 00:17:02 +01:00
puts("HDC1000 Temperature and Humidity Sensor driver test application\n");
printf("Initializing HDC1000 sensor at I2C_DEV(%i)... ",
(int)hdc1000_params[0].i2c);
if (hdc1000_init(&dev, &hdc1000_params[0]) == HDC1000_OK) {
2014-11-24 00:17:02 +01:00
puts("[OK]\n");
}
else {
puts("[Failed]");
return 1;
2014-11-24 00:17:02 +01:00
}
while (1) {
2017-03-10 17:06:04 +01:00
size_t len;
hdc1000_read(&dev, &temp, &hum);
2014-11-24 00:17:02 +01:00
len = fmt_s16_dfp(tstr, temp, -2);
tstr[len] = '\0';
len = fmt_s16_dfp(hstr, hum, -2);
hstr[len] = '\0';
printf("Reading: T: %s °C RH: %s %%\n", tstr, hstr);
2014-11-24 00:17:02 +01:00
xtimer_usleep(SLEEP_USEC);
2014-11-24 00:17:02 +01:00
}
return 0;
}