├── .github └── workflows │ ├── main.yml │ ├── rc-release.yml │ └── release-prod.yml ├── .gitignore ├── .travis.yml ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── SECURITY.md ├── azure-iot-tools-icon.png ├── images ├── command-palette.png ├── create-edge-device.gif ├── select-iothub.gif └── setup-iothub-connection-string.gif ├── package.json ├── resources └── welcome │ ├── device-workbench-images │ ├── arduino-upload.png │ ├── cloud-provision.png │ ├── connect-ssid.png │ ├── connect.jpg │ ├── connection-string.png │ ├── d2c-output.png │ ├── firmware.jpg │ ├── hardware.jpg │ ├── install-arduino.png │ ├── install-az3166-sdk.png │ ├── install-azure-iot-tools.png │ ├── monitor-d2c.png │ ├── open-sample.png │ ├── result-serial-output.png │ ├── select-com.png │ ├── select-iothub.gif │ ├── sensors.jpg │ ├── serial-monitor.png │ ├── set-ap-mode.gif │ ├── user-settings-arduino.png │ ├── wifi-ap.jpg │ ├── wifi-ip.jpg │ └── wifi-portal.png │ ├── edge-images │ ├── build-and-run.png │ ├── create-edge-device.gif │ ├── deploy-solution.png │ ├── new-iot-edge-solution.gif │ ├── setup-iot-edge-simulation.png │ └── view-generated-data.png │ ├── highlight-9.13.1.min.js │ ├── index.html │ ├── jquery-3.3.1.min.js │ ├── main.css │ ├── main.js │ └── toolkit-images │ ├── code-generation.gif │ ├── createdevice.gif │ ├── createhub.gif │ ├── createhubmenu.png │ ├── device-explorer-click.png │ ├── device-explorer.png │ ├── iot-hub-explorer.png │ ├── select-iot-hub.png │ ├── sendd2c.gif │ ├── sign-in-first.png │ ├── startmonitor.png │ └── stopmonitor.png ├── scripts └── genAiKey.js ├── src ├── constants.ts ├── extension.ts ├── telemetryClient.ts ├── test │ ├── extension.test.ts │ ├── index.ts │ └── runTest.ts └── welcomePage.ts ├── tsconfig.json └── tslint.json /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/rc-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/.github/workflows/rc-release.yml -------------------------------------------------------------------------------- /.github/workflows/release-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/.github/workflows/release-prod.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azure-iot-tools-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/azure-iot-tools-icon.png -------------------------------------------------------------------------------- /images/command-palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/images/command-palette.png -------------------------------------------------------------------------------- /images/create-edge-device.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/images/create-edge-device.gif -------------------------------------------------------------------------------- /images/select-iothub.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/images/select-iothub.gif -------------------------------------------------------------------------------- /images/setup-iothub-connection-string.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/images/setup-iothub-connection-string.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/package.json -------------------------------------------------------------------------------- /resources/welcome/device-workbench-images/arduino-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/device-workbench-images/arduino-upload.png -------------------------------------------------------------------------------- /resources/welcome/device-workbench-images/cloud-provision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/device-workbench-images/cloud-provision.png -------------------------------------------------------------------------------- /resources/welcome/device-workbench-images/connect-ssid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/device-workbench-images/connect-ssid.png -------------------------------------------------------------------------------- /resources/welcome/device-workbench-images/connect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/device-workbench-images/connect.jpg -------------------------------------------------------------------------------- /resources/welcome/device-workbench-images/connection-string.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/device-workbench-images/connection-string.png -------------------------------------------------------------------------------- /resources/welcome/device-workbench-images/d2c-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/device-workbench-images/d2c-output.png -------------------------------------------------------------------------------- /resources/welcome/device-workbench-images/firmware.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/device-workbench-images/firmware.jpg -------------------------------------------------------------------------------- /resources/welcome/device-workbench-images/hardware.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/device-workbench-images/hardware.jpg -------------------------------------------------------------------------------- /resources/welcome/device-workbench-images/install-arduino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/device-workbench-images/install-arduino.png -------------------------------------------------------------------------------- /resources/welcome/device-workbench-images/install-az3166-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/device-workbench-images/install-az3166-sdk.png -------------------------------------------------------------------------------- /resources/welcome/device-workbench-images/install-azure-iot-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/device-workbench-images/install-azure-iot-tools.png -------------------------------------------------------------------------------- /resources/welcome/device-workbench-images/monitor-d2c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/device-workbench-images/monitor-d2c.png -------------------------------------------------------------------------------- /resources/welcome/device-workbench-images/open-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/device-workbench-images/open-sample.png -------------------------------------------------------------------------------- /resources/welcome/device-workbench-images/result-serial-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/device-workbench-images/result-serial-output.png -------------------------------------------------------------------------------- /resources/welcome/device-workbench-images/select-com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/device-workbench-images/select-com.png -------------------------------------------------------------------------------- /resources/welcome/device-workbench-images/select-iothub.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/device-workbench-images/select-iothub.gif -------------------------------------------------------------------------------- /resources/welcome/device-workbench-images/sensors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/device-workbench-images/sensors.jpg -------------------------------------------------------------------------------- /resources/welcome/device-workbench-images/serial-monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/device-workbench-images/serial-monitor.png -------------------------------------------------------------------------------- /resources/welcome/device-workbench-images/set-ap-mode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/device-workbench-images/set-ap-mode.gif -------------------------------------------------------------------------------- /resources/welcome/device-workbench-images/user-settings-arduino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/device-workbench-images/user-settings-arduino.png -------------------------------------------------------------------------------- /resources/welcome/device-workbench-images/wifi-ap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/device-workbench-images/wifi-ap.jpg -------------------------------------------------------------------------------- /resources/welcome/device-workbench-images/wifi-ip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/device-workbench-images/wifi-ip.jpg -------------------------------------------------------------------------------- /resources/welcome/device-workbench-images/wifi-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/device-workbench-images/wifi-portal.png -------------------------------------------------------------------------------- /resources/welcome/edge-images/build-and-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/edge-images/build-and-run.png -------------------------------------------------------------------------------- /resources/welcome/edge-images/create-edge-device.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/edge-images/create-edge-device.gif -------------------------------------------------------------------------------- /resources/welcome/edge-images/deploy-solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/edge-images/deploy-solution.png -------------------------------------------------------------------------------- /resources/welcome/edge-images/new-iot-edge-solution.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/edge-images/new-iot-edge-solution.gif -------------------------------------------------------------------------------- /resources/welcome/edge-images/setup-iot-edge-simulation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/edge-images/setup-iot-edge-simulation.png -------------------------------------------------------------------------------- /resources/welcome/edge-images/view-generated-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/edge-images/view-generated-data.png -------------------------------------------------------------------------------- /resources/welcome/highlight-9.13.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/highlight-9.13.1.min.js -------------------------------------------------------------------------------- /resources/welcome/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/index.html -------------------------------------------------------------------------------- /resources/welcome/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /resources/welcome/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/main.css -------------------------------------------------------------------------------- /resources/welcome/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/main.js -------------------------------------------------------------------------------- /resources/welcome/toolkit-images/code-generation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/toolkit-images/code-generation.gif -------------------------------------------------------------------------------- /resources/welcome/toolkit-images/createdevice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/toolkit-images/createdevice.gif -------------------------------------------------------------------------------- /resources/welcome/toolkit-images/createhub.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/toolkit-images/createhub.gif -------------------------------------------------------------------------------- /resources/welcome/toolkit-images/createhubmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/toolkit-images/createhubmenu.png -------------------------------------------------------------------------------- /resources/welcome/toolkit-images/device-explorer-click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/toolkit-images/device-explorer-click.png -------------------------------------------------------------------------------- /resources/welcome/toolkit-images/device-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/toolkit-images/device-explorer.png -------------------------------------------------------------------------------- /resources/welcome/toolkit-images/iot-hub-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/toolkit-images/iot-hub-explorer.png -------------------------------------------------------------------------------- /resources/welcome/toolkit-images/select-iot-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/toolkit-images/select-iot-hub.png -------------------------------------------------------------------------------- /resources/welcome/toolkit-images/sendd2c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/toolkit-images/sendd2c.gif -------------------------------------------------------------------------------- /resources/welcome/toolkit-images/sign-in-first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/toolkit-images/sign-in-first.png -------------------------------------------------------------------------------- /resources/welcome/toolkit-images/startmonitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/toolkit-images/startmonitor.png -------------------------------------------------------------------------------- /resources/welcome/toolkit-images/stopmonitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/resources/welcome/toolkit-images/stopmonitor.png -------------------------------------------------------------------------------- /scripts/genAiKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/scripts/genAiKey.js -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/telemetryClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/src/telemetryClient.ts -------------------------------------------------------------------------------- /src/test/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/src/test/extension.test.ts -------------------------------------------------------------------------------- /src/test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/src/test/index.ts -------------------------------------------------------------------------------- /src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/src/test/runTest.ts -------------------------------------------------------------------------------- /src/welcomePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/src/welcomePage.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azure-iot-tools/HEAD/tslint.json --------------------------------------------------------------------------------