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-devguide-glossary.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ There are _device SDKs_ available for multiple languages that enable you to crea
40
40
41
41
## Azure IoT Explorer
42
42
43
-
The [Azure IoT Explorer](iot-pnp/howto-install-iot-explorer.md) is used to view the telemetry the device is sending, work with device properties, and call commands. You can also use the explorer to interact with and test your devices.
43
+
The [Azure IoT Explorer](https://github.com/Azure/azure-iot-explorer) is used to view the telemetry the device is sending, work with device properties, and call commands. You can also use the explorer to interact with and test your devices, and to manage plug and play devices.
44
44
45
45
## Azure IoT service SDKs
46
46
@@ -140,7 +140,7 @@ Device data refers to the per-device data stored in the IoT Hub [identity regist
140
140
141
141
## Device explorer
142
142
143
-
The device explorer has been replaced with the [Azure IoT Explorer](#azure-iot-explorer), which is used to view the telemetry a device is sending, work with device properties, and call commands. You can also use the explorer to interact with and test your devices.
143
+
The device explorer has been replaced with the [Azure IoT Explorer](https://github.com/Azure/azure-iot-explorer), which is used to view the telemetry the device is sending, work with device properties, and call commands. You can also use the explorer to interact with and test your devices, and to manage plug and play devices.
* Download [Device SDK](https://pypi.org/project/azure-iot-device/) and [Service SDK](https://pypi.org/project/azure-iothub-provisioningserviceclient/) from pip
Copy file name to clipboardExpand all lines: articles/iot-hub/iot-hub-device-sdk-c-intro.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ Now that you have the sample source code, the next thing to do is to get a set o
68
68
69
69
There are several open source tools to help you manage your IoT hub.
70
70
71
-
* A Windows application called [device explorer](https://github.com/Azure/azure-iot-sdk-csharp/tree/master/tools/DeviceExplorer).
71
+
* A Windows application called [Azure IoT Explorer](https://github.com/Azure/azure-iot-explorer).
72
72
73
73
* A cross-platform Visual Studio Code extension called [Azure IoT Tools](https://marketplace.visualstudio.com/items?itemName=vsciot-vscode.azure-iot-tools).
All device communication with IoT Hub must be secured using TLS/SSL. Therefore, IoT Hub doesn’t support non-secure connections over port 1883.
22
+
All device communication with IoT Hub must be secured using TLS/SSL. Therefore, IoT Hub doesn't support non-secure connections over port 1883.
23
23
24
24
## Connecting to IoT Hub
25
25
@@ -112,7 +112,7 @@ If a device cannot use the device SDKs, it can still connect to the public devic
112
112
113
113
For more information about how to generate SAS tokens, see the device section of [Using IoT Hub security tokens](iot-hub-devguide-security.md#use-sas-tokens-in-a-device-app).
114
114
115
-
When testing, you can also use the cross-platform [Azure IoT Tools for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=vsciot-vscode.azure-iot-tools) or the [Device Explorer](https://github.com/Azure/azure-iot-sdk-csharp/blob/master/tools/DeviceExplorer) tool to quickly generate a SAS token that you can copy and paste into your own code:
115
+
When testing, you can also use the cross-platform [Azure IoT Tools for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=vsciot-vscode.azure-iot-tools) or the CLI extension command [az iot hub generate-sas-token](/cli/azure/ext/azure-cli-iot-ext/iot/hub?view=azure-cli-latest#ext-azure-cli-iot-ext-az-iot-hub-generate-sas-token) to quickly generate a SAS token that you can copy and paste into your own code:
116
116
117
117
### For Azure IoT Tools
118
118
@@ -124,16 +124,6 @@ If a device cannot use the device SDKs, it can still connect to the public devic
124
124
125
125
4. The SAS token is created and copied to clipboard.
126
126
127
-
### For Device Explorer
128
-
129
-
1. Go to the **Management** tab in **Device Explorer**.
130
-
131
-
2. Click **SAS Token** (top right).
132
-
133
-
3. On **SASTokenForm**, select your device in the **DeviceID** drop down. Set your **TTL**.
134
-
135
-
4. Click **Generate** to create your token.
136
-
137
127
The SAS token that's generated has the following structure:
@@ -353,7 +343,7 @@ The following sequence describes how a device updates the reported properties in
353
343
354
344
3. The service then sends a response message that contains the new ETag value for the reported properties collection on topic `$iothub/twin/res/{status}/?$rid={request id}`. This response message uses the same **request ID** as the request.
355
345
356
-
The request message body contains a JSON document, that contains new values for reported properties. Each member in the JSON document updates or add the corresponding member in the device twin’s document. A member set to `null`, deletes the member from the containing object. For example:
346
+
The request message body contains a JSON document, that contains new values for reported properties. Each member in the JSON document updates or add the corresponding member in the device twin's document. A member set to `null`, deletes the member from the containing object. For example:
0 commit comments