portable version of the cumulocity demo

Dependencies:   C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed

Fork of MbedSmartRestMain by Cumulocity Official

AccelerationMeasurement.h

Committer:
ublox
Date:
2014-10-03
Revision:
56:2da813cc2f47
Parent:
41:804f6a0bda26

File content as of revision 56:2da813cc2f47:

#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