SmartREST client reference implementation for the u-blox C027 mbed compatible device.

Dependencies:   C027 C027_Support mbed mbed-rtos MbedSmartRest LM75B MMA7660 C12832

Fork of MbedSmartRestTest by Vincent Wochnik

Revision:
12:beb64aa0da86
Child:
14:56da550a1baa
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/io.h	Fri Feb 14 12:28:41 2014 +0000
@@ -0,0 +1,17 @@
+#ifndef IO_H
+#define IO_H
+
+#include "common.h"
+#include "LM75B.h"
+#include "MMA7660.h"
+
+typedef struct
+{
+    float x, y, z;
+} acceleration_t;
+
+float temperature();
+acceleration_t acceleration();
+uint32_t counter();
+
+#endif
\ No newline at end of file