File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,6 @@ Products that use this Library
4343Version History
4444---------------
4545
46- * [ vExxFxxZxxHxxLxxSxx] (URL for tag specific to this version) - Description
4746* [ V_1.0.0] ( https://github.com/sparkfun/SparkFun_BME280_Arduino_Library/tree/V_1.0.0 ) - Public release.
4847
4948License Information
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ void setup()
7979 Serial.print (" Sample," );
8080 Serial.print (" T(deg C)," );
8181 Serial.print (" T(deg F)," );
82- Serial.print (" P(kPa )," );
82+ Serial.print (" P(Pa )," );
8383 Serial.print (" Alt(m)," );
8484 Serial.print (" Alt(ft)," );
8585 Serial.print (" %RH" );
@@ -91,6 +91,9 @@ void loop()
9191{
9292
9393 // Print each row in the loop
94+ // Start with temperature, as that data is needed for accurate compensation.
95+ // Reading the temperature updates the compensators of the other functions
96+ // in the background.
9497 Serial.print (sampleNumber);
9598 Serial.print (" ," );
9699 Serial.print (mySensor.readTempC (), 2 );
Original file line number Diff line number Diff line change @@ -101,7 +101,9 @@ void setup()
101101
102102void loop ()
103103{
104-
104+ // Start with temperature, as that data is needed for accurate compensation.
105+ // Reading the temperature updates the compensators of the other functions
106+ // in the background.
105107 Serial.print (" Temperature: " );
106108 Serial.print (mySensorA.readTempC (), 2 );
107109 Serial.print (" , " );
You can’t perform that action at this time.
0 commit comments