You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/iot-hub/iot-hub-raspberry-pi-kit-c-get-started.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -229,6 +229,15 @@ One way to monitor messages received by your IoT hub from your device is to use
229
229
230
230
For more ways to process data sent by your device, continue on to the next section.
231
231
232
+
## Clean up resources
233
+
234
+
You can use the resources created in this topic with other tutorials and quickstarts in this document set. If you plan to continue on to work with other quickstarts or with the tutorials, do not clean up the resources created in this topic. If you do not plan to continue, use the following steps to delete all resources created by this topic in the Azure portal.
235
+
236
+
1. From the left-hand menu in the Azure portal, select **All resources** and then select the IoT Hub you created.
237
+
1. At the top of the IoT Hub overview pane, click **Delete**.
238
+
1. Enter your hub name and click **Delete** again to confirm permanently deleting the IoT Hub.
239
+
240
+
232
241
## Next steps
233
242
234
243
You’ve run a sample application to collect sensor data and send it to your IoT hub.
Copy file name to clipboardExpand all lines: articles/iot-hub/iot-hub-raspberry-pi-kit-node-get-started.md
+16-1Lines changed: 16 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -118,7 +118,14 @@ Prepare the microSD card for installation of the Raspberry Pi OS image.
118
118
119
119

120
120
121
-
4. On the **Interfaces** tab, set **I2C** and **SSH** to **Enable**, and then click **OK**. If you don't have physical sensors and want to use simulated sensor data, this step is optional.
121
+
4. On the **Interfaces** tab, set **SSH** and **I2C** to **Enable**, and then click **OK**.
122
+
123
+
| Interface | Description |
124
+
| --------- | ----------- |
125
+
|*SSH*| Secure Shell (SSH) is used to remote into the Raspberry Pi with a remote command-line. This is the preferred method for issuing the commands to your Raspberry Pi remotely in this document. |
126
+
|*I2C*| Inter-integrated Circuit (I2C) is a communications protocol used to interface with hardware such as sensors. This interface is required for interfacing with physical sensors in this topic.|
127
+
128
+
If you don't have physical sensors and want to use simulated sensor data from your Raspberry Pi device, you can leave **I2C** disabled.
122
129
123
130

124
131
@@ -250,6 +257,14 @@ One way to monitor messages received by your IoT hub from your device is to use
250
257
251
258
For more ways to process data sent by your device, continue on to the next section.
252
259
260
+
## Clean up resources
261
+
262
+
You can use the resources created in this topic with other tutorials and quickstarts in this document set. If you plan to continue on to work with other quickstarts or with the tutorials, do not clean up the resources created in this topic. If you do not plan to continue, use the following steps to delete all resources created by this topic in the Azure portal.
263
+
264
+
1. From the left-hand menu in the Azure portal, select **All resources** and then select the IoT Hub you created.
265
+
1. At the top of the IoT Hub overview pane, click **Delete**.
266
+
1. Enter your hub name and click **Delete** again to confirm permanently deleting the IoT Hub.
267
+
253
268
## Next steps
254
269
255
270
You've run a sample application to collect sensor data and send it to your IoT hub.
Copy file name to clipboardExpand all lines: includes/iot-hub-include-create-device.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,13 +17,15 @@ In this section, you create a device identity in the identity registry in your I
17
17
18
18

19
19
20
-
1. In **Create a device**, provide a name for your new device, such as **myDeviceId**, and select **Save**. This action creates a device identity for your IoT hub.
20
+
1. In **Create a device**, provide a name for your new device, such as **myDeviceId**, and select **Save**. This action creates a device identity for your IoT hub. Leave **Auto-generate keys** checked so that the primary and secondary keys will be generated automatically.
21
21
22
22

1. After the device is created, open the device from the list in the **IoT devices** pane. Copy the **Primary Connection String** to use later.
26
+
1. After the device is created, open the device from the list in the **IoT devices** pane. Copy the **Primary Connection String**. This connection string is used by device code to communicate with the hub.
27
+
28
+
By default, the keys and connection strings are masked as they are sensitive information. If you click the eye icon, they are revealed as shown in the image below. It is not necessary to reveal them to copy them with the copy button.
Copy file name to clipboardExpand all lines: includes/iot-hub-include-create-hub.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,15 +26,15 @@ This section describes how to create an IoT hub using the [Azure portal](https:/
26
26
27
27
-**Region**: Select the region in which you want your hub to be located. Select the location closest to you. Some features, such as [IoT Hub device streams](../articles/iot-hub/iot-hub-device-streams-overview.md), are only available in specific regions. For these limited features, you must select one of the supported regions.
28
28
29
-
-**IoT Hub Name**: Enter a name for your hub. This name must be globally unique.
29
+
-**IoT Hub Name**: Enter a name for your hub. This name must be globally unique, with a length between 3 and 50 alphanumeric characters. The name can also include the dash (`'-'`) character.
:::image type="content" source="./media/iot-hub-include-create-hub/iot-hub-create-screen-basics.png" alt-text="Create a hub in the Azure portal.":::
34
34
35
35
1. Select **Next: Networking** to continue creating your hub.
36
36
37
-
Choose the endpoints that can connect to your IoT Hub. You can select the default setting **Public endpoint (all networks)**, or choose **Public endpoint (selected IP ranges)**, or **Private endpoint**. Accept the default setting for this example.
37
+
Choose the endpoints that devices can use to connect to your IoT Hub. You can select the default setting **Public endpoint (all networks)**, or choose **Public endpoint (selected IP ranges)**, or **Private endpoint**. Accept the default setting for this example.
38
38
39
39
:::image type="content" source="./media/iot-hub-include-create-hub/iot-hub-create-network-screen.png" alt-text="Choose the endpoints that can connect.":::
40
40
@@ -57,12 +57,12 @@ This section describes how to create an IoT hub using the [Azure portal](https:/
57
57
58
58
1. Select **Next: Tags** to continue to the next screen.
59
59
60
-
Tags are name/value pairs. You can assign the same tag to multiple resources and resource groups to categorize resources and consolidate billing. For more information, see [Use tags to organize your Azure resources](../articles/azure-resource-manager/management/tag-resources.md).
60
+
Tags are name/value pairs. You can assign the same tag to multiple resources and resource groups to categorize resources and consolidate billing. In this document, you won't be adding any tags. For more information, see [Use tags to organize your Azure resources](../articles/azure-resource-manager/management/tag-resources.md).
61
61
62
62
:::image type="content" source="./media/iot-hub-include-create-hub/iot-hub-create-tags.png" alt-text="Assign tags for the hub using the Azure portal.":::
63
63
64
64
1. Select **Next: Review + create** to review your choices. You see something similar to this screen, but with the values you selected when creating the hub.
65
65
66
66
:::image type="content" source="./media/iot-hub-include-create-hub/iot-hub-review-and-create.png" alt-text="Review information for creating the new hub.":::
67
67
68
-
1. Select **Create** to create your new hub. Creating the hub takes a few minutes.
68
+
1. Select **Create** to start the deployment of your new hub. Your deployment will be in progress a few minutes while the hub is being created. Once the deployment is complete, click **Go to resource** to open the new hub.
0 commit comments