10 Commits
Author SHA1 Message Date
Tyeth GundryandGitHub 9d5057fb3e Merge pull request #34 from tyeth/bump-version-2023-11-14-20-16-05
Update version number to 1.2.4
2023-11-15 12:50:45 +00:00
Tyeth Gundry 111047baf8 Bump version number to 1.2.4 2023-11-14 20:16:06 +00:00
dherrada eab2bb6d4c Update CI action versions 2023-05-12 11:23:54 -04:00
Eva HerradaandGitHub 28e55478d5 Bump to 1.2.2 2022-10-18 15:34:44 -04:00
Carter NelsonandGitHub 50745f67c3 Merge pull request #33 from eangeloff/master
Fix description comments of functions
2022-10-18 08:16:59 -07:00
Emil Angelov 806d8d1556 Fix description comments of functions
The description comments for the return types of
readRawTemperature() and readRawPressure() are
wrong. There is no point to add this information
in the comments anyway, as it is easily visible in
the function declaration. In addition it is easy
to change the type and to forget to update the
comment too.
2022-10-18 17:23:30 +03:00
Dylan HerradaandGitHub 2653740d26 Bump to 1.2.1 2021-05-31 15:43:37 -04:00
Limor "Ladyada" FriedandGitHub 44f57a25e8 Merge pull request #30 from nettigo/master
Init i2c_dev before use
2021-05-25 14:21:35 -04:00
netmaniac 9d02c77ae1 clang-format on Adafruit_BMP085.cpp 2021-05-25 19:19:41 +02:00
netmaniac d6fdb99ed1 Init i2c_dev before use 2021-05-25 18:40:44 +02:00
4 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -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
View File
@@ -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
View File
@@ -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
View File
@@ -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