Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #11 from mirkix/pr/fixtypo
Fix typo
  • Loading branch information
ladyada committed Dec 28, 2016
2 parents 6df7ab8 + 4b3949f commit 5d00215
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions Adafruit_BMP280.cpp
Expand Up @@ -110,7 +110,7 @@ void Adafruit_BMP280::write8(byte reg, byte value)

/**************************************************************************/
/*!
@brief Reads an 8 bit value over I2C
@brief Reads an 8 bit value over I2C/SPI
*/
/**************************************************************************/
uint8_t Adafruit_BMP280::read8(byte reg)
Expand Down Expand Up @@ -139,7 +139,7 @@ uint8_t Adafruit_BMP280::read8(byte reg)

/**************************************************************************/
/*!
@brief Reads a 16 bit value over I2C
@brief Reads a 16 bit value over I2C/SPI
*/
/**************************************************************************/
uint16_t Adafruit_BMP280::read16(byte reg)
Expand Down Expand Up @@ -175,7 +175,7 @@ uint16_t Adafruit_BMP280::read16_LE(byte reg) {

/**************************************************************************/
/*!
@brief Reads a signed 16 bit value over I2C
@brief Reads a signed 16 bit value over I2C/SPI
*/
/**************************************************************************/
int16_t Adafruit_BMP280::readS16(byte reg)
Expand All @@ -193,10 +193,9 @@ int16_t Adafruit_BMP280::readS16_LE(byte reg)

/**************************************************************************/
/*!
@brief Reads a signed 16 bit value over I2C
@brief Reads a 24 bit value over I2C/SPI
*/
/**************************************************************************/

uint32_t Adafruit_BMP280::read24(byte reg)
{
uint32_t value;
Expand Down

0 comments on commit 5d00215

Please sign in to comment.