Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/Example1_BasicReadings/Example1_BasicReadings.ino
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ void setup()
Serial.println("STHS34PF80 Example 1: Basic Readings");

// Begin I2C
Wire.begin()
Wire.begin();

// Establish communication with device
if(mySensor.begin() == false)
Expand Down
4 changes: 2 additions & 2 deletions examples/Example2_Interrupts/Example2_Interrupts.ino
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ void setup()
Serial.println("STHS34PF80 Example 2: Interrupts");

// Begin I2C
Wire.begin()
Wire.begin();

// Establish communication with device
if(mySensor.begin() == false)
Expand Down Expand Up @@ -121,4 +121,4 @@ void loop()
Serial.println("cm^-1");
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ void setup()
Serial.println("STHS34PF80 Example 3: Using Embedded Functions");

// Begin I2C
Wire.begin()
Wire.begin();

// Establish communication with device
if(mySensor.begin() == false)
Expand Down Expand Up @@ -125,4 +125,4 @@ void loop()
Serial.println("Motion detected! ");
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ void setup()
Serial.println("STHS34PF80 Example 5: Arduino Serial Plotter Output");

// Begin I2C
Wire.begin()
Wire.begin();

// Establish communication with device
if(mySensor.begin() == false)
Expand Down Expand Up @@ -92,4 +92,4 @@ void loop()
}
}

}
}