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

Committer:
xinlei
Date:
2015-04-20
Revision:
94:61d44636f020
Parent:
93:0acd11870c6a
Child:
96:5dfdc8568e9f

File content as of revision 94:61d44636f020:

#ifndef SIGNALQUALITYMEASUREMENT_H
#define SIGNALQUALITYMEASUREMENT_H

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

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

private:
    bool _init;
    long& _deviceId;
    SmartRestTemplate& _tpl;
    AbstractSmartRest& _client;
    DeviceInfo& _deviceInfo;
    int oldValues[2];
    time_t t_start;
    LCDDisplay& _lcdDisplay;
};

#endif