-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix #8 resetSensor() * update readme.md
- Loading branch information
1 parent
2fc2c11
commit bf043d8
Showing
9 changed files
with
140 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Change Log DHT20 | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
|
||
## [0.2.0] - 2022-10-30 | ||
- add changelog.md | ||
- add rp2040 to build-CI | ||
- add workaround for #8 to readme.md | ||
- fix requestFrom() ambiguity | ||
- fix #8 - embed **resetSensor()** into **read()**. | ||
This makes reads slightly slower. | ||
- update readme.md | ||
|
||
---- | ||
|
||
## [0.1.4] - 2022-09-18 | ||
- add resetSensor() code. | ||
- add comments in .h file | ||
- add examples | ||
- stabilize readStatus() | ||
- update readme.md | ||
|
||
## [0.1.3] - 2022-09-17 | ||
- add wrapper status functions | ||
- improve performance read() | ||
- refactor, update readme.md | ||
|
||
## [0.1.2] - 2022-09-16 | ||
- fix #4 DHT20_ERROR_BYTES_ALL_ZERO error condition. | ||
- fix keywords | ||
- add readStatus() fix _readStatus() | ||
- add setWireTimeout(250000, true); // in comments | ||
|
||
## [0.1.1] - 2022-09-10 | ||
- add hardware schema to readme.md. | ||
- fix async interface (first version) | ||
|
||
## [0.1.0] - 2022-01-11 | ||
- initial version (based upon DHT20 datasheet) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
...Arduino\libraries\DHT20\examples\DHT20\DHT20.ino | ||
DHT20 LIBRARY VERSION: 0.2.0 | ||
|
||
IDE 1.8.19 | ||
Arduino UNO | ||
|
||
Type Humidity (%) Temp (°C) Time (µs) Status | ||
DHT20 76.2 19.2 45964 OK | ||
DHT20 76.1 19.2 45960 OK | ||
DHT20 75.8 19.2 45956 OK | ||
DHT20 75.6 19.2 45952 OK | ||
DHT20 75.4 19.2 45972 OK | ||
DHT20 75.2 19.2 45976 OK | ||
DHT20 75.1 19.2 45964 OK | ||
DHT20 74.9 19.2 45960 OK | ||
DHT20 74.8 19.2 45956 OK | ||
DHT20 74.6 19.2 45960 OK | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name=DHT20 | ||
version=0.1.4 | ||
version=0.2.0 | ||
author=Rob Tillaart <[email protected]> | ||
maintainer=Rob Tillaart <[email protected]> | ||
sentence=Arduino library for I2C DHT20 temperature and humidity sensor. | ||
|