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/AnalogMeasurement.h

Committer:
xinlei
Date:
2015-04-13
Revision:
93:0acd11870c6a
Parent:
91:423177e8a401
Child:
94:61d44636f020

File content as of revision 93:0acd11870c6a:

#ifndef ANALOGMEASUREMENT_H
#define ANALOGMEASUREMENT_H

#include "SmartRest.h"
#include "SmartRestTemplate.h"
#include "mbed.h"
#include "DeviceInfo.h"
#include "LCDDisplay.h"

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

private:
    bool _init;
    long& _deviceId;
    SmartRestTemplate& _tpl;
    AbstractSmartRest& _client;
    float oldValues[2];
    Timer sendingTimer;
    DeviceInfo& _deviceInfo;
    LCDDisplay& _lcdDisplay;
};

#endif