Siddharth Dhingra
/
SCP1000_Hello
SCP1000 example program. Displays Temperature and Pressure.
Diff: main.cpp
- Revision:
- 0:5f19ae84ce9f
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Thu Nov 06 17:28:08 2014 +0000 @@ -0,0 +1,10 @@ +#include "mbed.h" +#include "SCP1000.h" + +Serial pc(USBTX, USBRX); +SCP1000 scp1000(p5,p6,p7,p8); + +int main() { + 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