Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: upverter_fitbit_clone ReadingMag_HMC5883L_work
Diff: ms5611.h
- Revision:
- 4:f7b0ad1b5751
- Parent:
- 3:c2d1b0d432ad
- Child:
- 5:0d7b229474c6
--- a/ms5611.h Mon May 13 20:12:15 2013 +0000
+++ b/ms5611.h Mon May 13 22:27:13 2013 +0000
@@ -49,7 +49,8 @@
* while(1) {
* double Temp = ms.calcTemp();
* double Press = ms.calcPressure();
- * pc.printf("Temp: %.2f degC Barometer: %.1f mB %.3f in/Hg\n", Temp, Press, Press * 0.0295301);
+ * double Altitude = ms.getAltitude(1013.25); //enter pressure at sea level
+ * pc.printf("Temp: %.2f degC Barometer: %.1f mB %.3f in/Hg Alt: %.1f\n", Temp, Press, Press * 0.0295301, Altitude);
* wait(2.0);
* }
* }