Skip to content
This repository has been archived by the owner on Apr 23, 2022. It is now read-only.

Commit

Permalink
Rename to Azure IoT Hub Toolkit (#523)
Browse files Browse the repository at this point in the history
* Rename to Azure IoT Hub Toolkit

* Rename to Azure IoT Hub Toolkit
  • Loading branch information
lirenhe committed Dec 12, 2018
1 parent 6d9adce commit 1c5d4e6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/iot-devkit/devkit-get-started.md
Expand Up @@ -275,7 +275,7 @@ The sample application is running successfully when you see the following result

![Final output in VS Code](media/iot-devkit-get-started/serial-monitor-result.png)

You can use [Azure IoT Toolkit](https://marketplace.visualstudio.com/items?itemName=vsciot-vscode.azure-iot-toolkit) to monitor device-to-cloud (D2C) messages in IoT Hub:
You can use [Azure IoT Hub Toolkit](https://marketplace.visualstudio.com/items?itemName=vsciot-vscode.azure-iot-toolkit) to monitor device-to-cloud (D2C) messages in IoT Hub:

1. Expand **AZURE IOT HUB DEVICES** on the bottom left corner, click the device that you have created at **Provision Azure service** step and open the context menu, then click **IoT: Start monitoring D2C message** in context menu.

Expand Down
2 changes: 1 addition & 1 deletion docs/iot-devkit/devkit-ota.md
Expand Up @@ -296,7 +296,7 @@ You can see the status update in the portal in the **Automatic device management

### View status in device twins

You can check them by using the Azure IoT Toolkit extension:
You can check them by using the Azure IoT Hub Toolkit extension:

1. In Explorer of VS Code, click "Azure IoT Hub Devices" in the bottom left corner.

Expand Down
2 changes: 1 addition & 1 deletion docs/raspberry-pi/raspi-get-started.md
Expand Up @@ -155,7 +155,7 @@ If you cannot execute ssh command in the terminal on Windows, you can use any ot

## Test the project

You can use [Azure IoT Toolkit](https://marketplace.visualstudio.com/items?itemName=vsciot-vscode.azure-iot-toolkit) to monitor device-to-cloud (D2C) messages in IoT Hub:
You can use [Azure IoT Hub Toolkit](https://marketplace.visualstudio.com/items?itemName=vsciot-vscode.azure-iot-toolkit) to monitor device-to-cloud (D2C) messages in IoT Hub:

1. Expand **AZURE IOT HUB DEVICES** on the bottom left corner, click the device that you have created at **Provision Azure service** step and open the context menu, then click **IoT: Start monitoring D2C message** in context menu.

Expand Down
2 changes: 1 addition & 1 deletion src/Models/IoTHub.ts
Expand Up @@ -97,7 +97,7 @@ export class IoTHub implements Component, Provisionable {
const toolkit = getExtension(extensionName.Toolkit);
if (toolkit === undefined) {
const error = new Error(
'Azure IoT Toolkit is not installed. Please install it from Marketplace.');
'Azure IoT Hub Toolkit is not installed. Please install it from Marketplace.');
throw error;
}

Expand Down
2 changes: 1 addition & 1 deletion src/Models/IoTHubDevice.ts
Expand Up @@ -64,7 +64,7 @@ export class IoTHubDevice implements Component, Provisionable {
const toolkit = getExtension(extensionName.Toolkit);
if (toolkit === undefined) {
const error = new Error(
'Azure IoT Toolkit is not installed. Please install it from Marketplace.');
'Azure IoT Hub Toolkit is not installed. Please install it from Marketplace.');
throw error;
}

Expand Down

0 comments on commit 1c5d4e6

Please sign in to comment.