From 5b119e24f6f2f3410c65d14929f80381eac56fac Mon Sep 17 00:00:00 2001 From: tyeth Date: Wed, 30 Apr 2025 13:18:44 +0100 Subject: [PATCH] Update humidity sampling register comment --- Adafruit_BME280.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Adafruit_BME280.h b/Adafruit_BME280.h index ffa8018..abeef85 100644 --- a/Adafruit_BME280.h +++ b/Adafruit_BME280.h @@ -354,14 +354,14 @@ protected: /// unused - don't set unsigned int none : 5; - // pressure oversampling + // humidity oversampling // 000 = skipped // 001 = x1 // 010 = x2 // 011 = x4 // 100 = x8 // 101 and above = x16 - unsigned int osrs_h : 3; ///< pressure oversampling + unsigned int osrs_h : 3; ///< humidity oversampling /// @return combined ctrl hum register unsigned int get() { return (osrs_h); }