A simple IoTHub sample using HTTP as transport

Dependencies:   EthernetInterface NTPClient iothub_client iothub_http_transport mbed-rtos mbed wolfSSL serializer azure_c_shared_utility

This sample showcases the usage of Azure IoT client libraries with the HTTP transport for sending/receiving raw messages from an IoT Hub.

Committer:
AzureIoTClient
Date:
Tue Mar 20 10:34:44 2018 -0700
Revision:
82:cd9623d73c6b
Parent:
21:2fcd0b75d093
Child:
89:e4502f210191
1.2.1

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AzureIoTClient 21:2fcd0b75d093 1 // Copyright (c) Microsoft. All rights reserved.
AzureIoTClient 21:2fcd0b75d093 2 // Licensed under the MIT license. See LICENSE file in the project root for full license information.
AzureIoTClient 21:2fcd0b75d093 3
AzureIoTClient 21:2fcd0b75d093 4 #ifndef CERTS_H
AzureIoTClient 21:2fcd0b75d093 5 #define CERTS_H
AzureIoTClient 21:2fcd0b75d093 6
AzureIoTClient 21:2fcd0b75d093 7 #ifdef __cplusplus
AzureIoTClient 21:2fcd0b75d093 8 extern "C"
AzureIoTClient 21:2fcd0b75d093 9 {
AzureIoTClient 21:2fcd0b75d093 10 #endif
AzureIoTClient 21:2fcd0b75d093 11
AzureIoTClient 21:2fcd0b75d093 12 extern const char certificates[];
AzureIoTClient 21:2fcd0b75d093 13
AzureIoTClient 21:2fcd0b75d093 14 #ifdef __cplusplus
AzureIoTClient 21:2fcd0b75d093 15 }
AzureIoTClient 21:2fcd0b75d093 16 #endif
AzureIoTClient 21:2fcd0b75d093 17
AzureIoTClient 21:2fcd0b75d093 18 #endif /* CERTS_H */