Example program using the SCP1000 library.

Dependencies:   SCP1000 mbed

Dependents:   SCP1000_Example

Revision:
1:6fb7e6fcbb68
Parent:
0:fd585132c191
--- a/main.cpp	Tue Oct 05 04:29:50 2010 +0000
+++ b/main.cpp	Wed Oct 20 17:51:36 2010 +0000
@@ -5,6 +5,6 @@
 SCP1000 scp1000(p5,p6,p7,p8);
 
 int main() {
-    pc.printf("The pressure is %f Pa and the temperature is %u C", scp1000.readPressure(), scp1000.readTemperature());
+    pc.printf("The pressure is %d Pa and the temperature is %f C", scp1000.readPressure(), scp1000.readTemperature());
     return(0);
 }
\ No newline at end of file