Remove inappropriate sleep between reads
authorSam Birch <mail@worldofsam.com>
Mon, 9 Dec 2019 08:55:42 +0000 (21:55 +1300)
committerGitHub <noreply@github.com>
Mon, 9 Dec 2019 08:55:42 +0000 (21:55 +1300)
commitf9d69568aec8773d9541809f6cd22d44b0197431
tree753ae60bb458b7d9de7718b98baba8dab8ed33e1
parent655d013499ca1b98a9d28884c7a8c2607972f09e
Remove inappropriate sleep between reads

The PMS5003 seems to buffer unread samples. If you are reading at a lower rate than it takes readings, then a progressively larger delay will occur between changes in actual PM levels and indicated PM levels.

To see the issue:
1) run this example with the `time.sleep(1)` *included*
2) wait a few minutes
3) burn a piece of paper near the sensor and wait for the reported PM levels to spike

With the sleep included, there is a delay between introducing smoke and seeing reported levels rise (often a few minutes or longer). With the sleep removed you will see reported levels update almost immediately.

The correct way to use the sensor is to read as fast as the sensor allows, and not make any assumptions about what rate samples will be published at
examples/particulates.py