“I've used several BME and BMP 280 devices in varius guises. This one was on a neat development board with a convenient six pin socket, plug and pin connectors. Worked well.”
“Works great. Up and running in just a few minutes using the supplied docs on the Pi Hut site. Readings provided quickly upon each attempt (unlike the old DHT11 and DHT22 sensors I was using).
As per documentation, these take a while to acclimatise to their environment. In reality, I've found that the first reading taken is always inaccurate, but subsequent readings are spot on - but I guess that may differ depending on the usage scenario.”
“Great little board that I added to an ENS160 Air Quality Monitor sensor, so that the ENS160 was adjusted for temperature and humidity throughout the day:
float celcius = BME280.readTemperature();
float humidity = BME280.readHumidity();
ENS160.setTempAndHum(/*temperature=*/celcius, /*humidity=*/humidity);”