Remote monitoring IoTHub device sample

Dependencies:   azure_c_shared_utility EthernetInterface NTPClient iothub_amqp_transport iothub_client mbed-rtos mbed azure_uamqp_c serializer wolfSSL

This sample showcases the usage of Azure IoT client libraries to build a remote monitoring sample.

Committer:
AzureIoTClient
Date:
Thu Oct 04 09:18:10 2018 -0700
Revision:
98:d2127ab73b8d
Parent:
9:a43d30a74a1b
1.2.10

Who changed what in which revision?

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