Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed
Fork of MbedSmartRestMain by
measurement/LocationUpdate.h
- Committer:
- xinlei
- Date:
- 2015-03-06
- Revision:
- 82:ca7430f50b2b
- Parent:
- 73:313975bfec96
- Child:
- 93:0acd11870c6a
File content as of revision 82:ca7430f50b2b:
#ifndef LOCATIONUPDATE_H
#define LOCATIONUPDATE_H
#include "AbstractSmartRest.h"
#include "SmartRestTemplate.h"
#include "GPSTracker.h"
#include "DeviceIO.h"
#include "DeviceInfo.h"
#include "DisplayInfo.h"
class LocationUpdate
{
public:
LocationUpdate(AbstractSmartRest&, SmartRestTemplate&, long&, GPSTracker&, DeviceIO&, DeviceInfo&, DisplayInfo&);
bool init();
bool run();
private:
bool _init;
long& _deviceId;
SmartRestTemplate& _tpl;
AbstractSmartRest& _client;
GPSTracker& _gpsTracker;
float oldValues[3];
Timer sendingTimer;
DeviceIO& _io;
DeviceInfo& _deviceInfo;
DisplayInfo& _displayInfo;
};
#endif

Cumulocity