Own fork of MbedSmartRestMain

Dependencies:   C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed

Fork of MbedSmartRestMain by Cumulocity Official

measurement/AccelerationMeasurement.h

Committer:
xinlei
Date:
2015-03-20
Revision:
90:423177e8a401
Parent:
82:ca7430f50b2b
Child:
92:0acd11870c6a

File content as of revision 90:423177e8a401:

#ifndef ACCELERATIONMEASUREMENT_H
#define ACCELERATIONMEASUREMENT_H

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

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

private:
    bool _init, _test;
    long& _deviceId;
    SmartRestTemplate& _tpl;
    AbstractSmartRest& _client;
    MMA7660 _sensor;
    float oldValues[3];
    Timer sendingTimer;
    DeviceIO& _io;
    DeviceInfo& _deviceInfo;
    DisplayInfo& _displayInfo;
};

#endif