Skip to content

Commit

Permalink
Readme: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
heinemml committed Aug 10, 2020
1 parent 342d195 commit 7f2ba48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -47,7 +47,7 @@ while True:
sensor.get_data()
```

The device writes out one value at a time. So we need to parse some data until we have co2 and temperature. Thus the get_data() method will initially return none or only on value (whichever comes first).
The device writes out one value at a time. So we need to parse some data until we have co2 and temperature. Thus the get_data() method will initially return none or only one value (whichever comes first).
When you just need one measurement you should wait some seconds or iterate until you get a full reading. If you just need co2 a call to `get_co2` might speed things up.

### Callback
Expand Down

0 comments on commit 7f2ba48

Please sign in to comment.