Skip to content

Commit 8a35fb9

Browse files
final comment changes
1 parent f5bde8e commit 8a35fb9

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ Products that use this Library
4343
Version 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

4948
License Information

examples/CSV_Output/CSV_Output.ino

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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);

examples/I2C_and_SPI_Multisensor/I2C_and_SPI_Multisensor.ino

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,9 @@ void setup()
101101

102102
void 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(", ");

0 commit comments

Comments
 (0)