Skip to content

Commit 58ebcf3

Browse files
authored
Merge pull request #25 from tekktrik/main
Add note about standard vs. atmospheric conditions
2 parents f81469e + 3653471 commit 58ebcf3

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

adafruit_pm25/__init__.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,13 @@ def _read_into_buffer(self) -> None:
7474

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

0 commit comments

Comments
 (0)