Advanced authoring for Digital Twins models now in Visual Studio and VS Code

Rido

Authoring Digital Twins models is no small business and can rapidly get complicated and prone to errors. There now is a Visual Studio Code extension that will save you time, reduce typos and make you a Digital Twins wizard. Let me introduce the DTDL editor for Visual Studio Code and DTDL editor for Visual Studio 2019 (both in preview).

The Digital Twin Definition Language (DTDL) is a language for describing models for Plug and Play devices, device digital twins, and logical digital twins. Broadly, modeling enables IoT solutions to provision, use, and configure digital twins of all kinds from multiple sources in a single solution. Using DTDL to describe any digital twin’s abilities enables the IoT platform and IoT solutions to leverage the semantics of each digital twin.

With this new extension, you can read and write documents using DTDL more efficiently taking full advantage of the following key features: Template, Intellisense and Validation.

Let us take the classic IoT example – a thermostat – to look at how this extension helps you author a Digital Twin model in VS Code. Our thermostat is a specific model that comes with sensors and capabilities described in the model. Let us build this model together.

Create Interfaces from a Template

In DTDL, a digital twin model is composed of one or more Interfaces. An interface is reusable and contains a set of behaviors in the form of objects of different metamodel classes (Telemetry, Properties, Commands, Relationships, Components).

To create the thermostat interfaces, you can use the command palette in VS Code.  It includes a simple example with Telemetry reporting temperature as a double, a read only Property for the device status as a string and a Command to reboot the device.

  1. In Visual Studio Code, select View > Command Paletteto open the VS Code command palette.
  2. In the command palette, enter and run the command DTDL: Create Interface and follow the instructions to assign the interface name.
  3. A JSON file will be created in the current folder. The file name is based on the input interface and part of the value of @id and displayName. You should replace the {company} field in @id with your own company’s name. Note that @id is the <path> component of the Digital Twin Model Identifier (DTMI) and should follow the DTMI rule to uniquely identify the device model.

(a gif to demonstrate how to create interface from template and then modify the path)

(a gif to demonstrate how to create interface from template and then modify the path)

We kept the initial template as simple as possible to help you get started. From there, you can extend the interface with new types defined in DTDL v2:

  • Component which enables interfaces to be composed of other interfaces
  • Relationship which describes a link to any other digital twin.

If you are interested into more technical details about the latest revision of DTDL v2, please refer to here.

Intellisense to guide you and make your life easier

Once you have your initial interface created in the file, you will want to edit it, for example to add a new capability that describes the warning message from the thermostat when temperature is too high. The new extension will help you do this with the support of a rich intellisense auto-completion.

Image dtdl intellisense

Highlighting and validation to help you get the language syntax right

The extension comes with syntax highlighting to ease reading as well as validation to help you detect and fix issues rapidly.

DTDL validation

With this new DTDL editor extension for Visual Studio and VS Code, you’ll find it easier to author Digital Twins models, all in the comfort of your favorite code editor. You can find the extensions on the VS Marketplace, and the source code on GitHub.

We do want to hear about your first impressions and thoughts, so feel free to drop a comment here or on GitHub.

3 comments

Discussion is closed. Login to edit/delete existing comments.

  • Michael Vach 0

    Unable to install in Visual Studio 2019 Version 16.7.0 Preview 6.0

    7/29/2020 9:56:26 AM – Install Error : Microsoft.VisualStudio.ExtensionManager.MissingReferencesException: This extension cannot be installed because the following references are missing:
    -Microsoft.VisualStudio.Component.TypeScript.3.8 (Microsoft.VisualStudio.Component.TypeScript.3.8)
    at Microsoft.VisualStudio.ExtensionManager.EngineUtilities.EnsureNoMissingReferences(IEnumerable`1 missingRefs)
    at Microsoft.VisualStudio.ExtensionManager.PackageInstaller.PrepareEngineInstall(IDependencyGraph dGraph, IDependencyComparisonSeed seed, Component vsixComponent, Boolean isProductComponent, Int32& totalInstallationSteps)
    at Microsoft.VisualStudio.ExtensionManager.ExtensionEngineImpl.PerformSetupEngineInstall(InstallableExtensionImpl extension, Boolean installPerMachine, Boolean isPackComponent, IDictionary`2 extensionsInstalledSoFar, List`1 extensionsUninstalledSoFar, IInstalledExtensionList modifiedInstalledExtensionsList, IProgress`1 progress, InstallFlags installFlags, AsyncOperation asyncOp, Version targetedVsVersion, IInstalledExtension& newExtension)
    at Microsoft.VisualStudio.ExtensionManager.ExtensionEngineImpl.InstallInternal(InstallableExtensionImpl extension, InstallFlags installFlags, IDictionary`2 extensionsInstalledSoFar, List`1 extensionsUninstalledSoFar, IInstalledExtensionList modifiedInstalledExtensionsList, AsyncOperation asyncOp, IProgress`1 progress, Version targetedVsVersion)
    at Microsoft.VisualStudio.ExtensionManager.ExtensionEngineImpl.BeginInstall(IInstallableExtension installableExtension, InstallFlags installFlags, AsyncOperation asyncOp, Version targetedVsVersion)
    at Microsoft.VisualStudio.ExtensionManager.ExtensionEngineImpl.InstallWorker(IInstallableExtension extension, InstallFlags installFlags, AsyncOperation asyncOp)

    • RidoMicrosoft employee 0

      Hi Michael, I’m very sorry about your installation experience. I’m forwarding the log you provided to our engineering team.

      For easiest tracking, I’d suggest you to create an issue in the marketplace page ?

      Thanks,
      Rido

Feedback usabilla icon