barometric pressure sensor BMP085 http://mbed.org/users/okini3939/notebook/barometric-pressure-sensor-bmp085/ http://mbed.org/users/okini3939/notebook/weatherduino-on-mbed/
Dependents: WeatherPlatform_20110408 WeatherPlatform ENVLogger WeatherStation ... more
Revision 2:5e2b1f3c0a6a, committed 2014-07-11
- Comitter:
- okini3939
- Date:
- Fri Jul 11 00:54:26 2014 +0000
- Parent:
- 1:80e4c62baf09
- Commit message:
- delete Base class
Changed in this revision
BMP085.cpp | Show annotated file Show diff for this revision Revisions of this file |
BMP085.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/BMP085.cpp Mon Dec 13 14:02:24 2010 +0000 +++ b/BMP085.cpp Fri Jul 11 00:54:26 2014 +0000 @@ -1,12 +1,12 @@ /* - * mbed library to use a Bosch Sensortec BMP085 sensor + * mbed library to use a Bosch Sensortec BMP085/BMP180 sensor * Copyright (c) 2010 Hiroshi Suga * Released under the MIT License: http://mbed.org/license/mit */ /** @file BMP085.cpp - * @brief mbed library to use a Bosch Sensortec BMP085 sensor - * barometric pressure sensor BMP085 (Bosch Sensortec) + * @brief mbed library to use a Bosch Sensortec BMP085/BMP180 sensor + * barometric pressure sensor BMP085/BMP180 (Bosch Sensortec) * interface: I2C digital */
--- a/BMP085.h Mon Dec 13 14:02:24 2010 +0000 +++ b/BMP085.h Fri Jul 11 00:54:26 2014 +0000 @@ -1,12 +1,12 @@ /* - * mbed library to use a Bosch Sensortec BMP085 sensor + * mbed library to use a Bosch Sensortec BMP085/BMP180 sensor * Copyright (c) 2010 Hiroshi Suga * Released under the MIT License: http://mbed.org/license/mit */ /** @file BMP085.h - * @brief mbed library to use a Bosch Sensortec BMP085 sensor - * barometric pressure sensor BMP085 (Bosch Sensortec) + * @brief mbed library to use a Bosch Sensortec BMP085/BMP180 sensor + * barometric pressure sensor BMP085/BMP180 (Bosch Sensortec) * interface: I2C digital */ @@ -28,7 +28,7 @@ /** * @brief BMP085 class */ -class BMP085 : public Base { +class BMP085 { public: BMP085(PinName p_sda, PinName p_scl, BMP085_oss p_oss = BMP085_oss1); BMP085(I2C& p_i2c, BMP085_oss p_oss = BMP085_oss1);