a752c7ab
elopes
add first test an...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
/*
* Copyright (C) 2016 Freie Universitรคt Berlin
*
* 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 drivers_dht
* @{
*
* @file
* @brief SAUL adaption for DHT devices
*
* The values exported to SAUL for DHT devices are buffered, meaning that new
* values will only be read from the device, if the buffered values are older
* then 1 second (being exactly the maximum sampling time for DHT devices).
*
* This buffering does further introduce a coupling between both SAUL endpoints,
* meaning that if you read from both endpoints after each other, both values
* are from the same sensor reading.
*
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
*
* @}
*/
#include <string.h>
#include "saul.h"
#include "dht.h"
#include "xtimer.h"
#define DHT_SAUL_HOLD_TIME (1000 * 1000U) /* 1s */
static int16_t temp, hum;
static uint32_t last = 0;
static int check_and_read(const void *dev, phydat_t *res, int16_t *val, uint8_t unit)
{
uint32_t now = xtimer_now_usec();
if ((now - last) > DHT_SAUL_HOLD_TIME) {
dht_read((const dht_t *)dev, &temp, &hum);
last = now;
}
res->val[0] = *val;
memset(&res->val[1], 0, 2 * sizeof(int16_t));
res->unit = unit;
res->scale = -1;
return 1;
}
static int read_temp(const void *dev, phydat_t *res)
{
return check_and_read(dev, res, &temp, UNIT_TEMP_C);
}
static int read_hum(const void *dev, phydat_t *res)
{
return check_and_read(dev, res, &hum, UNIT_PERCENT);
}
const saul_driver_t dht_temp_saul_driver = {
.read = read_temp,
.write = saul_notsup,
.type = SAUL_SENSE_TEMP
};
const saul_driver_t dht_hum_saul_driver = {
.read = read_hum,
.write = saul_notsup,
.type = SAUL_SENSE_HUM
};
|