Merge pull request #459 from thoherr/add-bmp085_180-sensor

add BMP085 (BMP180) sensor to enum TelemetrySensorType
This commit is contained in:
Ben Meadors 2024-03-07 07:05:02 -06:00 committed by GitHub
commit 5a97acb175
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -279,6 +279,9 @@ enum TelemetrySensorType {
*/
INA3221 = 14;
/*
* BMP085/BMP180 High accuracy temperature and pressure (older Version of BMP280)
*/
BMP085 = 15;
}
}