mirror of
https://github.com/adafruit/Adafruit-BMP085-Library.git
synced 2026-07-28 04:16:25 +00:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9d5057fb3e | ||
|
|
111047baf8 | ||
|
|
eab2bb6d4c | ||
|
|
28e55478d5 | ||
|
|
50745f67c3 | ||
|
|
806d8d1556 | ||
|
|
2653740d26 | ||
|
|
44f57a25e8 | ||
|
|
9d02c77ae1 | ||
|
|
d6fdb99ed1 |
@@ -7,11 +7,11 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/setup-python@v1
|
||||
- uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.x'
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
repository: adafruit/ci-arduino
|
||||
path: ci
|
||||
|
||||
+1
-1
@@ -31,7 +31,7 @@
|
||||
#include "Adafruit_BMP085.h"
|
||||
#include <Adafruit_I2CDevice.h>
|
||||
|
||||
Adafruit_BMP085::Adafruit_BMP085() {}
|
||||
Adafruit_BMP085::Adafruit_BMP085() { i2c_dev = nullptr; }
|
||||
|
||||
bool Adafruit_BMP085::begin(uint8_t mode, TwoWire *wire) {
|
||||
if (mode > BMP085_ULTRAHIGHRES)
|
||||
|
||||
+2
-2
@@ -87,12 +87,12 @@ public:
|
||||
float readAltitude(float sealevelPressure = 101325); // std atmosphere
|
||||
/*!
|
||||
* @brief Reads the raw temperature
|
||||
* @return Returns signed 16-bit integer of the raw temperature
|
||||
* @return Returns the raw temperature
|
||||
*/
|
||||
uint16_t readRawTemperature(void);
|
||||
/*!
|
||||
* @brief Reads the raw pressure
|
||||
* @return Returns signed 32-bit integer of the raw temperature
|
||||
* @return Returns the raw pressure
|
||||
*/
|
||||
uint32_t readRawPressure(void);
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
name=Adafruit BMP085 Library
|
||||
version=1.2.0
|
||||
version=1.2.4
|
||||
author=Adafruit
|
||||
maintainer=Adafruit <info@adafruit.com>
|
||||
sentence=A powerful but easy to use BMP085/BMP180 Library
|
||||
|
||||
Reference in New Issue
Block a user