Skip to content
This repository was archived by the owner on Jul 22, 2022. It is now read-only.

Commit 7d980b4

Browse files
committed
Merge pull request #12 from obsoleted/lib_rename
Rename AzureIot.h -> AzureIoTHub.h
2 parents 6a6fb53 + 1ef502a commit 7d980b4

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed

examples/esp8266/command_center/command_center_http.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ That does not mean that HTTP only works with the _LL APIs.
1818
Simply changing the using the convenience layer (functions not having _LL)
1919
and removing calls to _DoWork will yield the same results. */
2020

21-
#include "AzureIoT.h"
21+
#include "AzureIoTHub.h"
2222

2323

2424
//static const char* connectionString = "HostName=[host].azure-devices.net;DeviceId=[device];SharedAccessKey=[key]";

examples/esp8266/remote_monitoring/remote_monitoring.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft. All rights reserved.
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

4-
#include "AzureIoT.h"
4+
#include "AzureIoTHub.h"
55
#include "sdk/schemaserializer.h"
66
#include "dht22.h"
77

examples/esp8266/simplesample_http/simplesample_http.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ That does not mean that HTTP only works with the _LL APIs.
1212
Simply changing the using the convenience layer (functions not having _LL)
1313
and removing calls to _DoWork will yield the same results. */
1414

15-
#include "AzureIoT.h"
15+
#include "AzureIoTHub.h"
1616

1717
static const char* connectionString = "HostName=[host].azure-devices.net;DeviceId=[device];SharedAccessKey=[key]";
1818

examples/samd/command_center/rem_ctrl_http.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include <time.h>
99

1010
#ifdef ARDUINO
11-
#include "AzureIoT.h"
11+
#include "AzureIoTHub.h"
1212
#else
1313
#include "serializer.h"
1414
#include "iothub_client_ll.h"

examples/samd/remote_monitoring/remote_monitoring.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft. All rights reserved.
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

4-
#include "AzureIoT.h"
4+
#include "AzureIoTHub.h"
55
#include "sdk/schemaserializer.h"
66
#include "bme280.h"
77

examples/samd/simplesample_http/simplesample_http.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ That does not mean that HTTP only works with the _LL APIs.
1111
Simply changing the using the convenience layer (functions not having _LL)
1212
and removing calls to _DoWork will yield the same results. */
1313

14-
#include "AzureIoT.h"
14+
#include "AzureIoTHub.h"
1515

1616
static const char* connectionString = "HostName=[host].azure-devices.net;DeviceId=[device];SharedAccessKey=[key]";
1717

File renamed without changes.

0 commit comments

Comments
 (0)