Skip to content

Files

Latest commit

9fef4a0 · Apr 6, 2021

History

History
91 lines (55 loc) · 4.44 KB

iot-hub-device-management-iot-toolkit.md

File metadata and controls

91 lines (55 loc) · 4.44 KB
title description author ms.service services ms.topic ms.date ms.author
Azure IoT device management with Azure IoT Tools for VSCode
Use the Azure IoT Tools for Visual Studio Code for Azure IoT Hub device management, featuring the Direct methods and the Twin's desired properties management options.
formulahendry
iot-hub
iot-hub
conceptual
01/04/2019
junhan

Use Azure IoT Tools for Visual Studio Code for Azure IoT Hub device management

End-to-end diagram

In this article, you learn how to use Azure IoT Tools for Visual Studio Code with various management options on your development machine. Azure IoT Tools is a useful Visual Studio Code extension that makes IoT Hub management and IoT application development easier. It comes with management options that you can use to perform various tasks.

[!INCLUDE iot-hub-basic]

Management option Task
Direct methods Make a device act such as starting or stopping sending messages or rebooting the device.
Read device twin Get the reported state of a device. For example, the device reports the LED is blinking now.
Update device twin Put a device into certain states, such as setting an LED to green or setting the telemetry send interval to 30 minutes.
Cloud-to-device messages Send notifications to a device. For example, "It is very likely to rain today. Don't forget to bring an umbrella."

For more detailed explanation on the differences and guidance on using these options, see Device-to-cloud communication guidance and Cloud-to-device communication guidance.

Device twins are JSON documents that store device state information (metadata, configurations, and conditions). IoT Hub persists a device twin for each device that connects to it. For more information about device twins, see Get started with device twins.

[!INCLUDE updated-for-az]

Prerequisites

Sign in to access your IoT hub

  1. In Explorer view of VS Code, expand Azure IoT Hub Devices section in the bottom left corner.

  2. Click Select IoT Hub in context menu.

  3. A pop-up will show in the bottom right corner to let you sign in to Azure for the first time.

  4. After you sign in, your Azure Subscription list will be shown, then select Azure Subscription and IoT Hub.

  5. The device list will be shown in Azure IoT Hub Devices tab in a few seconds.

    [!Note] You can also complete the set up by choosing Set IoT Hub Connection String. Enter the iothubowner policy connection string for the IoT hub that your IoT device connects to in the pop-up window.

Direct methods

  1. Right-click your device and select Invoke Direct Method.

  2. Enter the method name and payload in input box.

  3. Results will be shown in OUTPUT > Azure IoT Hub view.

Read device twin

  1. Right-click your device and select Edit Device Twin.

  2. An azure-iot-device-twin.json file will be opened with the content of device twin.

Update device twin

  1. Make some edits of tags or properties.desired field.

  2. Right-click on the azure-iot-device-twin.json file.

  3. Select Update Device Twin to update the device twin.

Send cloud-to-device messages

To send a message from your IoT hub to your device, follow these steps:

  1. Right-click your device and select Send C2D Message to Device.

  2. Enter the message in input box.

  3. Results will be shown in OUTPUT > Azure IoT Hub view.

Next steps

You've learned how to use Azure IoT Tools extension for Visual Studio Code with various management options.

[!INCLUDE iot-hub-get-started-next-steps]