Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
finitespace authored Sep 20, 2017
1 parent c25f789 commit 74e6931
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Provides an Arduino library for reading and interpreting Bosch BME280 data over
* [float alt(float pressure, bool metric = true, float seaLevelPressure = 101325)](#methods)
* [float dew(bool metric = true)](#methods)
* [float dew(float temp, float hum, bool metric = true)](#methods)
* [uint8_t chipID()](#methods)
* [Contributing](#contributing)
* [History](#history)
* [Credits](#credits)
Expand Down Expand Up @@ -159,7 +160,7 @@ Use `setMode(0x01)` to trigger a new measurement in forced mode. NOTE: It takes

#### bool begin()

Method used at start up to initialize the class. Starts the I2C or SPI interface.
Method used at start up to initialize the class. Starts the I2C or SPI interface. Can be called again to re-initialize the mode settings.
Return: bool, true = success, false = failure (no device found)

#### void setMode(uint8_t mode)
Expand Down Expand Up @@ -259,6 +260,12 @@ Use `setMode(0x01)` to trigger a new measurement in forced mode. NOTE: It takes

* Metric: bool, default = true
values: true = return degrees Celsius, false = return degrees Fahrenheit
#### uint8_t chipID()
Returns the chip identification number.
Return: uint8_t 0x60 = BME ID
0x58 = BMP ID

## Contributing

Expand Down

0 comments on commit 74e6931

Please sign in to comment.