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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
//! An interface to the DHT Digital Humidity and Temperature sensors.
//!
//! # Design
//! The design of this crate is inspired by:
//! - The [Adatfruit DHT cpp](https://github.com/adafruit/DHT-sensor-library/blob/master/DHT.cpp) code
//! - The [dht-hal-drv](https://crates.io/crates/dht-hal-drv) crate
//! - The [dht-hal](https://crates.io/crates/dht-hal) crate
//! - The [dht-sensor](https://crates.io/crates/dht-sensor) crate
//! - The [dht22_pi](https://crates.io/crates/dht22_pi) crate
//!
//! All of these libraries and also this library are basically the same,
//! only the interfaces are a little different.
//!
//! The code has been tested with DHT22 sensor, a Raspberry Pi 3B, and the rppal.
//!
//!
//! # Issues
//! This library makes use of the traits provided by
//! the [embedded-hal](https://crates.io/crates/embedded-hal) crate.
//! Unfortunately, a lot of stuff is still missing in embedded-hal, such as
//! traits for reconfigurable GPIOs and disabling interrupts.
//! Therefore it should be expected that this library will be change over time.
//!
//! # Usage
//! To create a driver for the DHT sensor, the caller have to provide the
//! following items:
//! - a GPIO pin, which implements the `InputPin` and `OutputPin` traits of `embedded-hal`.
//! Additionally, it should be able to reconfigure the pin (from output to input).
//! Unfortunately, this is currently not part of `embedded-hal`, so the trait from
//! this crate needs to be implemented.
//! - a timer providing the `DelayMs` and `DelayUs` traits.
//! - interrupts need to be suppressed while we are reading the signal line.
//! This crate provides a simple trait `InterruptCtrl` for this purpose.
//!
//! # Example: Using the library on a Raspberry Pi
//!
//! ## Implementing the GPIO interfaces.
//! You can use `rppal` to control the GPIO pin.
//! However, a wrapper needs to be implemented because of the "orphan" rule for
//! implementation of external traits for external structs.
//!
//! ```
//! extern crate rppal;
//! use rppal::gpio::{Gpio, Mode, PullUpDown};
//! extern crate hal_sensor_dht;
//! use hal_sensor_dht::{DHTSensor, SensorType};
//!
//! struct MyPin(rppal::gpio::IoPin);
//!
//! impl MyPin {
//! pub fn new(pin: rppal::gpio::Pin) -> MyPin {
//! MyPin(pin.into_io(Mode::Input))
//! }
//! }
//!
//! impl InputPin for MyPin {
//! type Error = <rppal::gpio::IoPin as InputPin>::Error;
//! fn is_high(&self) -> Result<bool, <rppal::gpio::IoPin as InputPin>::Error> {
//! Ok(self.0.is_high())
//! }
//! fn is_low(&self) -> Result<bool, <rppal::gpio::IoPin as InputPin>::Error> {
//! Ok(self.0.is_low())
//! }
//! }
//!
//! impl OutputPin for MyPin {
//! type Error = <rppal::gpio::IoPin as OutputPin>::Error;
//! fn set_high(&mut self) -> Result<(), <rppal::gpio::IoPin as OutputPin>::Error> {
//! Ok(self.0.set_high())
//! }
//! fn set_low(&mut self) -> Result<(), <rppal::gpio::IoPin as OutputPin>::Error> {
//! Ok(self.0.set_low())
//! }
//! }
//!
//! impl hal_sensor_dht::IoPin for MyPin {
//! fn set_input_pullup_mode(&mut self) {
//! self.0.set_mode(Mode::Input);
//! self.0.set_pullupdown(PullUpDown::PullUp);
//! }
//! fn set_output_mode(&mut self) {
//! self.0.set_mode(Mode::Output);
//! }
//! }
//! ```
//!
//! ## Implementing the Delay interfaces.
//! The `DelayMs` is no problem, but microsecond delay is. However, only need a
//! a tiny delay, therefore we use write and read operation to produce such small
//! delay.
//!
//! ```
//! use std::thread;
//! use std::time::Duration;
//! use rppal::gpio::{Gpio, Mode, PullUpDown};
//!
//! use std::ptr::read_volatile;
//! use std::ptr::write_volatile;
//! struct MyTimer {}
//!
//! impl DelayUs<u16> for MyTimer {
//! fn delay_us(&mut self, t:u16) {
//! let mut i = 0;
//! unsafe {
//! while read_volatile(&mut i) < t {
//! write_volatile(&mut i, read_volatile(&mut i) + 1);
//! }
//! }
//! }
//! }
//!
//! impl DelayMs<u16> for MyTimer {
//! fn delay_ms(&mut self, ms: u16) {
//! thread::sleep(Duration::from_millis(ms.into()));
//! }
//! }
//! ```
//!
//! ## Disabling Interrupts.
//!
//! You will use `sched_setscheduler` from the `libc` crate for this purpose.
//! This is good enough for reading the sensor data.
//!
//! ```
//! extern crate libc;
//! use libc::sched_param;
//! use libc::sched_setscheduler;
//! use libc::SCHED_FIFO;
//! use libc::SCHED_OTHER;
//!
//! struct MyInterruptCtrl {}
//!
//! impl hal_sensor_dht::InterruptCtrl for MyInterruptCtrl {
//! fn enable(&mut self) {
//! unsafe {
//! let param = sched_param { sched_priority: 32 };
//! let result = sched_setscheduler(0, SCHED_FIFO, ¶m);
//!
//! if result != 0 {
//! panic!("Error setting priority, you may not have cap_sys_nice capability");
//! }
//! }
//! }
//! fn disable(&mut self) {
//! unsafe {
//! let param = sched_param { sched_priority: 0 };
//! let result = sched_setscheduler(0, SCHED_OTHER, ¶m);
//!
//! if result != 0 {
//! panic!("Error setting priority, you may not have cap_sys_nice capability");
//! }
//! }
//! }
//! }
//! ```
//!
//! ## Putting it all together
//!
//! OK, finally we are done! Here is some example code for the main function.
//! Keep in mind, that there should be a delay between two calls of the `read` function.
//! You will not get a valid result every time, the function is called. But it
//! should be good enough to monitor the temperature of your room.
//!
//! ```
//! fn main() {
//! let pin_number = 12;
//! if let Ok(gpio) = Gpio::new() {
//! if let Ok(pin) = gpio.get(pin_number) {
//! let my_pin = MyPin::new(pin);
//! let my_timer = MyTimer{};
//! let my_interrupt = MyInterruptCtrl{};
//! let mut sensor = DHTSensor::new(SensorType::DHT22, my_pin, my_timer, my_interrupt);
//!
//! for _i in 0 .. 200 {
//! if let Ok(r) = sensor.read() {
//! println!("Temperature = {} / {} and humidity = {}",
//! r.temperature_celsius(),
//! r.temperature_fahrenheit(),
//! r.humidity_percent());
//! }
//! thread::sleep(Duration::from_secs(10));
//! }
//! } else {
//! println!("Error: Could not get the pin!")
//! }
//! } else {
//! println!("Error: Could not get the GPIOs!")
//! }
//! }
//! ```
//! ## Dependencies
//! For this example, you need the `libc` crate, the `rppal` crate, the
//! `embedded-hal` crate, and of cause this crate!
//!
//! ```
//! [dependencies]
//! libc = "0.2.21"
//!
//! [dependencies.hal_sensor_dht]
//! path = "../hal_sensor_dht"
//! features = ["floats"]
//!
//! [dependencies.embedded-hal]
//! version = "0.2.4"
//! features = ["unproven"]
//!
//! [dependencies.rppal]
//! version = "0.11.3"
//! features = ["hal", "hal-unproven"]
//! ```
extern crate embedded_hal;
use ;
use ;
/// The maximum number of cycle loops when reading the signal line.
const MAX_CYCLES:u32 = 100_000;
/// The possible DHT errors.
///
/// `Timeout` is used when we get a timeout while expecting a pulse on the signal line.
/// `Pin` is used, when there is an error with the GPIO library.
/// `Checksum` is used, when the checksum of the data read is not correct.
/// The supported DHT sensor types.
/// Internally used for signal level. Should be part of the HAL library...
/// Currently, the HAL library only supports `InputPin` and `OutputPin`, but we need a pin,
/// which can be reconfigured. Therefore, the GPIO type used should also provide the following
/// functions.
/// Trait for an type which controls interrupt handling of the target architeture.
/// This structure provides the result of the reading.
///
/// - temperature is the temperature in 1/10 degrees celsius.
/// - humidity is the humdity in 1/10 percent.
/// Interface for the DHT sensor.