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-27
Revision:
96:5dfdc8568e9f
Parent:
94:61d44636f020
Child:
99:e369fc75c000

File content as of revision 96:5dfdc8568e9f:

#ifndef LOCATIONUPDATE_H
#define LOCATIONUPDATE_H

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

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

private:
    bool _init;
    long& _deviceId;
    SmartRestTemplate& _tpl;
    AbstractSmartRest& _client;
    GPSTracker _gpsTracker;
    float oldValues[3];
    time_t t_start;
    DeviceInfo& _deviceInfo;
};

#endif