mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
f72efb1daf
The Silicon Labs Si705x sensors (Si7050/1/3/4/5) are very similar to the Si7021 sensors featuring only a temperature sensor and no humidity sensor. The only difference between the Si705x is the temperature accuracy of the reading, ranging from +/- 0.1 C in the Si7051 to +/- 1 C in the Si7050. This patch adds support for this family of sensors extending the functionality of the existing si70xx driver. Following the style of other modules, this implements a pseudomodule per supported chip, adding si7050, si7051, si7053, si7054 and si7055 pseudomodules. As a minor change this patch also implements the missing si70xx_get_serial, si70xx_get_id and si70xx_get_revision functions that were declared in the si70xx.h header but implemented as private functions. The si70xx_get_id() may be relevant for the application to know at run time exactly which version of the hardware is installed. The updated test running with a Si7051 shows the following output, which seems consistent with the room temperature conditions during the test. ``` make SI70XX_VARIANT=si7051 -C tests/driver_si70xx/ all flash ``` ``` SI70XX temperature and humidity sensor test application Initializing sensor... [OK] Found SI7051 sensor, revision 32 temperature: 24.71 C temperature: 24.69 C ```
82 lines
1.9 KiB
C
82 lines
1.9 KiB
C
/*
|
|
* Copyright (C) 2016 Bas Stottelaar <basstottelaar@gmail.com>
|
|
*
|
|
* 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
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Test application for the Si7006/13/20/21 sensor driver
|
|
*
|
|
* @author Bas Stottelaar <basstottelaar@gmail.com>
|
|
*
|
|
* @}
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "xtimer.h"
|
|
|
|
#include "si70xx_params.h"
|
|
#include "si70xx.h"
|
|
|
|
int main(void)
|
|
{
|
|
si70xx_t dev;
|
|
|
|
puts("SI70XX temperature and humidity sensor test application");
|
|
|
|
/* initialize the sensor */
|
|
puts("Initializing sensor... ");
|
|
|
|
if (si70xx_init(&dev, &si70xx_params[0]) == 0) {
|
|
puts("[OK]");
|
|
}
|
|
else {
|
|
puts("[Failed]");
|
|
return 1;
|
|
}
|
|
|
|
printf("Found SI70%02d sensor, revision %d\n", si70xx_get_id(&dev),
|
|
si70xx_get_revision(&dev));
|
|
|
|
/* read temperature and humidity every 1 seconds */
|
|
bool both = false;
|
|
|
|
while (1) {
|
|
int16_t temperature;
|
|
#if SI70XX_HAS_HUMIDITY_SENSOR
|
|
uint16_t humidity;
|
|
|
|
/* rotate the way of getting the data */
|
|
if (both) {
|
|
si70xx_get_both(&dev, &humidity, &temperature);
|
|
}
|
|
else {
|
|
temperature = si70xx_get_temperature(&dev);
|
|
humidity = si70xx_get_relative_humidity(&dev);
|
|
}
|
|
#else /* SI70XX_HAS_HUMIDITY_SENSOR */
|
|
temperature = si70xx_get_temperature(&dev);
|
|
#endif /* SI70XX_HAS_HUMIDITY_SENSOR */
|
|
both = !both;
|
|
|
|
/* display results */
|
|
#if SI70XX_HAS_HUMIDITY_SENSOR
|
|
printf("relative humidity: %d.%02d\n", humidity / 100, humidity % 100);
|
|
#endif /* SI70XX_HAS_HUMIDITY_SENSOR */
|
|
printf("temperature: %d.%02d C\n", temperature / 100,
|
|
temperature % 100);
|
|
|
|
/* sleep between measurements */
|
|
xtimer_msleep(1000);
|
|
}
|
|
|
|
return 0;
|
|
}
|