-
Notifications
You must be signed in to change notification settings - Fork 2
/
DHTreader2.c
174 lines (142 loc) · 3.47 KB
/
DHTreader2.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
/**** Python module for DHT temperature/humidity sensors
gcc -shared -I/usr/include/python2.7/ -lpython2.7 -o DHTreader2.so DHTreader2.c -I/usr/local/include -L/usr/local/lib -lwiringPi -lwiringPiDev
****/
#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 <wiringPi.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;
struct timeval start;
struct timeval end;
unsigned long diff;
#ifdef DEBUG
int bitidx = 0;
int bits[250];
#endif
int data[100];
// Set GPIO pin to output
pinMode(pin, OUTPUT);
digitalWrite(pin, HIGH);
usleep(500000); // 500 ms
digitalWrite(pin, LOW);
usleep(20000);
pinMode(pin, INPUT);
data[0] = data[1] = data[2] = data[3] = data[4] = 0;
// wait for pin to drop?
while (digitalRead(pin) == 1) {
usleep(1);
}
// read data!
for (i = 0; i < MAXTIMINGS; i++) {
counter = 0;
while ( digitalRead(pin) == laststate) {
counter++;
//nanosleep(1); // overclocking might change this?
if (counter == 1000)
break;
}
laststate = digitalRead(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 *
DHTreader2_init(PyObject *self, PyObject *args)
{
return Py_BuildValue("i", wiringPiSetup());
}
static PyObject *
DHTreader2_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 DHTReader2Methods[] = {
{"init", DHTreader2_init, METH_VARARGS,
"initialize DHT reader"},
{"read", DHTreader2_read, METH_VARARGS,
"temperature and humidity from sensor"},
{NULL, NULL, 0, NULL} /* Sentinel */
};
PyMODINIT_FUNC
initDHTreader2(void)
{
PyObject *m;
m = Py_InitModule("DHTreader2", DHTReader2Methods);
if (m == NULL)
return;
}