Cumulocity Official / Mbed 2 deprecated MbedSmartRestMain Featured

Dependencies:   C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed

Fork of MbedSmartRestMain by Vincent Wochnik

measurement/LocationUpdate.h

Committer:
xinlei
Date:
2015-02-17
Revision:
73:313975bfec96
Parent:
71:063c45e99578
Child:
82:ca7430f50b2b

File content as of revision 73:313975bfec96:

#ifndef LOCATIONUPDATE_H
#define LOCATIONUPDATE_H

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

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

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

#endif