Skip to content

Commit

Permalink
more README
Browse files Browse the repository at this point in the history
  • Loading branch information
jbanaszczyk committed May 14, 2018
1 parent 53f8aad commit 4e1e161
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
Binary file modified Compatibility.md
Binary file not shown.
6 changes: 3 additions & 3 deletions Examples/p01basic/p01basic.ino
Original file line number Diff line number Diff line change
Expand Up @@ -68,16 +68,16 @@ void loop(void) {
Serial.println(newRead - lastRead);
lastRead = newRead;

auto view = data.particles;
auto view = data.raw;
for (pmsx::PmsData::pmsIdx_t i = 0; i < view.getSize(); ++i) {
Serial.print(view.getValue(i));
Serial.print("\t");
Serial.print(view.getName(i));
Serial.print(" [");
Serial.print(view.getMetric(i));
Serial.print("] ");
Serial.print(" Level: ");
Serial.print(view.getLevel(i));
// Serial.print(" Level: ");
// Serial.print(view.getLevel(i));
Serial.print(" | diameter: ");
Serial.print(view.getDiameter(i));
Serial.println();
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ My library supports PMS5003 (checked)

For most [Plantover](http://www.plantower.com) sensors probably it is an easy task to add support.

[list of compatible sensors](Compatibilit.md) is available as a separate document.
[list of compatible sensors](Compatibility.md) is available as a separate document.

## Features

Expand Down
Binary file added doc/PMS3003 series data manual_English_V2.5.pdf
Binary file not shown.
Binary file added doc/pmsA003.pdf
Binary file not shown.

0 comments on commit 4e1e161

Please sign in to comment.