Official reference client implementation for Cumulocity SmartREST on u-blox C027.

Dependencies:   C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed

Fork of MbedSmartRestMain by Vincent Wochnik

measurement/AccelerationMeasurement.h

Committer:
xinlei
Date:
2015-05-07
Revision:
99:e369fc75c000
Parent:
96:5dfdc8568e9f
Child:
100:47ea098f8a47

File content as of revision 99:e369fc75c000:

#ifndef ACCELERATIONMEASUREMENT_H
#define ACCELERATIONMEASUREMENT_H

#include "AbstractSmartRest.h"
#include "SmartRestTemplate.h"
#include "MMA7660.h"
#include "DeviceInfo.h"

class AccelerationMeasurement
{
public:
    AccelerationMeasurement(AbstractSmartRest&, SmartRestTemplate&, long&, DeviceInfo&);
    
    bool init();
    bool run();

private:
    bool _init, _test;
    SmartRestTemplate& _tpl;
    AbstractSmartRest& _client;
    MMA7660 _sensor;
    float oldValues[3];
    time_t t_start;
    DeviceInfo& _deviceInfo;
};

#endif