Skip to content

Commit

Permalink
fix table, add readTemperatureF
Browse files Browse the repository at this point in the history
  • Loading branch information
astuder committed Mar 15, 2018
1 parent 7547aa7 commit d821a42
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
Binary file modified Arduino/ICP101xx.zip
Binary file not shown.
1 change: 1 addition & 0 deletions Arduino/ICP101xx/keywords.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ measure KEYWORD2
measureStart KEYWORD2
dataReady KEYWORD2
getTemperatureC KEYWORD2
getTemperatureF KEYWORD2
getPressurePa KEYWORD2

# Constants (KEYWORD3)
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@ The method `measure` performs a measurement, and returns when it is complete.

The time to complete a measurement depends on the selected sensor mode that can be passed as an optional parameter. The options are:

|Mode|Duration|Noise||
|--|--|--||
|FAST|3 ms|±3.2 Pa||
|Mode|Duration|Noise|Notes|
|--|--|--|--|
|FAST|3 ms|±3.2 Pa| |
|NORMAL|7 ms|±1.6 Pa|default|
|ACCURATE|24 ms|±0.8 Pa||
|VERY_ACCURATE|95 ms|±0.4 Pa||
|ACCURATE|24 ms|±0.8 Pa| |
|VERY_ACCURATE|95 ms|±0.4 Pa| |

If no mode is specified, NORMAL will be used.
If mode is not specified, NORMAL will be used.

```
mysensor.measure(mysensor.VERY_ACCURATE); // high accuracy measurement
Expand Down

0 comments on commit d821a42

Please sign in to comment.