Sample program for MS5607 (I2C, SPI) library

Dependencies:   mbed MS5607

Files at this revision

API Documentation at this revision

Comitter:
yamaguch
Date:
Tue Jul 03 08:58:18 2012 +0000
Commit message:
0.92

Changed in this revision

MS5607.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MS5607.lib	Tue Jul 03 08:58:18 2012 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/yamaguch/code/MS5607/#5760862143d1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Tue Jul 03 08:58:18 2012 +0000
@@ -0,0 +1,13 @@
+#include "mbed.h"
+//#include "MS5607SPI.h"
+#include "MS5607I2C.h"
+
+int main() {
+    //MS5607SPI ms5607(p11, p12, p13, p10);
+    MS5607I2C ms5607(p9, p10, false);
+    
+    ms5607.printCoefficients();
+    printf("Pressure = %.0f Pa\n", ms5607.getPressure());
+    printf("Temperature = %.2f degC\n", ms5607.getTemperature());
+    printf("Altitude = %.2f m\n", ms5607.getAltitude());
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Tue Jul 03 08:58:18 2012 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/737756e0b479