Cumulocity Official / Mbed 2 deprecated MbedSmartRestMain Featured

Dependencies:   C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed

Fork of MbedSmartRestMain by Vincent Wochnik

measurement/SignalQualityMeasurement.h

Committer:
xinlei
Date:
2015-03-03
Revision:
77:f6717e4eccc4
Parent:
73:313975bfec96
Child:
82:ca7430f50b2b

File content as of revision 77:f6717e4eccc4:

#ifndef SIGNALQUALITYMEASUREMENT_H
#define SIGNALQUALITYMEASUREMENT_H

#include "AbstractSmartRest.h"
#include "SmartRestTemplate.h"
#include "DeviceInfo.h"
#include "DeviceIO.h"
#include "DeviceBootstrap.h"

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

private:
    bool _init;
    long& _deviceId;
    SmartRestTemplate& _tpl;
    AbstractSmartRest& _client;
    DeviceInfo& _deviceInfo;
    int oldValues[2];
    Timer sendingTimer;
    DeviceIO& _io;
    DeviceBootstrap& _bootstrap;
};

#endif