Skip to content

Commit f65c88a

Browse files
committed
Acrolinx
1 parent a728b83 commit f65c88a

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

articles/iot-hub/device-management-dotnet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,8 @@ You're now ready to run the apps.
239239

240240
1. After that the device is connected and waiting for method invocations, right-click the **TriggerReboot** project, select **Debug**, and then select **Start new instance**.
241241

242-
You should see "Rebooting!" written in the **SimulatedManagedDevice** console and the reported properties of the device, which include the last reboot time, written in the **TriggerReboot** console.
242+
You should see **Rebooting** written in the **SimulatedManagedDevice** console and the reported properties of the device, which include the last reboot time, written in the **TriggerReboot** console.
243243

244-
![Service and device app run](./media/iot-hub-csharp-csharp-device-management-get-started/combinedrun.png)
244+
![Service and device app run](./media/iot-hub-csharp-csharp-device-management-get-started/combinedrun.png)
245245

246246
[!INCLUDE [iot-hub-dm-followup](../../includes/iot-hub-dm-followup.md)]

articles/iot-hub/device-management-node.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,19 +44,19 @@ In this section, you:
4444

4545
* Use the reported properties to enable device twin queries to identify devices and when they last rebooted.
4646

47-
1. Create an empty folder called **manageddevice**. In the **manageddevice** folder, create a package.json file using the following command at your command prompt. Accept all the defaults:
47+
1. Create an empty folder called **managed-device**. In the **managed-device** folder, create a package.json file using the following command at your command prompt. Accept all the defaults:
4848

4949
```cmd/sh
5050
npm init
5151
```
5252
53-
2. At your command prompt in the **manageddevice** folder, run the following command to install the **azure-iot-device** Device SDK package and **azure-iot-device-mqtt** package:
53+
2. At your command prompt in the **managed-device** folder, run the following command to install the **azure-iot-device** Device SDK package and **azure-iot-device-mqtt** package:
5454
5555
```cmd/sh
5656
npm install azure-iot-device azure-iot-device-mqtt --save
5757
```
5858
59-
3. Using a text editor, create a **dmpatterns_getstarted_device.js** file in the **manageddevice** folder.
59+
3. Using a text editor, create a **dmpatterns_getstarted_device.js** file in the **managed-device** folder.
6060
6161
4. Add the following 'require' statements at the start of the **dmpatterns_getstarted_device.js** file:
6262
@@ -144,19 +144,19 @@ In this section, you:
144144
145145
In this section, you create a Node.js console app that initiates a remote reboot on a device using a direct method. The app uses device twin queries to discover the last reboot time for that device.
146146
147-
1. Create an empty folder called **triggerrebootondevice**. In the **triggerrebootondevice** folder, create a package.json file using the following command at your command prompt. Accept all the defaults:
147+
1. Create an empty folder called **trigger-reboot-on-device**. In the **trigger-reboot-on-device** folder, create a package.json file using the following command at your command prompt. Accept all the defaults:
148148
149149
```cmd/sh
150150
npm init
151151
```
152152
153-
2. At your command prompt in the **triggerrebootondevice** folder, run the following command to install the **azure-iothub** Device SDK package and **azure-iot-device-mqtt** package:
153+
2. At your command prompt in the **trigger-reboot-on-device** folder, run the following command to install the **azure-iothub** Device SDK package and **azure-iot-device-mqtt** package:
154154
155155
```cmd/sh
156156
npm install azure-iothub --save
157157
```
158158
159-
3. Using a text editor, create a **dmpatterns_getstarted_service.js** file in the **triggerrebootondevice** folder.
159+
3. Using a text editor, create a **dmpatterns_getstarted_service.js** file in the **trigger-reboot-on-device** folder.
160160
161161
4. Add the following 'require' statements at the start of the **dmpatterns_getstarted_service.js** file:
162162
@@ -233,13 +233,13 @@ In this section, you create a Node.js console app that initiates a remote reboot
233233
234234
You're now ready to run the apps.
235235
236-
1. At the command prompt in the **manageddevice** folder, run the following command to begin listening for the reboot direct method.
236+
1. At the command prompt in the **managed-device** folder, run the following command to begin listening for the reboot direct method.
237237
238238
```cmd/sh
239239
node dmpatterns_getstarted_device.js
240240
```
241241
242-
2. At the command prompt in the **triggerrebootondevice** folder, run the following command to trigger the remote reboot and query for the device twin to find the last reboot time.
242+
2. At the command prompt in the **trigger-reboot-on-device** folder, run the following command to trigger the remote reboot and query for the device twin to find the last reboot time.
243243
244244
```cmd/sh
245245
node dmpatterns_getstarted_service.js

articles/iot-hub/device-management-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ In this section, you:
5353

5454
* Use the reported properties to enable device twin queries to identify devices and when they last rebooted.
5555

56-
In Azure Cloud Shell you used above or any other environment with Python, create the device code.
56+
In Azure Cloud Shell you used previously, or any other environment with Python, create the device code.
5757

5858
1. At your command prompt, run the following command to install the **azure-iot-device** package:
5959

0 commit comments

Comments
 (0)