Remote monitoring IoTHub device sample Added real SHTx sensor to get temperature and humidity Added new command to set temperature scale change Removed "mock" commands to set temperature and humidity values It's configured to work on FRDM-K64F board

Dependencies:   EthernetInterface NTPClient SHTx iothub_amqp_transport iothub_client mbed-rtos mbed proton-c-mbed serializer wolfSSL

Fork of remote_monitoring by Azure IoT

Committer:
ppatierno
Date:
Sun Nov 15 15:34:16 2015 +0000
Revision:
23:e37e4e321690
Parent:
9:a43d30a74a1b
Added real SHTx sensor to get temperature and humidity; Added new command to set temperature scale change; Removed "mock" commands to set temperature and humidity values

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 */