Skip to content

Commit

Permalink
Update library.properties
Browse files Browse the repository at this point in the history
  • Loading branch information
fu-hsi authored Mar 28, 2018
1 parent 4fd0e6f commit f73bb6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=PMS Library
version=1.0.0
version=1.1.0
author=Mariusz Kacki <[email protected]>
maintainer=Mariusz Kacki <[email protected]>
sentence=Arduino library for Plantower PMS sensors.
Expand Down

3 comments on commit f73bb6b

@jonboy1943
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hi marius,
having come across the above library. might there be any chance of adding thingspeak to the coding for all idiots.
regards
john hardman

@davidchen753
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

besides, there are some return data.
indicates the number of particles with diameter beyond 0.3 um in 0.1 L of air.
indicates the number of particles with diameter beyond 0.5 um in 0.1 L of air.
indicates the number of particles with diameter beyond 1.0 um in 0.1 L of air.
indicates the number of particles with diameter beyond 2.5 um in 0.1 L of air.
indicates the number of particles with diameter beyond 5.0 um in 0.1 L of air.
indicates the number of particles with diameter beyond 10.0 um in 0.1 L of air.

https://www.aqmd.gov/docs/default-source/aq-spec/resources-page/plantower-pms5003-manual_v2-3.pdf

    _data->PM_03 = makeWord(_payload[12], _payload[13]);
      _data->PM_05 = makeWord(_payload[14], _payload[15]);
      _data->PM_10 = makeWord(_payload[16], _payload[17]);
      _data->PM_25 = makeWord(_payload[18], _payload[19]);
      _data->PM_50 = makeWord(_payload[20], _payload[21]);
      _data->PM_100 = makeWord(_payload[22], _payload[23]);

can i update the library?

@fu-hsi
Copy link
Owner Author

@fu-hsi fu-hsi commented on f73bb6b May 30, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your support.
Pull request are exists: ced0b1e.
I can't update library without possibility of testing, because I don't have PMS on my desk and too many peoples use this library in their projects.
I promise to analyze all requests and if I have the opportunity, I will implement them.
Greetings.

Please sign in to comment.