Skip to content

Commit

Permalink
Merge pull request #7 from Sensirion/winkj-fix-sdp8xx-example
Browse files Browse the repository at this point in the history
Add missing semicolons to sample files
  • Loading branch information
winkj authored Jan 23, 2020
2 parents 70ddf9f + d0c1769 commit 52c5763
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/sdp8xx/sdp8xx.ino
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ void loop() {
Serial.print(sdp.getDifferentialPressure());
Serial.print("Pa | ");

Serial.print("Temp: ")
Serial.print("Temp: ");
Serial.print(sdp.getTemperature());
Serial.print("C\n");
} else {
Serial.print("Error in readSample(), ret = ")
Serial.print("Error in readSample(), ret = ");
Serial.println(ret);
}

Expand Down

0 comments on commit 52c5763

Please sign in to comment.