Skip to content

Commit

Permalink
Merge pull request #25 from tekktrik/main
Browse files Browse the repository at this point in the history
Add note about standard vs. atmospheric conditions
  • Loading branch information
gamblor21 authored Oct 7, 2022
2 parents f81469e + 3653471 commit 58ebcf3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion adafruit_pm25/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,13 @@ def _read_into_buffer(self) -> None:

def read(self) -> dict:
"""Read any available data from the air quality sensor and
return a dictionary with available particulate/quality data"""
return a dictionary with available particulate/quality data
Note that "standard" concentrations are those when corrected to
standard atmospheric conditions (288.15 K, 1013.25 hPa), and
"environmental" concentrations are those measure in the current
atmospheric conditions.
"""
self._read_into_buffer()
# print([hex(i) for i in self._buffer])

Expand Down

0 comments on commit 58ebcf3

Please sign in to comment.