Simple sample that demonstrates reading the FXOS8700CQ accelerometer, convert the data to JSON and send to an Azure IoT Hub.

Dependencies:   azure_umqtt_c iothub_mqtt_transport mbed-rtos mbed wolfSSL Socket lwip-eth lwip-sys lwip

Committer:
markrad
Date:
Tue Apr 25 01:33:13 2017 +0000
Revision:
7:2564d95cbf81
Parent:
0:6c46c366f500
Fix bug in NTP library. Clean up code some.

Who changed what in which revision?

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