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

Committer:
xinlei
Date:
2015-04-13
Revision:
93:0acd11870c6a
Parent:
82:ca7430f50b2b
Child:
94:61d44636f020

File content as of revision 93:0acd11870c6a:

#ifndef LOCATIONUPDATE_H
#define LOCATIONUPDATE_H

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

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

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

#endif