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

DeviceIntegration.h

Committer:
xinlei
Date:
2015-05-07
Revision:
100:47ea098f8a47
Parent:
55:a0f7295ed6b6
Child:
117:5de54f09f754

File content as of revision 100:47ea098f8a47:

#ifndef DEVICEINTEGRATION_H
#define DEVICEINTEGRATION_H

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

class DeviceIntegration
{
public:
    DeviceIntegration(AbstractSmartRest&, SmartRestTemplate&, DeviceInfo&);
    
    bool init();
    bool integrate();

protected:
    bool deviceExisting();
    bool createDevice();
    bool addGlobalIdentifier();
    bool updateDevice();

private:
    bool _init;
    SmartRestTemplate& _tpl;
    AbstractSmartRest& _client;
    DeviceInfo& _deviceInfo;
};

#endif