forked from adafruit/Adafruit-Raspberry-Pi-Python-Code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdhtreader.c
179 lines (147 loc) · 3.54 KB
/
dhtreader.c
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/* Python module for DHT temperature/humidity sensors
*
* Modified by Qingping Hou from DHT reader example, original header:
*
* How to access GPIO registers from C-code on the Raspberry-Pi
* Example program
* 15-January-2012
* Dom and Gert
*/
/* for usleep */
#define _BSD_SOURCE
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <dirent.h>
#include <fcntl.h>
#include <assert.h>
#include <unistd.h>
#include <sys/mman.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <bcm2835.h>
#include <unistd.h>
#include <Python.h>
#define MAXTIMINGS 100
//#define DEBUG
#define DHT11 11
#define DHT22 22
#define AM2302 22
int readDHT(int type, int pin, float *temp_p, float *hum_p)
{
int counter = 0;
int laststate = HIGH;
int i = 0;
int j = 0;
int checksum = 0;
#ifdef DEBUG
int bitidx = 0;
int bits[250];
#endif
int data[100];
// Set GPIO pin to output
bcm2835_gpio_fsel(pin, BCM2835_GPIO_FSEL_OUTP);
bcm2835_gpio_write(pin, HIGH);
usleep(500000); // 500 ms
bcm2835_gpio_write(pin, LOW);
usleep(20000);
bcm2835_gpio_fsel(pin, BCM2835_GPIO_FSEL_INPT);
data[0] = data[1] = data[2] = data[3] = data[4] = 0;
// wait for pin to drop?
while (bcm2835_gpio_lev(pin) == 1) {
usleep(1);
}
// read data!
for (i = 0; i < MAXTIMINGS; i++) {
counter = 0;
while ( bcm2835_gpio_lev(pin) == laststate) {
counter++;
//nanosleep(1); // overclocking might change this?
if (counter == 1000)
break;
}
laststate = bcm2835_gpio_lev(pin);
if (counter == 1000) break;
#ifdef DEBUG
bits[bitidx++] = counter;
#endif
if ((i>3) && (i%2 == 0)) {
// shove each bit into the storage bytes
data[j/8] <<= 1;
if (counter > 200)
data[j/8] |= 1;
j++;
}
}
#ifdef DEBUG
for (int i=3; i<bitidx; i+=2) {
printf("bit %d: %d\n", i-3, bits[i]);
printf("bit %d: %d (%d)\n", i-2, bits[i+1], bits[i+1] > 200);
}
printf("Data (%d): 0x%x 0x%x 0x%x 0x%x 0x%x\n", j, data[0], data[1], data[2], data[3], data[4]);
#endif
if (j >= 39) {
checksum = (data[0] + data[1] + data[2] + data[3]) & 0xFF;
if (data[4] == checksum) {
/* yay! checksum is valid */
if (type == DHT11) {
/*printf("Temp = %d *C, Hum = %d \%\n", data[2], data[0]);*/
*temp_p = (float)data[2];
*hum_p = (float)data[0];
} else if (type == DHT22) {
*hum_p = data[0] * 256 + data[1];
*hum_p /= 10;
*temp_p = (data[2] & 0x7F)* 256 + data[3];
*temp_p /= 10.0;
if (data[2] & 0x80)
*temp_p *= -1;
/*printf("Temp = %.1f *C, Hum = %.1f \%\n", f, h);*/
}
return 0;
}
return -2;
}
return -1;
}
static PyObject *
dhtreader_init(PyObject *self, PyObject *args)
{
return Py_BuildValue("i", bcm2835_init());
}
static PyObject *
dhtreader_read(PyObject *self, PyObject *args)
{
int type, dhtpin;
if (!PyArg_ParseTuple(args, "ii", &type, &dhtpin))
return NULL;
float t, h;
int re = readDHT(type, dhtpin, &t, &h);
if (re == 0) {
return Py_BuildValue("(d,d)", t, h);
} else if (re == -1) {
#ifdef DEBUG
printf("sensor read failed! not enough data received\n");
#endif
} else if (re == -2) {
#ifdef DEBUG
printf("sensor read failed! checksum failed!\n");
#endif
}
return Py_BuildValue("");
}
static PyMethodDef DHTReaderMethods[] = {
{"init", dhtreader_init, METH_VARARGS,
"initialize dht reader"},
{"read", dhtreader_read, METH_VARARGS,
"temperature and humidity from sensor"},
{NULL, NULL, 0, NULL} /* Sentinel */
};
PyMODINIT_FUNC
initdhtreader(void)
{
PyObject *m;
m = Py_InitModule("dhtreader", DHTReaderMethods);
if (m == NULL)
return;
}