Skip to content

Commit a017793

Browse files
committed
Replace Device Workbench with Azure IoT Tools extension package
1 parent 04ecc99 commit a017793

5 files changed

+12
-12
lines changed

articles/iot-pnp/iot-plug-and-play-glossary.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ Azure IoT Central is a fully managed software-as-a-service solution that makes i
4141

4242
The Azure IoT certification service runs a set of certification tests when you submit an [IoT Plug and Play device](#iot-plug-and-play-device) for certification through the [Azure Certified for IoT portal](#azure-certified-for-iot-portal). Before you can add a device to the [Certified for IoT device catalog](#certified-for-iot-device-catalog), the device must be certified.
4343

44-
## Azure IoT Device Workbench extension
44+
## Azure IoT Tools extension
4545

46-
Azure IoT Device Workbench is a [Visual Studio code](#visual-studio-code) extension that provides an integrated environment to:
46+
Azure IoT Tools is a a collection of extensions in [Visual Studio code](#visual-studio-code) that help you interact with IoT Hub and develop IoT devices. For develop IoT Plug and Play device, it provides:
4747

4848
- Author [device capability models](#device-capability-model) and [interfaces](#interface).
4949
- Publish to [model repositories](#model-repository).
@@ -195,4 +195,4 @@ Telemetry fields defined in an [interface](#interface) represent measurements. T
195195

196196
## Visual Studio code
197197

198-
Visual Studio code is a modern code editor available for multiple platforms. Extensions, such as the [Azure IoT Device Workbench extension](#azure-iot-device-workbench-extension) enable you to customize it to support a wide range of development scenarios.
198+
Visual Studio code is a modern code editor available for multiple platforms. Extensions, such as the [Azure IoT Tools](https://marketplace.visualstudio.com/items?itemName=vsciot-vscode.azure-iot-tools) enable you to customize it to support a wide range of development scenarios.

articles/iot-pnp/overview-iot-plug-and-play.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ As a device developer, you can develop an IoT hardware product that supports IoT
6060

6161
1. Author the device software or firmware that implements the capabilities declared in the device capability model and interfaces. The Azure IoT SDK includes APIs to implement device capability models.
6262

63-
The [IoT Device Workbench for VS Code](https://marketplace.visualstudio.com/items?itemName=vsciot-vscode.vscode-iot-workbench) extension provides many features to assist you. For example, as a device developer you can use the extension to generate a skeleton C project from a capability model. However you can use any IDE to author and implement device capability models.
63+
The [Azure IoT Tools for VS Code](https://marketplace.visualstudio.com/items?itemName=vsciot-vscode.azure-iot-tools) provides many features to assist you. For example, as a device developer you can use the extension to generate a skeleton C project from a capability model. However you can use any IDE to author and implement device capability models.
6464

6565
## Certify an IoT Plug and Play device
6666

articles/iot-pnp/quickstart-create-pnp-device.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ To complete this quickstart, you need to install the following software on your
2525
* [CMake](https://cmake.org/download/).
2626
* [Visual Studio Code](https://code.visualstudio.com/).
2727

28-
### Install Azure IoT Device Workbench
28+
### Install Azure IoT Tools
2929

30-
Use the following steps to install the Azure IoT Device Workbench extension in VS Code:
30+
Use the following steps to install the [Azure IoT Tools for VS Code](https://marketplace.visualstudio.com/items?itemName=vsciot-vscode.azure-iot-tools):
3131

3232
1. In VS Code, select the **Extensions** tab.
33-
1. Search for **Azure IoT Device Workbench**.
33+
1. Search for **Azure IoT Tools**.
3434
1. Select **Install**.
3535

3636
### Install the Azure IoT explorer

articles/iot-pnp/tutorial-build-device-certification.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The certification tests check that:
2828
To complete this tutorial, you need:
2929

3030
- [Visual Studio Code](https://code.visualstudio.com/download)
31-
- [Azure IoT Workbench extension for VS Code](https://github.com/Azure/Azure-IoT-PnP-Preview/blob/master/VSCode/README.md#installation)
31+
- [Azure IoT Tools for VS Code](https://marketplace.visualstudio.com/items?itemName=vsciot-vscode.azure-iot-tools)
3232

3333
You also need the IoT Plug and Play device that you create in the [Quickstart: Use a device capability model to create a device](quickstart-create-pnp-device.md).
3434

articles/iot-pnp/tutorial-pnp-visual-studio-code.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ In this tutorial, you learn how to:
3232
To work with the device capability model in this tutorial, you need:
3333

3434
* [Visual Studio Code](https://code.visualstudio.com/download): VS Code is available for multiple platforms
35-
* Azure IoT Device Workbench extension in VS Code. Use the following steps to install the Azure IoT Device Workbench extension in VS Code:
35+
* [Azure IoT Tools for VS Code](https://marketplace.visualstudio.com/items?itemName=vsciot-vscode.azure-iot-tools). Use the following steps to install it in VS Code:
3636

3737
1. In VS Code, select the **Extensions** tab.
38-
1. Search for **Azure IoT Device Workbench**.
38+
1. Search for **Azure IoT Tools**.
3939
1. Select **Install**.
4040

4141
To build the generated C code on Windows in this tutorial, you need:
@@ -58,7 +58,7 @@ To test your device code in this tutorial, you need:
5858
5959
## Model your device
6060
61-
You use the _digital twin definition language_ to create a device capability model. A model typically consists of multiple _interface_ definition files and a single model file. The **Azure IoT Device Workbench extension for VS Code** includes tools to help you create and edit these JSON files.
61+
You use the _digital twin definition language_ to create a device capability model. A model typically consists of multiple _interface_ definition files and a single model file. The **Azure IoT Tools for VS Code** includes tools to help you create and edit these JSON files.
6262
6363
### Create the interface file
6464
@@ -295,7 +295,7 @@ Your files are now stored in your company repository.
295295
296296
## Generate code
297297
298-
You can use the **Azure IoT Device Workbench extension for VS Code** to generate skeleton C code from your model. To generate the skeleton code in VS Code:
298+
You can use the **Azure IoT Tools for VS Code** to generate skeleton C code from your model. To generate the skeleton code in VS Code:
299299
300300
1. Use **Ctrl+Shift+P** to open the command palette.
301301

0 commit comments

Comments
 (0)