Datavenue Live Objects basic sample using liveobjects-iotsoftbox-mqtt library.

Dependencies:   MQTTPacket

Committer:
jhamel
Date:
Tue Apr 04 16:17:23 2017 +0200
Revision:
8:82317399e4ce
Parent:
0:92f8cff1cf35
Use CA from Symantec/VeriSign, and fix TLS issue

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jhamel 0:92f8cff1cf35 1 /*
jhamel 0:92f8cff1cf35 2 * Copyright (C) 2016 Orange
jhamel 0:92f8cff1cf35 3 *
jhamel 0:92f8cff1cf35 4 * This software is distributed under the terms and conditions of the 'BSD-3-Clause'
jhamel 0:92f8cff1cf35 5 * license which can be found in the file 'LICENSE.txt' in this package distribution
jhamel 0:92f8cff1cf35 6 * or at 'https://opensource.org/licenses/BSD-3-Clause'.
jhamel 0:92f8cff1cf35 7 */
jhamel 0:92f8cff1cf35 8
jhamel 0:92f8cff1cf35 9 /**
jhamel 0:92f8cff1cf35 10 * @file liveobjects_sample.h
jhamel 0:92f8cff1cf35 11 * @brief Interfaces used by this LiveObject IoT Client Sample
jhamel 0:92f8cff1cf35 12 */
jhamel 0:92f8cff1cf35 13 #ifndef __liveobjects_sample_H__
jhamel 0:92f8cff1cf35 14 #define __liveobjects_sample_H__
jhamel 0:92f8cff1cf35 15
jhamel 0:92f8cff1cf35 16 // LiveObjects Device settings: IP Address, TLS or not , ..;
jhamel 0:92f8cff1cf35 17 #include "liveobjects_dev_params.h"
jhamel 0:92f8cff1cf35 18
jhamel 0:92f8cff1cf35 19 // LiveObjects Library interface
jhamel 0:92f8cff1cf35 20 #include "LiveObjectsClient_Core.h"
jhamel 0:92f8cff1cf35 21
jhamel 0:92f8cff1cf35 22 // Definitions set for this board or os.
jhamel 0:92f8cff1cf35 23 #include "LiveObjectsClient_Platform.h"
jhamel 0:92f8cff1cf35 24
jhamel 0:92f8cff1cf35 25 #include "mbed.h"
jhamel 0:92f8cff1cf35 26
jhamel 0:92f8cff1cf35 27 #endif // __liveobjects_sample_H__
jhamel 0:92f8cff1cf35 28