portable version of the cumulocity demo

Dependencies:   C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed

Fork of MbedSmartRestMain by Cumulocity Official

AnalogMeasurement.h

Committer:
Cumulocity
Date:
2014-07-24
Revision:
47:89ae46d5c466

File content as of revision 47:89ae46d5c466:

#ifndef ANALOGMEASUREMENT_H
#define ANALOGMEASUREMENT_H

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

class AnalogMeasurement
{
public:
    AnalogMeasurement(SmartRest&, SmartRestTemplate&, long&, AnalogIn&, AnalogIn&);
    
    bool init();
    bool run();

private:
    bool _init;
    long& _deviceId;
    SmartRestTemplate& _tpl;
    SmartRest& _client;
    AnalogIn& _analog1;
    AnalogIn& _analog2;
};

#endif