File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -545,7 +545,7 @@ uint32_t Adafruit_BME280::sensorID(void) { return _sensorID; }
545
545
* @returns the current temperature compensation value in degrees Celcius
546
546
*/
547
547
float Adafruit_BME280::getTemperatureCompensation (void ) {
548
- return float (((t_fine_adjust* 5 )>> 8 )/ 100 );
548
+ return float (((t_fine_adjust * 5 ) >> 8 ) / 100 );
549
549
};
550
550
551
551
/* !
Original file line number Diff line number Diff line change @@ -278,7 +278,7 @@ class Adafruit_BME280 {
278
278
int8_t _sck; // !< for the SPI interface
279
279
280
280
int32_t t_fine_adjust; // !< add to compensate temp readings and in turn to
281
- // !< pressure and humidity readings
281
+ // !< pressure and humidity readings
282
282
283
283
bme280_calib_data _bme280_calib; // !< here calibration data is stored
284
284
You can’t perform that action at this time.
0 commit comments