Skip to content

Commit 18a3a32

Browse files
committed
Ripple effect; GPIO 1.9
1 parent 745de45 commit 18a3a32

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
The DHT11 library is an Arduino-GPIO based device driver for the DHTXX
33
Humidity and Temperature Sensor (DHT11, DHT21 and DHT22).
44

5-
Version: 1.1
5+
Version: 1.2
66

77
## Classes
88

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Arduino-DHT
2-
version=1.1
2+
version=1.2
33
author=Mikael Patel
44
maintainer=Mikael Patel <mikael.patel@gmail.com>
55
sentence=Digital Humidity and Temperature (DHT) Sensor library for Arduino.

mainpage.dox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
The DHT library is an Arduino-GPIO based device driver for the DHTXX
44
Humidity and Temperature Sensors (DHT11, DHT21 and DHT22).
55

6-
Version: 1.1
6+
Version: 1.2
77
*/
88

99
/** @page License

src/DHT.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class DHT {
4949
m_humidity(0),
5050
m_temperature(0)
5151
{
52-
m_data.open_collector();
52+
m_data.open_drain();
5353
}
5454

5555
/**

0 commit comments

Comments
 (0)