Skip to content

Commit afbb381

Browse files
Adjusted print line comments and deleted unneccesary comments
Ready for final PR
1 parent d65e32c commit afbb381

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

examples/Example3_EmbeddedFunctions/Example3_EmbeddedFunctions.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ uint8_t hysteresis = 100;
1313
void setup()
1414
{
1515
Serial.begin(115200);
16-
Serial.println("STHS34PF80 Example 1: Basic Readings");
16+
Serial.println("STHS34PF80 Example 1: Using Embedded Functions");
1717

1818
// Begin I2C
1919
if(Wire.begin() == false)

examples/Example5_ArduinoPlotterOutput/Example5_ArduinoPlotterOutput.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ int16_t presenceVal = 0;
99
void setup()
1010
{
1111
Serial.begin(115200);
12-
Serial.println("STHS34PF80 Example 1: Basic Readings");
12+
Serial.println("STHS34PF80 Example 5: Arduino Serial Plotter Output");
1313

1414
// Begin I2C
1515
if(Wire.begin() == false)

src/sths34pf80_class.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,6 @@ int32_t STHS34PF80::begin()
1515

1616
reset(); // Set boot bit to 1, delay, then reset algorithm
1717

18-
// Set the boot set to 1
19-
//setBootOTP(true);
20-
// delay 2.50ms to allow for sensor reset (allows for no power cycling)
21-
//sensor.mdelay(3);
22-
2318
// Set temperature object number set average (AVG_TMOS = 32)
2419
int32_t avgErr = setAverageTObjectNumber(STHS34PF80_AVG_TMOS_32);
2520

0 commit comments

Comments
 (0)