My BME280 is around 1F hotter outside than a DS18B20 outside in another project. Not a big deal but I am also researching how to keep it cool. The library I am using is this one.
Scott Wilson
@Scott Wilson
0
Reputation
2
Posts
187
Profile views
0
Followers
0
Following
Best posts made by Scott Wilson
This user hasn't posted anything yet.
Latest posts made by Scott Wilson
-
RE: BME280 Temp/Hum sensor on battery power increasingly skips(?) operation
-
RE: Celsius to Fahrenheit Conversion with HTU21DF
@irenla
You have probably already figured this out but try this.return temp;
float tempF = (temp * 9.0) / 5.0 + 32.0;you get the idea now.