title | description | author | ms.service | services | ms.topic | ms.tgt_pltfrm | ms.date | ms.author |
---|---|---|---|---|---|---|---|---|
Azure IoT device management with Azure IoT Toolkit extension for Visual Studio Code | Microsoft Docs |
Use the Azure IoT Toolkit extension 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 |
arduino |
8/3/2018 |
junhan |
Azure IoT Toolkit is a useful Visual Studio Code extension that makes IoT Hub management 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.
You learn using Azure IoT Toolkit extension for Visual Studio Code with various management options on your development machine.
Run Azure IoT Toolkit extension for Visual Studio Code with various management options.
- An active Azure subscription.
- An Azure IoT hub under your subscription.
- Visual Studio Code
- Azure IoT Toolkit
-
In Explorer view of VS Code, expand Azure IoT Hub Devices section in the bottom left corner.
-
Click Select IoT Hub in context menu.
-
A pop-up will show in the bottom right corner to let you sign in to Azure for the first time.
-
After you sign in, your Azure Subscription list will be shown, then select Azure Subscription and IoT Hub.
-
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 connection string for the IoT hub that your IoT device connects to in the pop-up window.
-
Right-click your device and select Invoke Direct Method.
-
Enter the method name and payload in input box.
-
Results will be shown in OUTPUT > Azure IoT Toolkit view.
-
Right-click your device and select Edit Device Twin.
-
An azure-iot-device-twin.json file will be opened with the content of device twin.
-
Make some edits of tags or properties.desired field.
-
Right-click on the azure-iot-device-twin.json file.
-
Select Update Device Twin to update the device twin.
To send a message from your IoT hub to your device, follow these steps:
-
Right-click your device and select Send C2D Message to Device.
-
Enter the message in input box.
-
Results will be shown in OUTPUT > Azure IoT Toolkit view.
You've learned how to use Azure IoT Toolkit extension for Visual Studio Code with various management options.
[!INCLUDE iot-hub-get-started-next-steps]