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.
Dependencies: C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed
Fork of MbedSmartRestMain by
Diff: AccelerationMeasurement.h
- Revision:
- 41:804f6a0bda26
diff -r 13c24225f189 -r 804f6a0bda26 AccelerationMeasurement.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/AccelerationMeasurement.h Tue Jul 15 12:44:34 2014 +0000
@@ -0,0 +1,24 @@
+#ifndef ACCELERATIONMEASUREMENT_H
+#define ACCELERATIONMEASUREMENT_H
+
+#include "SmartRest.h"
+#include "SmartRestTemplate.h"
+#include "MMA7660.h"
+
+class AccelerationMeasurement
+{
+public:
+ AccelerationMeasurement(SmartRest&, SmartRestTemplate&, long&, MMA7660&);
+
+ bool init();
+ bool run();
+
+private:
+ bool _init, _test;
+ long& _deviceId;
+ SmartRestTemplate& _tpl;
+ SmartRest& _client;
+ MMA7660& _sensor;
+};
+
+#endif
\ No newline at end of file
