Azure IoT Hub extension for Visual Studio Code
Перейти к файлу
formulahendry a38301639a Initial Release 2016-10-28 20:06:48 +08:00
.vscode first commit 2016-10-28 13:46:08 +08:00
images Initial Release 2016-10-28 20:06:48 +08:00
src Initial Release 2016-10-28 20:06:48 +08:00
test first commit 2016-10-28 13:46:08 +08:00
typings first commit 2016-10-28 13:46:08 +08:00
.gitignore first commit 2016-10-28 13:46:08 +08:00
.vscodeignore first commit 2016-10-28 13:46:08 +08:00
README.md Initial Release 2016-10-28 20:06:48 +08:00
package.json Initial Release 2016-10-28 20:06:48 +08:00
tsconfig.json first commit 2016-10-28 13:46:08 +08:00

README.md

Code Runner

Toolkit makes Azure IoT Development easier

Features

[*] Send messages to Azure IoT Hub (device-to-cloud message)

[*] Monitor device-to-cloud messages

[ ] Send messages from Azure IoT Hub to device (cloud-to-device message)

[ ] Device management (List, Create, Update, Delete)

[ ] And more...

Commands

Command Keyboard Shortcuts Menu Contexts
Send message to IoT Hub Ctrl+Alt+F9 editor/context
Start monitoring Ctrl+Alt+F10 editor/context
Stop monitoring Ctrl+Alt+F11 editor/context

Usages

  • Send messages to Azure IoT Hub

Usage

  • Monitor device-to-cloud messages

Usage

Configuration

To set the Device Connection String which is used to send device-to-cloud message:

{
    "azure-iot-explorer.deviceConnectionString": "HostName=<my-hub>.azure-devices.net;DeviceId=<known-device-id>;SharedAccessKey=<known-device-key>"
}

To set the IoT Hub Connection String to monitor device-to-cloud message:

{
    "azure-iot-explorer.iotHubConnectionString": "HostName=<my-hub>.azure-devices.net;SharedAccessKeyName=<my-policy>;SharedAccessKey=<my-policy-key>"
}

To set the IoT Hub Consumer Group (default is "$Default"):

{
    "azure-iot-explorer.consumerGroup": "$Default"
}

Telemetry data

By default, anonymous telemetry data collection is turned on to understand user behavior to improve this extension. To disable it, update the settings.json as below:

{
    "azure-iot-explorer.enableAppInsights": false
}

Change Log

0.0.1

  • Send messages to Azure IoT Hub
  • Monitor device-to-cloud messages

Issues

Submit the issues if you find any bug or have any suggestion.

Contribution

Fork the repo and submit pull requests.