├── .gitignore ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE-CODE ├── README.md ├── SECURITY.md ├── azure-subscription.md ├── cart ├── Manifest.md ├── README.md └── images │ ├── ai-hardware.jpeg │ ├── cart-contents-1.jpg │ └── iot-hardware.jpeg ├── devices ├── README.md ├── arduino.md ├── azure_sphere.md ├── configure-jupyter-notebooks-raspberry-pi.md ├── esp_eye.md ├── images │ └── azure-sphere-end-to-end.png ├── jetson.md ├── kinect.md ├── mxchip.md ├── raspberry_pi.md └── stm_discovery_kit.md ├── educator-guides ├── README.md ├── RecommendedLearningModel.md ├── course-outlines │ ├── electricity-demand-forecasting.md │ └── intro-to-iot.md └── lab-guides │ └── virtual-iot-lab │ ├── code │ ├── client │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ └── ssh-proxy-client.c │ └── server │ │ ├── package-lock.json │ │ ├── package.json │ │ └── proxy.js │ ├── images │ └── ssh-over-iot-hub-architecture.png │ └── iot-hub-ssh-virtual-lab.md └── labs ├── README.md ├── ai-edge ├── speech │ ├── README.md │ ├── speech-to-text.ipynb │ ├── speech-translation.ipynb │ └── text-to-speech.ipynb └── vision │ ├── manufacturing-part-check │ ├── README.md │ ├── code │ │ ├── analytics │ │ │ ├── cosmosdb_notebook │ │ │ │ └── plot_results.ipynb │ │ │ └── esp-eye │ │ │ │ ├── .gitignore │ │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ └── settings.json │ │ │ │ ├── include │ │ │ │ └── README │ │ │ │ ├── platformio.ini │ │ │ │ ├── src │ │ │ │ ├── Camera.cpp │ │ │ │ ├── Camera.h │ │ │ │ ├── Config.h │ │ │ │ ├── ImageClassifier.cpp │ │ │ │ ├── ImageClassifier.h │ │ │ │ ├── ImageHandler.cpp │ │ │ │ ├── ImageHandler.h │ │ │ │ ├── IoTHubService.cpp │ │ │ │ ├── IoTHubService.h │ │ │ │ └── main.cpp │ │ │ │ └── test │ │ │ │ └── README │ │ ├── custom-vision │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ └── settings.json │ │ │ ├── include │ │ │ │ └── README │ │ │ ├── platformio.ini │ │ │ ├── src │ │ │ │ ├── Camera.cpp │ │ │ │ ├── Camera.h │ │ │ │ ├── Config.h │ │ │ │ ├── ImageClassifier.cpp │ │ │ │ ├── ImageClassifier.h │ │ │ │ ├── ImageHandler.cpp │ │ │ │ ├── ImageHandler.h │ │ │ │ ├── WebServer.cpp │ │ │ │ ├── WebServer.h │ │ │ │ └── main.cpp │ │ │ └── test │ │ │ │ └── README │ │ ├── edge │ │ │ └── classifier │ │ │ │ ├── Dockerfile │ │ │ │ └── app │ │ │ │ └── predict.py │ │ ├── image-capture │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ └── settings.json │ │ │ ├── include │ │ │ │ └── README │ │ │ ├── platformio.ini │ │ │ ├── src │ │ │ │ ├── Camera.cpp │ │ │ │ ├── Camera.h │ │ │ │ ├── Config.h │ │ │ │ ├── ImageHandler.cpp │ │ │ │ ├── ImageHandler.h │ │ │ │ ├── WebServer.cpp │ │ │ │ ├── WebServer.h │ │ │ │ └── main.cpp │ │ │ └── test │ │ │ │ └── README │ │ ├── pi-control-with-grove │ │ │ └── pi │ │ │ │ └── app.py │ │ └── pi-control │ │ │ ├── esp-eye │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ └── settings.json │ │ │ ├── include │ │ │ │ └── README │ │ │ ├── platformio.ini │ │ │ ├── src │ │ │ │ ├── Camera.cpp │ │ │ │ ├── Camera.h │ │ │ │ ├── Config.h │ │ │ │ ├── ImageClassifier.cpp │ │ │ │ ├── ImageClassifier.h │ │ │ │ ├── ImageHandler.cpp │ │ │ │ ├── ImageHandler.h │ │ │ │ ├── IoTHubService.cpp │ │ │ │ ├── IoTHubService.h │ │ │ │ └── main.cpp │ │ │ └── test │ │ │ │ └── README │ │ │ └── pi │ │ │ └── app.py │ ├── images │ │ ├── assembly-line-esp-eye-holder.jpg │ │ ├── assembly-line-frame-conveyer.jpg │ │ ├── assembly-line-frame.jpg │ │ ├── broken-stormtrooper-1.jpg │ │ ├── broken-stormtrooper-2.jpg │ │ ├── container-registry-access-keys-admin-enabled.png │ │ ├── container-registry-access-keys.png │ │ ├── container-registry-basics.png │ │ ├── cosmos-db-basics-tab.png │ │ ├── cosmos-db-data-explorer-menu.png │ │ ├── cosmos-db-data-explorer-notebook-graphs.png │ │ ├── cosmos-db-data-explorer-notebook-kernel-loaded.png │ │ ├── cosmos-db-data-explorer-notebook-list.png │ │ ├── cosmos-db-data-explorer-notebook-run-all.png │ │ ├── cosmos-db-data-explorer-upload-notebook-details.png │ │ ├── cosmos-db-data-explorer-view-item-from-data.png │ │ ├── custom-vision-add-images-button.png │ │ ├── custom-vision-delete-project-button.png │ │ ├── custom-vision-home-button.png │ │ ├── custom-vision-new-project.png │ │ ├── custom-vision-new-resource-group.png │ │ ├── custom-vision-new-resource.png │ │ ├── custom-vision-prediction-url-button.png │ │ ├── custom-vision-prediction-url-dialog.png │ │ ├── custom-vision-publish-dialog.png │ │ ├── custom-vision-publish-iteration-button.png │ │ ├── custom-vision-quick-test-fail.png │ │ ├── custom-vision-quick-test-pass.png │ │ ├── custom-vision-unpublish-iteration-button.png │ │ ├── custom-vision-upload-pass-dialog.png │ │ ├── final-setup.jpg │ │ ├── grove-hat-on-pi.png │ │ ├── grove-led-button-fitted-to-hat.png │ │ ├── grove-validate-item-green-led-turning-on.gif │ │ ├── image-capture-web-page.png │ │ ├── iot-hub-basics.png │ │ ├── iot-hub-deployed-go-to-resource.png │ │ ├── iot-hub-iot-devices-device-connection-string.png │ │ ├── iot-hub-iot-devices-device-direct-method-button.png │ │ ├── iot-hub-iot-devices-direct-method-result-pane.png │ │ ├── iot-hub-iot-devices-invoke-direct-method-button.png │ │ ├── iot-hub-iot-devices-menu.png │ │ ├── iot-hub-iot-devices-new-device-button.png │ │ ├── iot-hub-iot-devices-new-device-details.png │ │ ├── iot-hub-iot-edge-add-device-button.png │ │ ├── iot-hub-iot-edge-menu.png │ │ ├── iot-hub-iot-edge-new-device-settings.png │ │ ├── iot-hub-iot-edge-set-modules-add-iot-edge-module-button.png │ │ ├── iot-hub-iot-edge-set-modules-add-iot-edge-module-container-create-options.png │ │ ├── iot-hub-iot-edge-set-modules-add-iot-edge-module-module-settings.png │ │ ├── iot-hub-iot-edge-set-modules-button.png │ │ ├── iot-hub-iot-edge-set-modules-container-registry-credentials.png │ │ ├── iot-hub-shared-access-policies-menu.png │ │ ├── iot-hub-shared-access-policies-service-key.png │ │ ├── iot-hub-size-and-scale.png │ │ ├── minifig-broken.jpg │ │ ├── minifig-whole.jpg │ │ ├── stormtrooper-1.jpg │ │ ├── stormtrooper-2.jpg │ │ ├── stream-analytics-inputs-add-iot-hub.png │ │ ├── stream-analytics-inputs-iot-hub-settings.png │ │ ├── stream-analytics-job-overview-menu.png │ │ ├── stream-analytics-job-overview-start-button.png │ │ ├── stream-analytics-job-topology-inputs-menu.png │ │ ├── stream-analytics-job-topology-outputs-menu.png │ │ ├── stream-analytics-job-topology-query-menu.png │ │ ├── stream-analytics-new-job-tab.png │ │ ├── stream-analytics-outputs-add-cosmos-db.png │ │ ├── stream-analytics-outputs-cosmos-db-settings.png │ │ ├── stream-analytics-query-save-button.png │ │ ├── stream-analytics-query-test-results.png │ │ ├── test-custom-vision-fail.png │ │ ├── test-custom-vision-pass.png │ │ ├── vscode-explorer-azure-iot-hub-select-iot-hub-menu.png │ │ ├── vscode-explorer-azure-iot-hub-start-monitoring-built-in-endpoint-menu.png │ │ ├── vscode-explorer-azure-iot-hub-stop-monitoring-built-in-endpoint-menu.png │ │ ├── vscode-explorer-azure-iot-hub.png │ │ └── vscode-platformio-new-assembly-line-project.png │ └── steps │ │ ├── build-image-classifier.md │ │ ├── classify-esp-eye.md │ │ ├── clean-up.md │ │ ├── edge-classifier.md │ │ ├── hello-world-esp-eye.md │ │ ├── image-capture.md │ │ ├── iot-hub-control.md │ │ ├── pi-button-led.md │ │ ├── store-and-visualize.md │ │ └── upload-iot-hub.md │ └── ocr │ ├── README.md │ ├── code │ └── ocr.py │ └── images │ └── camera-capture.png ├── digital-agriculture └── plant-monitor │ ├── Code │ ├── Functions │ │ ├── .funcignore │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── launch.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── SoilMoistureCheck │ │ │ ├── __init__.py │ │ │ └── function.json │ │ ├── host.json │ │ ├── proxies.json │ │ └── requirements.txt │ └── Pi │ │ ├── app.py │ │ └── requirements.txt │ ├── Images │ ├── AddCloudProperty.png │ ├── AddContainer.png │ ├── AddFunctionStreamAnalyticsOutput.png │ ├── AddInterface.png │ ├── AddNewSSHHost.png │ ├── AddStreamAnalyticsInputs.png │ ├── AddStreamAnalyticsOutputs.png │ ├── AddWebhook.png │ ├── AdministrationButton.png │ ├── ApiTokensButton.png │ ├── AppOutput.png │ ├── AzureCreateResource.png │ ├── AzureMapsDetails.png │ ├── AzureMenu.png │ ├── BME280.jpg │ ├── BaseHat.jpg │ ├── BingMapsShareButton.png │ ├── BlobContainersOption.png │ ├── BmePin.png │ ├── BrowseBlobContainers.png │ ├── Cables.jpg │ ├── ChartSettings.png │ ├── ChartSize.png │ ├── ChartType.png │ ├── CloudPropertiesMenu.png │ ├── CloudProperty.png │ ├── CodeUploadSettings.png │ ├── Command.png │ ├── ConfigureDataExport.png │ ├── ConfigureExportToEventHubs.png │ ├── ConfigureInput.png │ ├── ConfigureOutput.png │ ├── ConfigureWebhook.png │ ├── ConfirmDeploy.png │ ├── ConnectButton.png │ ├── CreateAppInsights.png │ ├── CreateAzureMapsButton.png │ ├── CreateEventHub.png │ ├── CreateEventHubs.png │ ├── CreateEventHubsNamespace.png │ ├── CreateFunctionApp.png │ ├── CreateFunctionsProject.png │ ├── CreateResourceGroup.png │ ├── CreateStorageButton.png │ ├── CreateStreamAnalyticsJob.png │ ├── CustomInterface.png │ ├── DashboardWaitingForData.png │ ├── DataExportMenu.png │ ├── DebugMenu.png │ ├── DebugRunButton.png │ ├── DeleteResourceGroupButton.png │ ├── DeleteResourceGroupConfirm.png │ ├── DeployFunctionApp.png │ ├── DeviceConnectionDialog.png │ ├── DeviceList.png │ ├── DeviceTemplatesMenu.png │ ├── DevicesMenu.png │ ├── DownloadBlob.png │ ├── EnterSSHHost.png │ ├── FunctionAuthLevel.png │ ├── FunctionCalls.png │ ├── FunctionChooseFolder.png │ ├── FunctionInBrowser.png │ ├── FunctionLanguageSelect.png │ ├── FunctionName.png │ ├── FunctionStreamAnalyticsOutput.png │ ├── FunctionStreamAnalyticsOverview.png │ ├── FunctionsExtension.png │ ├── FunctionsListInCode.png │ ├── GenerateToken.png │ ├── GenerateTokenButton.png │ ├── GeneratedToken.png │ ├── Grove-White-LED-p-2016.jpeg │ ├── HostAddedDialog.png │ ├── InterfaceMenu.png │ ├── InterfaceName.png │ ├── IoTCentralRulesMenu.png │ ├── KillTerminal.png │ ├── LaunchVirtualEnv.png │ ├── MapsKey.png │ ├── MessagesComingToEventHub.png │ ├── MoisturePin.png │ ├── MonitorMenuOption.png │ ├── NameAppPy.png │ ├── NameFunctionApp.png │ ├── NameView.png │ ├── NewBlobExport.png │ ├── NewContainerDetails.png │ ├── NewDevice.png │ ├── NewDeviceTemplateButton.png │ ├── NewEventHubExport.png │ ├── NewFileButton.png │ ├── NewRule.png │ ├── OpenFolder.png │ ├── PiWithHat.png │ ├── PostmanBody.png │ ├── PostmanHeaders.png │ ├── PostmanURL.png │ ├── PostmanWeatherQuery.png │ ├── Properties.png │ ├── PublishButton.png │ ├── PublishTemplateDialog.png │ ├── PythonExtension.png │ ├── PythonExtensionLocal.png │ ├── PythonInstaller.png │ ├── PythonReloadRequired.png │ ├── PythonSelectInterpreter.png │ ├── RaspiConfig.png │ ├── RaspiConfigEnableI2C.png │ ├── RaspiConfigFinish.png │ ├── RaspiConfigI2CEnabled.png │ ├── RaspiConfigInterfaceOptions.png │ ├── RemoteDevelopmentExtension.png │ ├── RuleTelemetry.png │ ├── SSHPassword.png │ ├── SaveCloudProperty.png │ ├── SaveFunctionQuery.png │ ├── SaveInterface.png │ ├── SaveQuery.png │ ├── SaveRuleButton.png │ ├── SaveView.png │ ├── SearchAzureMaps.png │ ├── SearchEventHub.png │ ├── SearchEventHubs.png │ ├── SearchForFunctionApp.png │ ├── SearchForResourceGroup.png │ ├── SearchForStorageAccount.png │ ├── SearchStorageAccount.png │ ├── SearchStreamAnalytics.png │ ├── SelectCapabilityModel.png │ ├── SelectConsumptionPlan.png │ ├── SelectEMDeviceTemplate.png │ ├── SelectEMFolder.png │ ├── SelectFuncAppStorage.png │ ├── SelectFunctionOs.png │ ├── SelectFunctionResourceGroup.png │ ├── SelectFunctionTrigger.png │ ├── SelectIoTDeviceType.png │ ├── SelectPythonVersion.png │ ├── SelectViewType.png │ ├── SetDeviceId.png │ ├── SetPythonRuntime.png │ ├── SettingsUploadOutput.png │ ├── SkipAppInsights.png │ ├── StartFunctionStreamAnalytics.png │ ├── StartFunctionStreamAnalyticsNow.png │ ├── StartStreamAnalytics.png │ ├── StartStreamAnalyticsNow.png │ ├── StopDebuggingButton.png │ ├── StorageDetails.png │ ├── StorageExplorerMenu.png │ ├── StreamAnalyticsFunctionOutputs.png │ ├── StreamAnalyticsFunctionQuery.png │ ├── StreamAnalyticsInputs.png │ ├── StreamAnalyticsJobDetails.png │ ├── StreamAnalyticsOutputs.png │ ├── StreamAnalyticsOverview.png │ ├── StreamAnalyticsQuery.png │ ├── TelemetryValues.png │ ├── TerminalWithActivatedEnvironment.png │ ├── TestFunctionQuery.png │ ├── TestQuery.png │ ├── TriggerRunningOutput.png │ ├── VSConnectToHost.png │ ├── View.png │ ├── ViewIdentityButton.png │ ├── ViewWithData.png │ ├── microsoft-certified-specialty-badge.svg │ ├── moisture.jpg │ ├── mxchip.jpg │ ├── pi4.jpg │ └── views.png │ ├── README.md │ └── Steps │ ├── CheckWeatherWithAzureMaps.md │ ├── CleanUp.md │ ├── CreateBlobStorage.md │ ├── CreateFunction.md │ ├── CreateTheAppInIoTCentral.md │ ├── ExecuteIoTCommand.md │ ├── ExportDataToBlobStorage.md │ ├── ExportDataToEventHubs.md │ ├── SetUpTheEnvironmentMonitor.md │ ├── Summary.md │ └── WriteThePiCode.md ├── images ├── arduino-setup-loop-flow.png ├── azure-portal-cloud-shell-button.png ├── azure-portal-cloud-shell-create-storage.png ├── cosmos-db-data-explorer-upload-notebook-menu-option.png ├── custom-vision-iteration-export-button.png ├── custom-vision-iteration-export-docker-button.png ├── custom-vision-new-project-button.png ├── custom-vision-quick-test-button.png ├── custom-vision-settings-button.png ├── custom-vision-settings-domain-general-compact.png ├── custom-vision-train-button.png ├── custom-vision-train-type-dialog-quick-train-selected.png ├── iot-central-menu-administration-api-tokens.png ├── iot-central-menu-administration.png ├── iot-central-menu-dashboard.png ├── iot-central-menu-data-export.png ├── iot-central-menu-device-groups.png ├── iot-central-menu-device-templates.png ├── iot-central-menu-devices.png ├── iot-central-menu-rules.png ├── iot-central-menu.png ├── vscode-command-palette-connect-to-host.png ├── vscode-command-palette-platformio-serial-monitor.png ├── vscode-command-palette-platformio-upload.png ├── vscode-explorer-menu.png ├── vscode-explorer-open-folder-button.png ├── vscode-extensions-azure-iot-tools.png ├── vscode-extensions-menu.png ├── vscode-extensions-platformio-install-button.png ├── vscode-extensions-pylance-install-button.png ├── vscode-extensions-pylance-install-remote-button.png ├── vscode-extensions-pylance-reload-button.png ├── vscode-extensions-remote-development-install-button.png ├── vscode-kill-terminal.png ├── vscode-launch-venv-dialog.png ├── vscode-new-file-button.png ├── vscode-platformio-home-open.png ├── vscode-platformio-menu.png ├── vscode-platformio-new-project-button.png ├── vscode-remote-confirm-fingerprint.png ├── vscode-remote-select-platform.png ├── vscode-status-bar-platformio-serial-monitor-button.png └── vscode-terminal-activated-venv.png ├── iot ├── environment-monitor │ ├── README.md │ ├── code │ │ ├── pi │ │ │ ├── led │ │ │ │ └── app.py │ │ │ ├── sound-humidity │ │ │ │ └── app.py │ │ │ └── temperature │ │ │ │ └── app.py │ │ └── virtual-device │ │ │ ├── led │ │ │ ├── app.py │ │ │ └── requirements.txt │ │ │ ├── sound-humidity │ │ │ ├── app.py │ │ │ └── requirements.txt │ │ │ └── temperature │ │ │ ├── app.py │ │ │ └── requirements.txt │ ├── images │ │ ├── cosmos-db-account-details.png │ │ ├── cosmos-db-data-explorer-menu.png │ │ ├── cosmos-db-data-explorer-notebook-graphs.png │ │ ├── cosmos-db-data-explorer-notebook-kernel-loaded.png │ │ ├── cosmos-db-data-explorer-notebook-list.png │ │ ├── cosmos-db-data-explorer-notebook-run-all.png │ │ ├── cosmos-db-data-explorer-upload-notebook-details.png │ │ ├── cosmos-db-data-explorer-view-item-from-data.png │ │ ├── email-sound-check-rule-breach.jpg │ │ ├── event-hubs-hub-shared-access-policies-add-button.png │ │ ├── event-hubs-hub-shared-access-policies-add-dialog.png │ │ ├── event-hubs-hub-shared-access-policies-details-iot-central.png │ │ ├── event-hubs-hub-shared-access-policies-list-iot-central.png │ │ ├── event-hubs-hub-shared-access-policies-menu.png │ │ ├── event-hubs-hubs-menu-select-hub.png │ │ ├── event-hubs-hubs-menu.png │ │ ├── iot-central-administration-api-tokens-generate-button.png │ │ ├── iot-central-administration-api-tokens-generate-dialog.png │ │ ├── iot-central-administration-api-tokens-generated-token-dialog.png │ │ ├── iot-central-administration-your-application-delete-application-button.png │ │ ├── iot-central-administration-your-application-delete-application-confirmation.png │ │ ├── iot-central-administration-your-application.png │ │ ├── iot-central-create-application-from-template.png │ │ ├── iot-central-create-new-device.png │ │ ├── iot-central-create-new-pi-device.png │ │ ├── iot-central-dashboard-add-tile-button.png │ │ ├── iot-central-dashboard-add-tile-device-dropdown.png │ │ ├── iot-central-dashboard-add-tile-devices-dropdown.png │ │ ├── iot-central-dashboard-add-tile-telemetry-humidity.png │ │ ├── iot-central-dashboard-edit-button.png │ │ ├── iot-central-dashboard-humidity-tile.png │ │ ├── iot-central-dashboard-simulated-device.png │ │ ├── iot-central-dashboard-temperature-tile-edit-button.png │ │ ├── iot-central-dashboard-temperature-tile-edit-save-button.png │ │ ├── iot-central-dashboard-temperature-tile-pi-and-simulated.png │ │ ├── iot-central-dashboard-temperature-tile-select-device-templates-dropdown-add-v2.png │ │ ├── iot-central-dashboard-temperature-tile-select-devices-dropdown-add-pi.png │ │ ├── iot-central-dashboard-temperature-tile-select-devices-dropdown.png │ │ ├── iot-central-dashboard-temperature-tile-select-telemetry-type.png │ │ ├── iot-central-dashboard-temperature-tile-update-button.png │ │ ├── iot-central-data-export-destinations-new-destination-button.png │ │ ├── iot-central-data-export-destinations-new-destination-details.png │ │ ├── iot-central-data-export-destinations-tab.png │ │ ├── iot-central-data-export-exports-new-export-button.png │ │ ├── iot-central-data-export-exports-new-export-details.png │ │ ├── iot-central-data-export-exports-tab-job-starting.png │ │ ├── iot-central-data-export-exports-tab.png │ │ ├── iot-central-device-commands-tab-tooloud-run-button.png │ │ ├── iot-central-device-commands-tab.png │ │ ├── iot-central-device-connect-button.png │ │ ├── iot-central-device-connect-dialog-pi.png │ │ ├── iot-central-device-groups-all-devices-group.png │ │ ├── iot-central-device-groups-run-query-button.png │ │ ├── iot-central-device-groups-save-button.png │ │ ├── iot-central-device-groups-value-v2.png │ │ ├── iot-central-device-templates-interface-new-version-dialog.png │ │ ├── iot-central-device-templates-list-env-monitor.png │ │ ├── iot-central-device-templates-new-version-dialog.png │ │ ├── iot-central-device-templates-new-view-name-humidity.png │ │ ├── iot-central-device-templates-new-view-options.png │ │ ├── iot-central-device-templates-new-view-tile-humidity.png │ │ ├── iot-central-device-templates-publish-button.png │ │ ├── iot-central-device-templates-publish-dialog.png │ │ ├── iot-central-device-templates-version-button.png │ │ ├── iot-central-device-templates-view-save-button.png │ │ ├── iot-central-device-templates-view-tile-humidity-cog.png │ │ ├── iot-central-device-templates-view-tile-humidity-configure.png │ │ ├── iot-central-device-templates-views-menu.png │ │ ├── iot-central-devices-device-migrate-button.png │ │ ├── iot-central-devices-device-migrate-dialog.png │ │ ├── iot-central-devices-device-migrate-progress.png │ │ ├── iot-central-devices-list-simulated-and-pi.png │ │ ├── iot-central-devices-list-simulated.png │ │ ├── iot-central-devices-select-device.png │ │ ├── iot-central-environment-monitor-template-interfaces.png │ │ ├── iot-central-interface-add-capability-button.png │ │ ├── iot-central-interface-new-humidity-capability.png │ │ ├── iot-central-interface-new-sound-capability.png │ │ ├── iot-central-interface-new-too-loud-capability.png │ │ ├── iot-central-interface-save-capability-button.png │ │ ├── iot-central-interface-version-button.png │ │ ├── iot-central-menu-devices-environment-monitor-template.png │ │ ├── iot-central-new-device-button.png │ │ ├── iot-central-pi-device-view-chart.png │ │ ├── iot-central-rules-delete-rule-confirm.png │ │ ├── iot-central-rules-delete-rule.png │ │ ├── iot-central-rules-list-sound-check.png │ │ ├── iot-central-rules-name-rule.png │ │ ├── iot-central-rules-new-rule-button.png │ │ ├── iot-central-rules-rule-actions-add-email-button.png │ │ ├── iot-central-rules-rule-actions-add-webhook-button.png │ │ ├── iot-central-rules-rule-actions-email-dialog.png │ │ ├── iot-central-rules-rule-actions-webhook-dialog.png │ │ ├── iot-central-rules-rule-actions-webhook.png │ │ ├── iot-central-rules-save-rule-button.png │ │ ├── iot-central-rules-select-rule-target-devices-v2.png │ │ ├── iot-central-rules-select-rule-target-devices-v3.png │ │ ├── iot-central-rules-set-rule-conditions-sound.png │ │ ├── iot-central-simulated-device-view-chart.png │ │ ├── iot-central-simulated-device-view-raw-data.png │ │ ├── iot-show-stream-analytics-anomaly-detection.png │ │ ├── pi-grove-led-fitted.jpg │ │ ├── pi-grove-piplus-hat-fitted-side.jpg │ │ ├── pi-grove-piplus-hat-fitted-top.JPG │ │ ├── pi-grove-sound-sensor-fitted.png │ │ ├── pi-grove-temperature-sensor-fitted.jpg │ │ ├── postman-command-call.png │ │ ├── raspberry-pi-configuration-app-hostname.png │ │ ├── raspberry-pi-configuration-enable-ssh.png │ │ ├── raspberry-pi-menu-configuration-app.png │ │ ├── stream-analytics-inputs-add-event-hub.png │ │ ├── stream-analytics-inputs-event-hub-details.png │ │ ├── stream-analytics-job-topology-inputs.png │ │ ├── stream-analytics-job-topology-outputs.png │ │ ├── stream-analytics-job-topology-query.png │ │ ├── stream-analytics-outputs-add-cosmos-db.png │ │ ├── stream-analytics-outputs-cosmos-db-details.png │ │ ├── stream-analytics-overview-start-button.png │ │ ├── stream-analytics-overview-start-dialog.png │ │ ├── stream-analytics-overview.png │ │ ├── stream-analytics-query-blank.png │ │ ├── stream-analytics-query-save-query-button.png │ │ ├── stream-analytics-query-test-button.png │ │ ├── vscode-macos-keyboard-control.png │ │ ├── vscode-new-file-app-py.png │ │ └── vscode-open-folder.png │ ├── notebooks │ │ └── Plot_Spikes.ipynb │ └── steps │ │ ├── add-more-sensors.md │ │ ├── add-pi-to-iot-central.md │ │ ├── anomaly-detection.md │ │ ├── clean-up.md │ │ ├── rules-command.md │ │ ├── rules-pi-led.md │ │ ├── rules-virtual-led.md │ │ ├── rules.md │ │ ├── set-up-humidity-sound.md │ │ ├── set-up-iot-central.md │ │ ├── set-up-pi-humidity-sound.md │ │ ├── set-up-pi.md │ │ ├── set-up-virtual-humidity-sound.md │ │ └── set-up-virtual-pi.md ├── gps-lab │ ├── README.md │ ├── code │ │ ├── pi │ │ │ ├── app.py │ │ │ └── requirements.txt │ │ └── web-app │ │ │ ├── app.py │ │ │ ├── requirements.txt │ │ │ ├── static │ │ │ └── js │ │ │ │ └── application.js │ │ │ └── templates │ │ │ └── index.html │ ├── images │ │ ├── pi-gps-sketch.png │ │ └── vscode-new-file-app-py.png │ └── steps │ │ ├── clean-up.md │ │ ├── set-up-azure-services.md │ │ ├── set-up-pi.md │ │ ├── web-app.md │ │ └── write-pi-code.md ├── hands-on-with-azure-iot-hub │ ├── README.md │ ├── day0 │ │ └── README.md │ ├── day1 │ │ └── README.md │ ├── device │ │ └── README.md │ ├── images │ │ ├── Lab-1.png │ │ ├── Lab-2.png │ │ ├── Lab-3.png │ │ ├── Lab.png │ │ ├── app-1.png │ │ ├── app-2.png │ │ ├── app-3.png │ │ ├── app-4.png │ │ ├── app-5.png │ │ ├── app-6.png │ │ ├── app-7.png │ │ ├── app-8.png │ │ ├── email-1.PNG │ │ ├── email-5.PNG │ │ ├── email-6.PNG │ │ ├── email-7.PNG │ │ ├── eventhub-1.PNG │ │ ├── eventhub-10.PNG │ │ ├── eventhub-11.PNG │ │ ├── eventhub-2.PNG │ │ ├── eventhub-21.PNG │ │ ├── eventhub-22.PNG │ │ ├── eventhub-3.PNG │ │ ├── eventhub-4.PNG │ │ ├── eventhub-5.PNG │ │ ├── eventhub-6.PNG │ │ ├── eventhub-7.PNG │ │ ├── eventhub-8.PNG │ │ ├── eventhub-9.PNG │ │ ├── hub-1.PNG │ │ ├── hub-2.PNG │ │ ├── iot-hub-0.PNG │ │ ├── iot-hub-1.PNG │ │ ├── iot-hub-10.png │ │ ├── iot-hub-2.PNG │ │ ├── iot-hub-3.PNG │ │ ├── iot-hub-4.PNG │ │ ├── iot-hub-5.PNG │ │ ├── iot-hub-6.PNG │ │ ├── iot-hub-7.PNG │ │ ├── iot-hub-8.png │ │ ├── iot-hub-9.png │ │ ├── message-3.PNG │ │ ├── message-4.PNG │ │ ├── message-enrichments-flow.png │ │ ├── notification_03_Logic_App_designer.png │ │ ├── notification_04_Http_Request.png │ │ ├── notification_05_Sample_Payload.png │ │ ├── notification_06_New_Step.png │ │ ├── notification_07_Add_new_Action.png │ │ ├── notification_08_Choose_Mail.png │ │ ├── notification_12_eventurl.png │ │ ├── notification_13_IoTHub_EventHub.png │ │ ├── notification_14_empty_event_subscription.png │ │ ├── notification_15_device_events.png │ │ ├── notification_16_add_device.png │ │ ├── notification_17_add_device.png │ │ ├── notification_18_email_generated.png │ │ ├── notification_19_delete_device.png │ │ ├── notification_20_email_generated.png │ │ ├── notification_eventgrid.jpg │ │ ├── routing-1.png │ │ ├── routing-2.PNG │ │ ├── routing-3.PNG │ │ ├── routing-4.png │ │ ├── routing-5.PNG │ │ ├── routing-6.png │ │ ├── routing-7.png │ │ ├── routing-8.png │ │ ├── routing-9.png │ │ ├── simulated-0.PNG │ │ ├── simulated-1.PNG │ │ ├── simulated-10.png │ │ ├── simulated-11.PNG │ │ ├── simulated-12.PNG │ │ ├── simulated-13.PNG │ │ ├── simulated-14.PNG │ │ ├── simulated-15.PNG │ │ ├── simulated-16.PNG │ │ ├── simulated-3.PNG │ │ ├── simulated-4.PNG │ │ ├── simulated-5.PNG │ │ ├── simulated-6.png │ │ ├── simulated-7.PNG │ │ ├── simulated-8.PNG │ │ ├── storage-3.PNG │ │ ├── storage-4.PNG │ │ ├── storage-5.PNG │ │ ├── summary-1.PNG │ │ ├── summary-2.PNG │ │ ├── summary-3.PNG │ │ ├── summary-4.PNG │ │ ├── summary-5.PNG │ │ ├── summary-6.PNG │ │ ├── summary-7.PNG │ │ ├── visualize-20.PNG │ │ ├── visualize-21.png │ │ ├── visualize-22.PNG │ │ ├── visualize-23.PNG │ │ ├── visualize-24.PNG │ │ ├── visualize-27.PNG │ │ ├── visualize_10_visual10.png │ │ ├── visualize_11_visual11.png │ │ ├── visualize_12_Visual12.png │ │ ├── visualize_14_Visual_dashboard.png │ │ ├── visualize_heatmap.png │ │ ├── visualize_perspective.png │ │ ├── visualize_predicate.png │ │ ├── visualize_table.png │ │ └── visualize_timeseriesinsights.jpg │ ├── iot-client │ │ ├── README.md │ │ ├── iot-hub-client-dual.py │ │ ├── iot-hub-client-message.py │ │ └── iot-hub-client.py │ ├── iot-lab │ │ ├── clientdeploy.json │ │ ├── config.sh │ │ ├── create_lab.sh │ │ ├── create_modules_1_2.sh │ │ ├── group-checker.py │ │ ├── iot-hub-deploy.json │ │ └── password-checker.py │ ├── iothub │ │ └── README.md │ ├── labtracker │ │ └── labtracker.sh │ ├── messages │ │ └── README.md │ ├── notification │ │ └── README.md │ ├── routing │ │ └── README.md │ ├── sample-app │ │ ├── README.md │ │ ├── logic_app_launcher.py │ │ └── sample_app_temperature_alert.py │ ├── storage │ │ └── README.md │ └── visualize │ │ └── README.md ├── mxchip-workshop │ ├── Code │ │ └── Final │ │ │ └── TemperatureSensor │ │ │ ├── .azurecomponent │ │ │ └── azureconfig.json │ │ │ ├── Device │ │ │ ├── .iotworkbenchproject │ │ │ ├── .vscode │ │ │ │ ├── arduino.json │ │ │ │ ├── c_cpp_properties.json │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ └── device.ino │ │ │ ├── Functions │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ ├── settings.json │ │ │ │ └── tasks.json │ │ │ ├── Functions.csproj │ │ │ ├── IoTHubTrigger1.cs │ │ │ └── host.json │ │ │ └── TemperatureSensor.code-workspace │ ├── Images │ │ ├── ConfigureBoardWiFi.png │ │ ├── D2CMessage.png │ │ ├── DocumentInCosmos.png │ │ ├── InstallArduinoExtension.png │ │ ├── InstallCSharpExtension.png │ │ ├── InstallCosmosExtension.png │ │ ├── InstallFuncExtension.png │ │ ├── InstallIoTExtension.png │ │ ├── InstallLatestMXChip.png │ │ ├── IoTHubD2CMessageGraph.png │ │ ├── IotHubEndpoint.png │ │ ├── MXChipBoard.png │ │ ├── MXChipBoardConnectedWiFiAzure.jpg │ │ ├── MXChipConfigurationMode.jpg │ │ ├── OverwriteFunctionApp.png │ │ ├── SearchinThePortalForIoTHub.png │ │ ├── StartMonitoringD2C.png │ │ └── Step3Running.jpg │ ├── README.md │ └── Steps │ │ ├── CleanUp.md │ │ ├── ConfigureTheBoard.md │ │ ├── ConfigureVSCode.md │ │ ├── ControlTheLEDThreshold.md │ │ ├── ExposeTheTemperature.md │ │ ├── SendingTheTemperature.md │ │ ├── ShowingTheTemperature.md │ │ └── StoreTheTemperature.md └── smart-door │ ├── Diagram │ └── IoTDoor.fzz │ ├── README.md │ ├── Readme.docx │ ├── StreamAnalytics │ └── query.sql │ ├── device │ ├── .gitignore │ ├── .vscode │ │ └── extensions.json │ ├── PlatformioWorkspace.code-workspace │ ├── include │ │ └── README │ ├── platformio.ini │ ├── src │ │ ├── main.cpp │ │ └── ws.code-workspace │ └── test │ │ └── README │ ├── images │ ├── access.png │ ├── acr.png │ ├── compose │ ├── cosmos.png │ ├── cosmos2.png │ ├── dc.png │ ├── device.png │ ├── devicelist.png │ ├── esp.png │ ├── find.png │ ├── halleffect.png │ ├── hub.png │ ├── hub1.png │ ├── hub2.png │ ├── hub3.png │ ├── magnet.png │ ├── motor.png │ ├── pio.png │ ├── pio2.png │ ├── piobar.png │ ├── qa.png │ ├── sa.png │ ├── sa2.png │ └── setup.png │ └── web │ ├── .env.dev │ ├── Door │ ├── __init__.py │ ├── doorAPI.py │ ├── static │ │ ├── content │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ ├── command.css │ │ │ ├── site.css │ │ │ └── test.html │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── fontawesome │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── css │ │ │ │ │ ├── all.css │ │ │ │ │ ├── all.min.css │ │ │ │ │ ├── brands.css │ │ │ │ │ ├── brands.min.css │ │ │ │ │ ├── fontawesome.css │ │ │ │ │ ├── fontawesome.min.css │ │ │ │ │ ├── regular.css │ │ │ │ │ ├── regular.min.css │ │ │ │ │ ├── solid.css │ │ │ │ │ ├── solid.min.css │ │ │ │ │ ├── svg-with-js.css │ │ │ │ │ ├── svg-with-js.min.css │ │ │ │ │ ├── v4-shims.css │ │ │ │ │ └── v4-shims.min.css │ │ │ │ ├── js │ │ │ │ │ ├── all.js │ │ │ │ │ ├── all.min.js │ │ │ │ │ ├── brands.js │ │ │ │ │ ├── brands.min.js │ │ │ │ │ ├── conflict-detection.js │ │ │ │ │ ├── conflict-detection.min.js │ │ │ │ │ ├── fontawesome.js │ │ │ │ │ ├── fontawesome.min.js │ │ │ │ │ ├── regular.js │ │ │ │ │ ├── regular.min.js │ │ │ │ │ ├── solid.js │ │ │ │ │ ├── solid.min.js │ │ │ │ │ ├── v4-shims.js │ │ │ │ │ └── v4-shims.min.js │ │ │ │ ├── less │ │ │ │ │ ├── _animated.less │ │ │ │ │ ├── _bordered-pulled.less │ │ │ │ │ ├── _core.less │ │ │ │ │ ├── _fixed-width.less │ │ │ │ │ ├── _icons.less │ │ │ │ │ ├── _larger.less │ │ │ │ │ ├── _list.less │ │ │ │ │ ├── _mixins.less │ │ │ │ │ ├── _rotated-flipped.less │ │ │ │ │ ├── _screen-reader.less │ │ │ │ │ ├── _shims.less │ │ │ │ │ ├── _stacked.less │ │ │ │ │ ├── _variables.less │ │ │ │ │ ├── brands.less │ │ │ │ │ ├── fontawesome.less │ │ │ │ │ ├── regular.less │ │ │ │ │ ├── solid.less │ │ │ │ │ └── v4-shims.less │ │ │ │ ├── metadata │ │ │ │ │ ├── categories.yml │ │ │ │ │ ├── icons.json │ │ │ │ │ ├── icons.yml │ │ │ │ │ ├── shims.json │ │ │ │ │ ├── shims.yml │ │ │ │ │ └── sponsors.yml │ │ │ │ ├── scss │ │ │ │ │ ├── _animated.scss │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ ├── _core.scss │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ ├── _icons.scss │ │ │ │ │ ├── _larger.scss │ │ │ │ │ ├── _list.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ ├── _screen-reader.scss │ │ │ │ │ ├── _shims.scss │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ ├── brands.scss │ │ │ │ │ ├── fontawesome.scss │ │ │ │ │ ├── regular.scss │ │ │ │ │ ├── solid.scss │ │ │ │ │ └── v4-shims.scss │ │ │ │ ├── sprites │ │ │ │ │ ├── brands.svg │ │ │ │ │ ├── regular.svg │ │ │ │ │ └── solid.svg │ │ │ │ ├── svgs │ │ │ │ │ ├── brands │ │ │ │ │ │ ├── 500px.svg │ │ │ │ │ │ ├── accessible-icon.svg │ │ │ │ │ │ ├── accusoft.svg │ │ │ │ │ │ ├── acquisitions-incorporated.svg │ │ │ │ │ │ ├── adn.svg │ │ │ │ │ │ ├── adobe.svg │ │ │ │ │ │ ├── adversal.svg │ │ │ │ │ │ ├── affiliatetheme.svg │ │ │ │ │ │ ├── airbnb.svg │ │ │ │ │ │ ├── algolia.svg │ │ │ │ │ │ ├── alipay.svg │ │ │ │ │ │ ├── amazon-pay.svg │ │ │ │ │ │ ├── amazon.svg │ │ │ │ │ │ ├── amilia.svg │ │ │ │ │ │ ├── android.svg │ │ │ │ │ │ ├── angellist.svg │ │ │ │ │ │ ├── angrycreative.svg │ │ │ │ │ │ ├── angular.svg │ │ │ │ │ │ ├── app-store-ios.svg │ │ │ │ │ │ ├── app-store.svg │ │ │ │ │ │ ├── apper.svg │ │ │ │ │ │ ├── apple-pay.svg │ │ │ │ │ │ ├── apple.svg │ │ │ │ │ │ ├── artstation.svg │ │ │ │ │ │ ├── asymmetrik.svg │ │ │ │ │ │ ├── atlassian.svg │ │ │ │ │ │ ├── audible.svg │ │ │ │ │ │ ├── autoprefixer.svg │ │ │ │ │ │ ├── avianex.svg │ │ │ │ │ │ ├── aviato.svg │ │ │ │ │ │ ├── aws.svg │ │ │ │ │ │ ├── bandcamp.svg │ │ │ │ │ │ ├── battle-net.svg │ │ │ │ │ │ ├── behance-square.svg │ │ │ │ │ │ ├── behance.svg │ │ │ │ │ │ ├── bimobject.svg │ │ │ │ │ │ ├── bitbucket.svg │ │ │ │ │ │ ├── bitcoin.svg │ │ │ │ │ │ ├── bity.svg │ │ │ │ │ │ ├── black-tie.svg │ │ │ │ │ │ ├── blackberry.svg │ │ │ │ │ │ ├── blogger-b.svg │ │ │ │ │ │ ├── blogger.svg │ │ │ │ │ │ ├── bluetooth-b.svg │ │ │ │ │ │ ├── bluetooth.svg │ │ │ │ │ │ ├── bootstrap.svg │ │ │ │ │ │ ├── btc.svg │ │ │ │ │ │ ├── buffer.svg │ │ │ │ │ │ ├── buromobelexperte.svg │ │ │ │ │ │ ├── buy-n-large.svg │ │ │ │ │ │ ├── buysellads.svg │ │ │ │ │ │ ├── canadian-maple-leaf.svg │ │ │ │ │ │ ├── cc-amazon-pay.svg │ │ │ │ │ │ ├── cc-amex.svg │ │ │ │ │ │ ├── cc-apple-pay.svg │ │ │ │ │ │ ├── cc-diners-club.svg │ │ │ │ │ │ ├── cc-discover.svg │ │ │ │ │ │ ├── cc-jcb.svg │ │ │ │ │ │ ├── cc-mastercard.svg │ │ │ │ │ │ ├── cc-paypal.svg │ │ │ │ │ │ ├── cc-stripe.svg │ │ │ │ │ │ ├── cc-visa.svg │ │ │ │ │ │ ├── centercode.svg │ │ │ │ │ │ ├── centos.svg │ │ │ │ │ │ ├── chrome.svg │ │ │ │ │ │ ├── chromecast.svg │ │ │ │ │ │ ├── cloudscale.svg │ │ │ │ │ │ ├── cloudsmith.svg │ │ │ │ │ │ ├── cloudversify.svg │ │ │ │ │ │ ├── codepen.svg │ │ │ │ │ │ ├── codiepie.svg │ │ │ │ │ │ ├── confluence.svg │ │ │ │ │ │ ├── connectdevelop.svg │ │ │ │ │ │ ├── contao.svg │ │ │ │ │ │ ├── cotton-bureau.svg │ │ │ │ │ │ ├── cpanel.svg │ │ │ │ │ │ ├── creative-commons-by.svg │ │ │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ │ │ ├── creative-commons-share.svg │ │ │ │ │ │ ├── creative-commons-zero.svg │ │ │ │ │ │ ├── creative-commons.svg │ │ │ │ │ │ ├── critical-role.svg │ │ │ │ │ │ ├── css3-alt.svg │ │ │ │ │ │ ├── css3.svg │ │ │ │ │ │ ├── cuttlefish.svg │ │ │ │ │ │ ├── d-and-d-beyond.svg │ │ │ │ │ │ ├── d-and-d.svg │ │ │ │ │ │ ├── dailymotion.svg │ │ │ │ │ │ ├── dashcube.svg │ │ │ │ │ │ ├── delicious.svg │ │ │ │ │ │ ├── deploydog.svg │ │ │ │ │ │ ├── deskpro.svg │ │ │ │ │ │ ├── dev.svg │ │ │ │ │ │ ├── deviantart.svg │ │ │ │ │ │ ├── dhl.svg │ │ │ │ │ │ ├── diaspora.svg │ │ │ │ │ │ ├── digg.svg │ │ │ │ │ │ ├── digital-ocean.svg │ │ │ │ │ │ ├── discord.svg │ │ │ │ │ │ ├── discourse.svg │ │ │ │ │ │ ├── dochub.svg │ │ │ │ │ │ ├── docker.svg │ │ │ │ │ │ ├── draft2digital.svg │ │ │ │ │ │ ├── dribbble-square.svg │ │ │ │ │ │ ├── dribbble.svg │ │ │ │ │ │ ├── dropbox.svg │ │ │ │ │ │ ├── drupal.svg │ │ │ │ │ │ ├── dyalog.svg │ │ │ │ │ │ ├── earlybirds.svg │ │ │ │ │ │ ├── ebay.svg │ │ │ │ │ │ ├── edge.svg │ │ │ │ │ │ ├── elementor.svg │ │ │ │ │ │ ├── ello.svg │ │ │ │ │ │ ├── ember.svg │ │ │ │ │ │ ├── empire.svg │ │ │ │ │ │ ├── envira.svg │ │ │ │ │ │ ├── erlang.svg │ │ │ │ │ │ ├── ethereum.svg │ │ │ │ │ │ ├── etsy.svg │ │ │ │ │ │ ├── evernote.svg │ │ │ │ │ │ ├── expeditedssl.svg │ │ │ │ │ │ ├── facebook-f.svg │ │ │ │ │ │ ├── facebook-messenger.svg │ │ │ │ │ │ ├── facebook-square.svg │ │ │ │ │ │ ├── facebook.svg │ │ │ │ │ │ ├── fantasy-flight-games.svg │ │ │ │ │ │ ├── fedex.svg │ │ │ │ │ │ ├── fedora.svg │ │ │ │ │ │ ├── figma.svg │ │ │ │ │ │ ├── firefox-browser.svg │ │ │ │ │ │ ├── firefox.svg │ │ │ │ │ │ ├── first-order-alt.svg │ │ │ │ │ │ ├── first-order.svg │ │ │ │ │ │ ├── firstdraft.svg │ │ │ │ │ │ ├── flickr.svg │ │ │ │ │ │ ├── flipboard.svg │ │ │ │ │ │ ├── fly.svg │ │ │ │ │ │ ├── font-awesome-alt.svg │ │ │ │ │ │ ├── font-awesome-flag.svg │ │ │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ │ │ ├── font-awesome.svg │ │ │ │ │ │ ├── fonticons-fi.svg │ │ │ │ │ │ ├── fonticons.svg │ │ │ │ │ │ ├── fort-awesome-alt.svg │ │ │ │ │ │ ├── fort-awesome.svg │ │ │ │ │ │ ├── forumbee.svg │ │ │ │ │ │ ├── foursquare.svg │ │ │ │ │ │ ├── free-code-camp.svg │ │ │ │ │ │ ├── freebsd.svg │ │ │ │ │ │ ├── fulcrum.svg │ │ │ │ │ │ ├── galactic-republic.svg │ │ │ │ │ │ ├── galactic-senate.svg │ │ │ │ │ │ ├── get-pocket.svg │ │ │ │ │ │ ├── gg-circle.svg │ │ │ │ │ │ ├── gg.svg │ │ │ │ │ │ ├── git-alt.svg │ │ │ │ │ │ ├── git-square.svg │ │ │ │ │ │ ├── git.svg │ │ │ │ │ │ ├── github-alt.svg │ │ │ │ │ │ ├── github-square.svg │ │ │ │ │ │ ├── github.svg │ │ │ │ │ │ ├── gitkraken.svg │ │ │ │ │ │ ├── gitlab.svg │ │ │ │ │ │ ├── gitter.svg │ │ │ │ │ │ ├── glide-g.svg │ │ │ │ │ │ ├── glide.svg │ │ │ │ │ │ ├── gofore.svg │ │ │ │ │ │ ├── goodreads-g.svg │ │ │ │ │ │ ├── goodreads.svg │ │ │ │ │ │ ├── google-drive.svg │ │ │ │ │ │ ├── google-play.svg │ │ │ │ │ │ ├── google-plus-g.svg │ │ │ │ │ │ ├── google-plus-square.svg │ │ │ │ │ │ ├── google-plus.svg │ │ │ │ │ │ ├── google-wallet.svg │ │ │ │ │ │ ├── google.svg │ │ │ │ │ │ ├── gratipay.svg │ │ │ │ │ │ ├── grav.svg │ │ │ │ │ │ ├── gripfire.svg │ │ │ │ │ │ ├── grunt.svg │ │ │ │ │ │ ├── gulp.svg │ │ │ │ │ │ ├── hacker-news-square.svg │ │ │ │ │ │ ├── hacker-news.svg │ │ │ │ │ │ ├── hackerrank.svg │ │ │ │ │ │ ├── hips.svg │ │ │ │ │ │ ├── hire-a-helper.svg │ │ │ │ │ │ ├── hooli.svg │ │ │ │ │ │ ├── hornbill.svg │ │ │ │ │ │ ├── hotjar.svg │ │ │ │ │ │ ├── houzz.svg │ │ │ │ │ │ ├── html5.svg │ │ │ │ │ │ ├── hubspot.svg │ │ │ │ │ │ ├── ideal.svg │ │ │ │ │ │ ├── imdb.svg │ │ │ │ │ │ ├── instagram-square.svg │ │ │ │ │ │ ├── instagram.svg │ │ │ │ │ │ ├── intercom.svg │ │ │ │ │ │ ├── internet-explorer.svg │ │ │ │ │ │ ├── invision.svg │ │ │ │ │ │ ├── ioxhost.svg │ │ │ │ │ │ ├── itch-io.svg │ │ │ │ │ │ ├── itunes-note.svg │ │ │ │ │ │ ├── itunes.svg │ │ │ │ │ │ ├── java.svg │ │ │ │ │ │ ├── jedi-order.svg │ │ │ │ │ │ ├── jenkins.svg │ │ │ │ │ │ ├── jira.svg │ │ │ │ │ │ ├── joget.svg │ │ │ │ │ │ ├── joomla.svg │ │ │ │ │ │ ├── js-square.svg │ │ │ │ │ │ ├── js.svg │ │ │ │ │ │ ├── jsfiddle.svg │ │ │ │ │ │ ├── kaggle.svg │ │ │ │ │ │ ├── keybase.svg │ │ │ │ │ │ ├── keycdn.svg │ │ │ │ │ │ ├── kickstarter-k.svg │ │ │ │ │ │ ├── kickstarter.svg │ │ │ │ │ │ ├── korvue.svg │ │ │ │ │ │ ├── laravel.svg │ │ │ │ │ │ ├── lastfm-square.svg │ │ │ │ │ │ ├── lastfm.svg │ │ │ │ │ │ ├── leanpub.svg │ │ │ │ │ │ ├── less.svg │ │ │ │ │ │ ├── line.svg │ │ │ │ │ │ ├── linkedin-in.svg │ │ │ │ │ │ ├── linkedin.svg │ │ │ │ │ │ ├── linode.svg │ │ │ │ │ │ ├── linux.svg │ │ │ │ │ │ ├── lyft.svg │ │ │ │ │ │ ├── magento.svg │ │ │ │ │ │ ├── mailchimp.svg │ │ │ │ │ │ ├── mandalorian.svg │ │ │ │ │ │ ├── markdown.svg │ │ │ │ │ │ ├── mastodon.svg │ │ │ │ │ │ ├── maxcdn.svg │ │ │ │ │ │ ├── mdb.svg │ │ │ │ │ │ ├── medapps.svg │ │ │ │ │ │ ├── medium-m.svg │ │ │ │ │ │ ├── medium.svg │ │ │ │ │ │ ├── medrt.svg │ │ │ │ │ │ ├── meetup.svg │ │ │ │ │ │ ├── megaport.svg │ │ │ │ │ │ ├── mendeley.svg │ │ │ │ │ │ ├── microblog.svg │ │ │ │ │ │ ├── microsoft.svg │ │ │ │ │ │ ├── mix.svg │ │ │ │ │ │ ├── mixcloud.svg │ │ │ │ │ │ ├── mixer.svg │ │ │ │ │ │ ├── mizuni.svg │ │ │ │ │ │ ├── modx.svg │ │ │ │ │ │ ├── monero.svg │ │ │ │ │ │ ├── napster.svg │ │ │ │ │ │ ├── neos.svg │ │ │ │ │ │ ├── nimblr.svg │ │ │ │ │ │ ├── node-js.svg │ │ │ │ │ │ ├── node.svg │ │ │ │ │ │ ├── npm.svg │ │ │ │ │ │ ├── ns8.svg │ │ │ │ │ │ ├── nutritionix.svg │ │ │ │ │ │ ├── odnoklassniki-square.svg │ │ │ │ │ │ ├── odnoklassniki.svg │ │ │ │ │ │ ├── old-republic.svg │ │ │ │ │ │ ├── opencart.svg │ │ │ │ │ │ ├── openid.svg │ │ │ │ │ │ ├── opera.svg │ │ │ │ │ │ ├── optin-monster.svg │ │ │ │ │ │ ├── orcid.svg │ │ │ │ │ │ ├── osi.svg │ │ │ │ │ │ ├── page4.svg │ │ │ │ │ │ ├── pagelines.svg │ │ │ │ │ │ ├── palfed.svg │ │ │ │ │ │ ├── patreon.svg │ │ │ │ │ │ ├── paypal.svg │ │ │ │ │ │ ├── penny-arcade.svg │ │ │ │ │ │ ├── periscope.svg │ │ │ │ │ │ ├── phabricator.svg │ │ │ │ │ │ ├── phoenix-framework.svg │ │ │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ │ │ ├── php.svg │ │ │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ │ │ ├── pied-piper-square.svg │ │ │ │ │ │ ├── pied-piper.svg │ │ │ │ │ │ ├── pinterest-p.svg │ │ │ │ │ │ ├── pinterest-square.svg │ │ │ │ │ │ ├── pinterest.svg │ │ │ │ │ │ ├── playstation.svg │ │ │ │ │ │ ├── product-hunt.svg │ │ │ │ │ │ ├── pushed.svg │ │ │ │ │ │ ├── python.svg │ │ │ │ │ │ ├── qq.svg │ │ │ │ │ │ ├── quinscape.svg │ │ │ │ │ │ ├── quora.svg │ │ │ │ │ │ ├── r-project.svg │ │ │ │ │ │ ├── raspberry-pi.svg │ │ │ │ │ │ ├── ravelry.svg │ │ │ │ │ │ ├── react.svg │ │ │ │ │ │ ├── reacteurope.svg │ │ │ │ │ │ ├── readme.svg │ │ │ │ │ │ ├── rebel.svg │ │ │ │ │ │ ├── red-river.svg │ │ │ │ │ │ ├── reddit-alien.svg │ │ │ │ │ │ ├── reddit-square.svg │ │ │ │ │ │ ├── reddit.svg │ │ │ │ │ │ ├── redhat.svg │ │ │ │ │ │ ├── renren.svg │ │ │ │ │ │ ├── replyd.svg │ │ │ │ │ │ ├── researchgate.svg │ │ │ │ │ │ ├── resolving.svg │ │ │ │ │ │ ├── rev.svg │ │ │ │ │ │ ├── rocketchat.svg │ │ │ │ │ │ ├── rockrms.svg │ │ │ │ │ │ ├── safari.svg │ │ │ │ │ │ ├── salesforce.svg │ │ │ │ │ │ ├── sass.svg │ │ │ │ │ │ ├── schlix.svg │ │ │ │ │ │ ├── scribd.svg │ │ │ │ │ │ ├── searchengin.svg │ │ │ │ │ │ ├── sellcast.svg │ │ │ │ │ │ ├── sellsy.svg │ │ │ │ │ │ ├── servicestack.svg │ │ │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ │ │ ├── shopify.svg │ │ │ │ │ │ ├── shopware.svg │ │ │ │ │ │ ├── simplybuilt.svg │ │ │ │ │ │ ├── sistrix.svg │ │ │ │ │ │ ├── sith.svg │ │ │ │ │ │ ├── sketch.svg │ │ │ │ │ │ ├── skyatlas.svg │ │ │ │ │ │ ├── skype.svg │ │ │ │ │ │ ├── slack-hash.svg │ │ │ │ │ │ ├── slack.svg │ │ │ │ │ │ ├── slideshare.svg │ │ │ │ │ │ ├── snapchat-ghost.svg │ │ │ │ │ │ ├── snapchat-square.svg │ │ │ │ │ │ ├── snapchat.svg │ │ │ │ │ │ ├── soundcloud.svg │ │ │ │ │ │ ├── sourcetree.svg │ │ │ │ │ │ ├── speakap.svg │ │ │ │ │ │ ├── speaker-deck.svg │ │ │ │ │ │ ├── spotify.svg │ │ │ │ │ │ ├── squarespace.svg │ │ │ │ │ │ ├── stack-exchange.svg │ │ │ │ │ │ ├── stack-overflow.svg │ │ │ │ │ │ ├── stackpath.svg │ │ │ │ │ │ ├── staylinked.svg │ │ │ │ │ │ ├── steam-square.svg │ │ │ │ │ │ ├── steam-symbol.svg │ │ │ │ │ │ ├── steam.svg │ │ │ │ │ │ ├── sticker-mule.svg │ │ │ │ │ │ ├── strava.svg │ │ │ │ │ │ ├── stripe-s.svg │ │ │ │ │ │ ├── stripe.svg │ │ │ │ │ │ ├── studiovinari.svg │ │ │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ │ │ ├── stumbleupon.svg │ │ │ │ │ │ ├── superpowers.svg │ │ │ │ │ │ ├── supple.svg │ │ │ │ │ │ ├── suse.svg │ │ │ │ │ │ ├── swift.svg │ │ │ │ │ │ ├── symfony.svg │ │ │ │ │ │ ├── teamspeak.svg │ │ │ │ │ │ ├── telegram-plane.svg │ │ │ │ │ │ ├── telegram.svg │ │ │ │ │ │ ├── tencent-weibo.svg │ │ │ │ │ │ ├── the-red-yeti.svg │ │ │ │ │ │ ├── themeco.svg │ │ │ │ │ │ ├── themeisle.svg │ │ │ │ │ │ ├── think-peaks.svg │ │ │ │ │ │ ├── trade-federation.svg │ │ │ │ │ │ ├── trello.svg │ │ │ │ │ │ ├── tripadvisor.svg │ │ │ │ │ │ ├── tumblr-square.svg │ │ │ │ │ │ ├── tumblr.svg │ │ │ │ │ │ ├── twitch.svg │ │ │ │ │ │ ├── twitter-square.svg │ │ │ │ │ │ ├── twitter.svg │ │ │ │ │ │ ├── typo3.svg │ │ │ │ │ │ ├── uber.svg │ │ │ │ │ │ ├── ubuntu.svg │ │ │ │ │ │ ├── uikit.svg │ │ │ │ │ │ ├── umbraco.svg │ │ │ │ │ │ ├── uniregistry.svg │ │ │ │ │ │ ├── unity.svg │ │ │ │ │ │ ├── untappd.svg │ │ │ │ │ │ ├── ups.svg │ │ │ │ │ │ ├── usb.svg │ │ │ │ │ │ ├── usps.svg │ │ │ │ │ │ ├── ussunnah.svg │ │ │ │ │ │ ├── vaadin.svg │ │ │ │ │ │ ├── viacoin.svg │ │ │ │ │ │ ├── viadeo-square.svg │ │ │ │ │ │ ├── viadeo.svg │ │ │ │ │ │ ├── viber.svg │ │ │ │ │ │ ├── vimeo-square.svg │ │ │ │ │ │ ├── vimeo-v.svg │ │ │ │ │ │ ├── vimeo.svg │ │ │ │ │ │ ├── vine.svg │ │ │ │ │ │ ├── vk.svg │ │ │ │ │ │ ├── vnv.svg │ │ │ │ │ │ ├── vuejs.svg │ │ │ │ │ │ ├── waze.svg │ │ │ │ │ │ ├── weebly.svg │ │ │ │ │ │ ├── weibo.svg │ │ │ │ │ │ ├── weixin.svg │ │ │ │ │ │ ├── whatsapp-square.svg │ │ │ │ │ │ ├── whatsapp.svg │ │ │ │ │ │ ├── whmcs.svg │ │ │ │ │ │ ├── wikipedia-w.svg │ │ │ │ │ │ ├── windows.svg │ │ │ │ │ │ ├── wix.svg │ │ │ │ │ │ ├── wizards-of-the-coast.svg │ │ │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ │ │ ├── wordpress-simple.svg │ │ │ │ │ │ ├── wordpress.svg │ │ │ │ │ │ ├── wpbeginner.svg │ │ │ │ │ │ ├── wpexplorer.svg │ │ │ │ │ │ ├── wpforms.svg │ │ │ │ │ │ ├── wpressr.svg │ │ │ │ │ │ ├── xbox.svg │ │ │ │ │ │ ├── xing-square.svg │ │ │ │ │ │ ├── xing.svg │ │ │ │ │ │ ├── y-combinator.svg │ │ │ │ │ │ ├── yahoo.svg │ │ │ │ │ │ ├── yammer.svg │ │ │ │ │ │ ├── yandex-international.svg │ │ │ │ │ │ ├── yandex.svg │ │ │ │ │ │ ├── yarn.svg │ │ │ │ │ │ ├── yelp.svg │ │ │ │ │ │ ├── yoast.svg │ │ │ │ │ │ ├── youtube-square.svg │ │ │ │ │ │ ├── youtube.svg │ │ │ │ │ │ └── zhihu.svg │ │ │ │ │ ├── regular │ │ │ │ │ │ ├── address-book.svg │ │ │ │ │ │ ├── address-card.svg │ │ │ │ │ │ ├── angry.svg │ │ │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ │ ├── bell.svg │ │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ │ ├── building.svg │ │ │ │ │ │ ├── calendar-alt.svg │ │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ │ ├── calendar-times.svg │ │ │ │ │ │ ├── calendar.svg │ │ │ │ │ │ ├── caret-square-down.svg │ │ │ │ │ │ ├── caret-square-left.svg │ │ │ │ │ │ ├── caret-square-right.svg │ │ │ │ │ │ ├── caret-square-up.svg │ │ │ │ │ │ ├── chart-bar.svg │ │ │ │ │ │ ├── check-circle.svg │ │ │ │ │ │ ├── check-square.svg │ │ │ │ │ │ ├── circle.svg │ │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ │ ├── clock.svg │ │ │ │ │ │ ├── clone.svg │ │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ │ ├── comment-alt.svg │ │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ │ ├── comment.svg │ │ │ │ │ │ ├── comments.svg │ │ │ │ │ │ ├── compass.svg │ │ │ │ │ │ ├── copy.svg │ │ │ │ │ │ ├── copyright.svg │ │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ │ ├── dizzy.svg │ │ │ │ │ │ ├── dot-circle.svg │ │ │ │ │ │ ├── edit.svg │ │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ │ ├── envelope.svg │ │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ │ ├── eye.svg │ │ │ │ │ │ ├── file-alt.svg │ │ │ │ │ │ ├── file-archive.svg │ │ │ │ │ │ ├── file-audio.svg │ │ │ │ │ │ ├── file-code.svg │ │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ │ ├── file-image.svg │ │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ │ ├── file-powerpoint.svg │ │ │ │ │ │ ├── file-video.svg │ │ │ │ │ │ ├── file-word.svg │ │ │ │ │ │ ├── file.svg │ │ │ │ │ │ ├── flag.svg │ │ │ │ │ │ ├── flushed.svg │ │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ │ ├── folder.svg │ │ │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ │ │ ├── frown-open.svg │ │ │ │ │ │ ├── frown.svg │ │ │ │ │ │ ├── futbol.svg │ │ │ │ │ │ ├── gem.svg │ │ │ │ │ │ ├── grimace.svg │ │ │ │ │ │ ├── grin-alt.svg │ │ │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ │ │ ├── grin-beam.svg │ │ │ │ │ │ ├── grin-hearts.svg │ │ │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ │ │ ├── grin-squint.svg │ │ │ │ │ │ ├── grin-stars.svg │ │ │ │ │ │ ├── grin-tears.svg │ │ │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ │ │ ├── grin-tongue.svg │ │ │ │ │ │ ├── grin-wink.svg │ │ │ │ │ │ ├── grin.svg │ │ │ │ │ │ ├── hand-lizard.svg │ │ │ │ │ │ ├── hand-paper.svg │ │ │ │ │ │ ├── hand-peace.svg │ │ │ │ │ │ ├── hand-point-down.svg │ │ │ │ │ │ ├── hand-point-left.svg │ │ │ │ │ │ ├── hand-point-right.svg │ │ │ │ │ │ ├── hand-point-up.svg │ │ │ │ │ │ ├── hand-pointer.svg │ │ │ │ │ │ ├── hand-rock.svg │ │ │ │ │ │ ├── hand-scissors.svg │ │ │ │ │ │ ├── hand-spock.svg │ │ │ │ │ │ ├── handshake.svg │ │ │ │ │ │ ├── hdd.svg │ │ │ │ │ │ ├── heart.svg │ │ │ │ │ │ ├── hospital.svg │ │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ │ ├── id-badge.svg │ │ │ │ │ │ ├── id-card.svg │ │ │ │ │ │ ├── image.svg │ │ │ │ │ │ ├── images.svg │ │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ │ ├── kiss-beam.svg │ │ │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ │ │ ├── kiss.svg │ │ │ │ │ │ ├── laugh-beam.svg │ │ │ │ │ │ ├── laugh-squint.svg │ │ │ │ │ │ ├── laugh-wink.svg │ │ │ │ │ │ ├── laugh.svg │ │ │ │ │ │ ├── lemon.svg │ │ │ │ │ │ ├── life-ring.svg │ │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ │ ├── list-alt.svg │ │ │ │ │ │ ├── map.svg │ │ │ │ │ │ ├── meh-blank.svg │ │ │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ │ │ ├── meh.svg │ │ │ │ │ │ ├── minus-square.svg │ │ │ │ │ │ ├── money-bill-alt.svg │ │ │ │ │ │ ├── moon.svg │ │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ │ ├── object-group.svg │ │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ │ ├── pause-circle.svg │ │ │ │ │ │ ├── play-circle.svg │ │ │ │ │ │ ├── plus-square.svg │ │ │ │ │ │ ├── question-circle.svg │ │ │ │ │ │ ├── registered.svg │ │ │ │ │ │ ├── sad-cry.svg │ │ │ │ │ │ ├── sad-tear.svg │ │ │ │ │ │ ├── save.svg │ │ │ │ │ │ ├── share-square.svg │ │ │ │ │ │ ├── smile-beam.svg │ │ │ │ │ │ ├── smile-wink.svg │ │ │ │ │ │ ├── smile.svg │ │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ │ ├── square.svg │ │ │ │ │ │ ├── star-half.svg │ │ │ │ │ │ ├── star.svg │ │ │ │ │ │ ├── sticky-note.svg │ │ │ │ │ │ ├── stop-circle.svg │ │ │ │ │ │ ├── sun.svg │ │ │ │ │ │ ├── surprise.svg │ │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ │ ├── times-circle.svg │ │ │ │ │ │ ├── tired.svg │ │ │ │ │ │ ├── trash-alt.svg │ │ │ │ │ │ ├── user-circle.svg │ │ │ │ │ │ ├── user.svg │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ │ └── window-restore.svg │ │ │ │ │ └── solid │ │ │ │ │ │ ├── ad.svg │ │ │ │ │ │ ├── address-book.svg │ │ │ │ │ │ ├── address-card.svg │ │ │ │ │ │ ├── adjust.svg │ │ │ │ │ │ ├── air-freshener.svg │ │ │ │ │ │ ├── align-center.svg │ │ │ │ │ │ ├── align-justify.svg │ │ │ │ │ │ ├── align-left.svg │ │ │ │ │ │ ├── align-right.svg │ │ │ │ │ │ ├── allergies.svg │ │ │ │ │ │ ├── ambulance.svg │ │ │ │ │ │ ├── american-sign-language-interpreting.svg │ │ │ │ │ │ ├── anchor.svg │ │ │ │ │ │ ├── angle-double-down.svg │ │ │ │ │ │ ├── angle-double-left.svg │ │ │ │ │ │ ├── angle-double-right.svg │ │ │ │ │ │ ├── angle-double-up.svg │ │ │ │ │ │ ├── angle-down.svg │ │ │ │ │ │ ├── angle-left.svg │ │ │ │ │ │ ├── angle-right.svg │ │ │ │ │ │ ├── angle-up.svg │ │ │ │ │ │ ├── angry.svg │ │ │ │ │ │ ├── ankh.svg │ │ │ │ │ │ ├── apple-alt.svg │ │ │ │ │ │ ├── archive.svg │ │ │ │ │ │ ├── archway.svg │ │ │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ │ │ ├── arrow-circle-down.svg │ │ │ │ │ │ ├── arrow-circle-left.svg │ │ │ │ │ │ ├── arrow-circle-right.svg │ │ │ │ │ │ ├── arrow-circle-up.svg │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ │ ├── arrows-alt-h.svg │ │ │ │ │ │ ├── arrows-alt-v.svg │ │ │ │ │ │ ├── arrows-alt.svg │ │ │ │ │ │ ├── assistive-listening-systems.svg │ │ │ │ │ │ ├── asterisk.svg │ │ │ │ │ │ ├── at.svg │ │ │ │ │ │ ├── atlas.svg │ │ │ │ │ │ ├── atom.svg │ │ │ │ │ │ ├── audio-description.svg │ │ │ │ │ │ ├── award.svg │ │ │ │ │ │ ├── baby-carriage.svg │ │ │ │ │ │ ├── baby.svg │ │ │ │ │ │ ├── backspace.svg │ │ │ │ │ │ ├── backward.svg │ │ │ │ │ │ ├── bacon.svg │ │ │ │ │ │ ├── bahai.svg │ │ │ │ │ │ ├── balance-scale-left.svg │ │ │ │ │ │ ├── balance-scale-right.svg │ │ │ │ │ │ ├── balance-scale.svg │ │ │ │ │ │ ├── ban.svg │ │ │ │ │ │ ├── band-aid.svg │ │ │ │ │ │ ├── barcode.svg │ │ │ │ │ │ ├── bars.svg │ │ │ │ │ │ ├── baseball-ball.svg │ │ │ │ │ │ ├── basketball-ball.svg │ │ │ │ │ │ ├── bath.svg │ │ │ │ │ │ ├── battery-empty.svg │ │ │ │ │ │ ├── battery-full.svg │ │ │ │ │ │ ├── battery-half.svg │ │ │ │ │ │ ├── battery-quarter.svg │ │ │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ │ │ ├── bed.svg │ │ │ │ │ │ ├── beer.svg │ │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ │ ├── bell.svg │ │ │ │ │ │ ├── bezier-curve.svg │ │ │ │ │ │ ├── bible.svg │ │ │ │ │ │ ├── bicycle.svg │ │ │ │ │ │ ├── biking.svg │ │ │ │ │ │ ├── binoculars.svg │ │ │ │ │ │ ├── biohazard.svg │ │ │ │ │ │ ├── birthday-cake.svg │ │ │ │ │ │ ├── blender-phone.svg │ │ │ │ │ │ ├── blender.svg │ │ │ │ │ │ ├── blind.svg │ │ │ │ │ │ ├── blog.svg │ │ │ │ │ │ ├── bold.svg │ │ │ │ │ │ ├── bolt.svg │ │ │ │ │ │ ├── bomb.svg │ │ │ │ │ │ ├── bone.svg │ │ │ │ │ │ ├── bong.svg │ │ │ │ │ │ ├── book-dead.svg │ │ │ │ │ │ ├── book-medical.svg │ │ │ │ │ │ ├── book-open.svg │ │ │ │ │ │ ├── book-reader.svg │ │ │ │ │ │ ├── book.svg │ │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ │ ├── border-all.svg │ │ │ │ │ │ ├── border-none.svg │ │ │ │ │ │ ├── border-style.svg │ │ │ │ │ │ ├── bowling-ball.svg │ │ │ │ │ │ ├── box-open.svg │ │ │ │ │ │ ├── box-tissue.svg │ │ │ │ │ │ ├── box.svg │ │ │ │ │ │ ├── boxes.svg │ │ │ │ │ │ ├── braille.svg │ │ │ │ │ │ ├── brain.svg │ │ │ │ │ │ ├── bread-slice.svg │ │ │ │ │ │ ├── briefcase-medical.svg │ │ │ │ │ │ ├── briefcase.svg │ │ │ │ │ │ ├── broadcast-tower.svg │ │ │ │ │ │ ├── broom.svg │ │ │ │ │ │ ├── brush.svg │ │ │ │ │ │ ├── bug.svg │ │ │ │ │ │ ├── building.svg │ │ │ │ │ │ ├── bullhorn.svg │ │ │ │ │ │ ├── bullseye.svg │ │ │ │ │ │ ├── burn.svg │ │ │ │ │ │ ├── bus-alt.svg │ │ │ │ │ │ ├── bus.svg │ │ │ │ │ │ ├── business-time.svg │ │ │ │ │ │ ├── calculator.svg │ │ │ │ │ │ ├── calendar-alt.svg │ │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ │ ├── calendar-day.svg │ │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ │ ├── calendar-times.svg │ │ │ │ │ │ ├── calendar-week.svg │ │ │ │ │ │ ├── calendar.svg │ │ │ │ │ │ ├── camera-retro.svg │ │ │ │ │ │ ├── camera.svg │ │ │ │ │ │ ├── campground.svg │ │ │ │ │ │ ├── candy-cane.svg │ │ │ │ │ │ ├── cannabis.svg │ │ │ │ │ │ ├── capsules.svg │ │ │ │ │ │ ├── car-alt.svg │ │ │ │ │ │ ├── car-battery.svg │ │ │ │ │ │ ├── car-crash.svg │ │ │ │ │ │ ├── car-side.svg │ │ │ │ │ │ ├── car.svg │ │ │ │ │ │ ├── caravan.svg │ │ │ │ │ │ ├── caret-down.svg │ │ │ │ │ │ ├── caret-left.svg │ │ │ │ │ │ ├── caret-right.svg │ │ │ │ │ │ ├── caret-square-down.svg │ │ │ │ │ │ ├── caret-square-left.svg │ │ │ │ │ │ ├── caret-square-right.svg │ │ │ │ │ │ ├── caret-square-up.svg │ │ │ │ │ │ ├── caret-up.svg │ │ │ │ │ │ ├── carrot.svg │ │ │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ │ │ ├── cart-plus.svg │ │ │ │ │ │ ├── cash-register.svg │ │ │ │ │ │ ├── cat.svg │ │ │ │ │ │ ├── certificate.svg │ │ │ │ │ │ ├── chair.svg │ │ │ │ │ │ ├── chalkboard-teacher.svg │ │ │ │ │ │ ├── chalkboard.svg │ │ │ │ │ │ ├── charging-station.svg │ │ │ │ │ │ ├── chart-area.svg │ │ │ │ │ │ ├── chart-bar.svg │ │ │ │ │ │ ├── chart-line.svg │ │ │ │ │ │ ├── chart-pie.svg │ │ │ │ │ │ ├── check-circle.svg │ │ │ │ │ │ ├── check-double.svg │ │ │ │ │ │ ├── check-square.svg │ │ │ │ │ │ ├── check.svg │ │ │ │ │ │ ├── cheese.svg │ │ │ │ │ │ ├── chess-bishop.svg │ │ │ │ │ │ ├── chess-board.svg │ │ │ │ │ │ ├── chess-king.svg │ │ │ │ │ │ ├── chess-knight.svg │ │ │ │ │ │ ├── chess-pawn.svg │ │ │ │ │ │ ├── chess-queen.svg │ │ │ │ │ │ ├── chess-rook.svg │ │ │ │ │ │ ├── chess.svg │ │ │ │ │ │ ├── chevron-circle-down.svg │ │ │ │ │ │ ├── chevron-circle-left.svg │ │ │ │ │ │ ├── chevron-circle-right.svg │ │ │ │ │ │ ├── chevron-circle-up.svg │ │ │ │ │ │ ├── chevron-down.svg │ │ │ │ │ │ ├── chevron-left.svg │ │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ │ ├── chevron-up.svg │ │ │ │ │ │ ├── child.svg │ │ │ │ │ │ ├── church.svg │ │ │ │ │ │ ├── circle-notch.svg │ │ │ │ │ │ ├── circle.svg │ │ │ │ │ │ ├── city.svg │ │ │ │ │ │ ├── clinic-medical.svg │ │ │ │ │ │ ├── clipboard-check.svg │ │ │ │ │ │ ├── clipboard-list.svg │ │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ │ ├── clock.svg │ │ │ │ │ │ ├── clone.svg │ │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ │ ├── cloud-download-alt.svg │ │ │ │ │ │ ├── cloud-meatball.svg │ │ │ │ │ │ ├── cloud-moon-rain.svg │ │ │ │ │ │ ├── cloud-moon.svg │ │ │ │ │ │ ├── cloud-rain.svg │ │ │ │ │ │ ├── cloud-showers-heavy.svg │ │ │ │ │ │ ├── cloud-sun-rain.svg │ │ │ │ │ │ ├── cloud-sun.svg │ │ │ │ │ │ ├── cloud-upload-alt.svg │ │ │ │ │ │ ├── cloud.svg │ │ │ │ │ │ ├── cocktail.svg │ │ │ │ │ │ ├── code-branch.svg │ │ │ │ │ │ ├── code.svg │ │ │ │ │ │ ├── coffee.svg │ │ │ │ │ │ ├── cog.svg │ │ │ │ │ │ ├── cogs.svg │ │ │ │ │ │ ├── coins.svg │ │ │ │ │ │ ├── columns.svg │ │ │ │ │ │ ├── comment-alt.svg │ │ │ │ │ │ ├── comment-dollar.svg │ │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ │ ├── comment-medical.svg │ │ │ │ │ │ ├── comment-slash.svg │ │ │ │ │ │ ├── comment.svg │ │ │ │ │ │ ├── comments-dollar.svg │ │ │ │ │ │ ├── comments.svg │ │ │ │ │ │ ├── compact-disc.svg │ │ │ │ │ │ ├── compass.svg │ │ │ │ │ │ ├── compress-alt.svg │ │ │ │ │ │ ├── compress-arrows-alt.svg │ │ │ │ │ │ ├── compress.svg │ │ │ │ │ │ ├── concierge-bell.svg │ │ │ │ │ │ ├── cookie-bite.svg │ │ │ │ │ │ ├── cookie.svg │ │ │ │ │ │ ├── copy.svg │ │ │ │ │ │ ├── copyright.svg │ │ │ │ │ │ ├── couch.svg │ │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ │ ├── crop-alt.svg │ │ │ │ │ │ ├── crop.svg │ │ │ │ │ │ ├── cross.svg │ │ │ │ │ │ ├── crosshairs.svg │ │ │ │ │ │ ├── crow.svg │ │ │ │ │ │ ├── crown.svg │ │ │ │ │ │ ├── crutch.svg │ │ │ │ │ │ ├── cube.svg │ │ │ │ │ │ ├── cubes.svg │ │ │ │ │ │ ├── cut.svg │ │ │ │ │ │ ├── database.svg │ │ │ │ │ │ ├── deaf.svg │ │ │ │ │ │ ├── democrat.svg │ │ │ │ │ │ ├── desktop.svg │ │ │ │ │ │ ├── dharmachakra.svg │ │ │ │ │ │ ├── diagnoses.svg │ │ │ │ │ │ ├── dice-d20.svg │ │ │ │ │ │ ├── dice-d6.svg │ │ │ │ │ │ ├── dice-five.svg │ │ │ │ │ │ ├── dice-four.svg │ │ │ │ │ │ ├── dice-one.svg │ │ │ │ │ │ ├── dice-six.svg │ │ │ │ │ │ ├── dice-three.svg │ │ │ │ │ │ ├── dice-two.svg │ │ │ │ │ │ ├── dice.svg │ │ │ │ │ │ ├── digital-tachograph.svg │ │ │ │ │ │ ├── directions.svg │ │ │ │ │ │ ├── disease.svg │ │ │ │ │ │ ├── divide.svg │ │ │ │ │ │ ├── dizzy.svg │ │ │ │ │ │ ├── dna.svg │ │ │ │ │ │ ├── dog.svg │ │ │ │ │ │ ├── dollar-sign.svg │ │ │ │ │ │ ├── dolly-flatbed.svg │ │ │ │ │ │ ├── dolly.svg │ │ │ │ │ │ ├── donate.svg │ │ │ │ │ │ ├── door-closed.svg │ │ │ │ │ │ ├── door-open.svg │ │ │ │ │ │ ├── dot-circle.svg │ │ │ │ │ │ ├── dove.svg │ │ │ │ │ │ ├── download.svg │ │ │ │ │ │ ├── drafting-compass.svg │ │ │ │ │ │ ├── dragon.svg │ │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ │ ├── drum-steelpan.svg │ │ │ │ │ │ ├── drum.svg │ │ │ │ │ │ ├── drumstick-bite.svg │ │ │ │ │ │ ├── dumbbell.svg │ │ │ │ │ │ ├── dumpster-fire.svg │ │ │ │ │ │ ├── dumpster.svg │ │ │ │ │ │ ├── dungeon.svg │ │ │ │ │ │ ├── edit.svg │ │ │ │ │ │ ├── egg.svg │ │ │ │ │ │ ├── eject.svg │ │ │ │ │ │ ├── ellipsis-h.svg │ │ │ │ │ │ ├── ellipsis-v.svg │ │ │ │ │ │ ├── envelope-open-text.svg │ │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ │ ├── envelope-square.svg │ │ │ │ │ │ ├── envelope.svg │ │ │ │ │ │ ├── equals.svg │ │ │ │ │ │ ├── eraser.svg │ │ │ │ │ │ ├── ethernet.svg │ │ │ │ │ │ ├── euro-sign.svg │ │ │ │ │ │ ├── exchange-alt.svg │ │ │ │ │ │ ├── exclamation-circle.svg │ │ │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ │ │ ├── exclamation.svg │ │ │ │ │ │ ├── expand-alt.svg │ │ │ │ │ │ ├── expand-arrows-alt.svg │ │ │ │ │ │ ├── expand.svg │ │ │ │ │ │ ├── external-link-alt.svg │ │ │ │ │ │ ├── external-link-square-alt.svg │ │ │ │ │ │ ├── eye-dropper.svg │ │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ │ ├── eye.svg │ │ │ │ │ │ ├── fan.svg │ │ │ │ │ │ ├── fast-backward.svg │ │ │ │ │ │ ├── fast-forward.svg │ │ │ │ │ │ ├── faucet.svg │ │ │ │ │ │ ├── fax.svg │ │ │ │ │ │ ├── feather-alt.svg │ │ │ │ │ │ ├── feather.svg │ │ │ │ │ │ ├── female.svg │ │ │ │ │ │ ├── fighter-jet.svg │ │ │ │ │ │ ├── file-alt.svg │ │ │ │ │ │ ├── file-archive.svg │ │ │ │ │ │ ├── file-audio.svg │ │ │ │ │ │ ├── file-code.svg │ │ │ │ │ │ ├── file-contract.svg │ │ │ │ │ │ ├── file-csv.svg │ │ │ │ │ │ ├── file-download.svg │ │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ │ ├── file-export.svg │ │ │ │ │ │ ├── file-image.svg │ │ │ │ │ │ ├── file-import.svg │ │ │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ │ │ ├── file-invoice.svg │ │ │ │ │ │ ├── file-medical-alt.svg │ │ │ │ │ │ ├── file-medical.svg │ │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ │ ├── file-powerpoint.svg │ │ │ │ │ │ ├── file-prescription.svg │ │ │ │ │ │ ├── file-signature.svg │ │ │ │ │ │ ├── file-upload.svg │ │ │ │ │ │ ├── file-video.svg │ │ │ │ │ │ ├── file-word.svg │ │ │ │ │ │ ├── file.svg │ │ │ │ │ │ ├── fill-drip.svg │ │ │ │ │ │ ├── fill.svg │ │ │ │ │ │ ├── film.svg │ │ │ │ │ │ ├── filter.svg │ │ │ │ │ │ ├── fingerprint.svg │ │ │ │ │ │ ├── fire-alt.svg │ │ │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ │ │ ├── fire.svg │ │ │ │ │ │ ├── first-aid.svg │ │ │ │ │ │ ├── fish.svg │ │ │ │ │ │ ├── fist-raised.svg │ │ │ │ │ │ ├── flag-checkered.svg │ │ │ │ │ │ ├── flag-usa.svg │ │ │ │ │ │ ├── flag.svg │ │ │ │ │ │ ├── flask.svg │ │ │ │ │ │ ├── flushed.svg │ │ │ │ │ │ ├── folder-minus.svg │ │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ │ ├── folder-plus.svg │ │ │ │ │ │ ├── folder.svg │ │ │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ │ │ ├── font.svg │ │ │ │ │ │ ├── football-ball.svg │ │ │ │ │ │ ├── forward.svg │ │ │ │ │ │ ├── frog.svg │ │ │ │ │ │ ├── frown-open.svg │ │ │ │ │ │ ├── frown.svg │ │ │ │ │ │ ├── funnel-dollar.svg │ │ │ │ │ │ ├── futbol.svg │ │ │ │ │ │ ├── gamepad.svg │ │ │ │ │ │ ├── gas-pump.svg │ │ │ │ │ │ ├── gavel.svg │ │ │ │ │ │ ├── gem.svg │ │ │ │ │ │ ├── genderless.svg │ │ │ │ │ │ ├── ghost.svg │ │ │ │ │ │ ├── gift.svg │ │ │ │ │ │ ├── gifts.svg │ │ │ │ │ │ ├── glass-cheers.svg │ │ │ │ │ │ ├── glass-martini-alt.svg │ │ │ │ │ │ ├── glass-martini.svg │ │ │ │ │ │ ├── glass-whiskey.svg │ │ │ │ │ │ ├── glasses.svg │ │ │ │ │ │ ├── globe-africa.svg │ │ │ │ │ │ ├── globe-americas.svg │ │ │ │ │ │ ├── globe-asia.svg │ │ │ │ │ │ ├── globe-europe.svg │ │ │ │ │ │ ├── globe.svg │ │ │ │ │ │ ├── golf-ball.svg │ │ │ │ │ │ ├── gopuram.svg │ │ │ │ │ │ ├── graduation-cap.svg │ │ │ │ │ │ ├── greater-than-equal.svg │ │ │ │ │ │ ├── greater-than.svg │ │ │ │ │ │ ├── grimace.svg │ │ │ │ │ │ ├── grin-alt.svg │ │ │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ │ │ ├── grin-beam.svg │ │ │ │ │ │ ├── grin-hearts.svg │ │ │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ │ │ ├── grin-squint.svg │ │ │ │ │ │ ├── grin-stars.svg │ │ │ │ │ │ ├── grin-tears.svg │ │ │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ │ │ ├── grin-tongue.svg │ │ │ │ │ │ ├── grin-wink.svg │ │ │ │ │ │ ├── grin.svg │ │ │ │ │ │ ├── grip-horizontal.svg │ │ │ │ │ │ ├── grip-lines-vertical.svg │ │ │ │ │ │ ├── grip-lines.svg │ │ │ │ │ │ ├── grip-vertical.svg │ │ │ │ │ │ ├── guitar.svg │ │ │ │ │ │ ├── h-square.svg │ │ │ │ │ │ ├── hamburger.svg │ │ │ │ │ │ ├── hammer.svg │ │ │ │ │ │ ├── hamsa.svg │ │ │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ │ │ ├── hand-holding-medical.svg │ │ │ │ │ │ ├── hand-holding-usd.svg │ │ │ │ │ │ ├── hand-holding-water.svg │ │ │ │ │ │ ├── hand-holding.svg │ │ │ │ │ │ ├── hand-lizard.svg │ │ │ │ │ │ ├── hand-middle-finger.svg │ │ │ │ │ │ ├── hand-paper.svg │ │ │ │ │ │ ├── hand-peace.svg │ │ │ │ │ │ ├── hand-point-down.svg │ │ │ │ │ │ ├── hand-point-left.svg │ │ │ │ │ │ ├── hand-point-right.svg │ │ │ │ │ │ ├── hand-point-up.svg │ │ │ │ │ │ ├── hand-pointer.svg │ │ │ │ │ │ ├── hand-rock.svg │ │ │ │ │ │ ├── hand-scissors.svg │ │ │ │ │ │ ├── hand-sparkles.svg │ │ │ │ │ │ ├── hand-spock.svg │ │ │ │ │ │ ├── hands-helping.svg │ │ │ │ │ │ ├── hands-wash.svg │ │ │ │ │ │ ├── hands.svg │ │ │ │ │ │ ├── handshake-alt-slash.svg │ │ │ │ │ │ ├── handshake-slash.svg │ │ │ │ │ │ ├── handshake.svg │ │ │ │ │ │ ├── hanukiah.svg │ │ │ │ │ │ ├── hard-hat.svg │ │ │ │ │ │ ├── hashtag.svg │ │ │ │ │ │ ├── hat-cowboy-side.svg │ │ │ │ │ │ ├── hat-cowboy.svg │ │ │ │ │ │ ├── hat-wizard.svg │ │ │ │ │ │ ├── hdd.svg │ │ │ │ │ │ ├── head-side-cough-slash.svg │ │ │ │ │ │ ├── head-side-cough.svg │ │ │ │ │ │ ├── head-side-mask.svg │ │ │ │ │ │ ├── head-side-virus.svg │ │ │ │ │ │ ├── heading.svg │ │ │ │ │ │ ├── headphones-alt.svg │ │ │ │ │ │ ├── headphones.svg │ │ │ │ │ │ ├── headset.svg │ │ │ │ │ │ ├── heart-broken.svg │ │ │ │ │ │ ├── heart.svg │ │ │ │ │ │ ├── heartbeat.svg │ │ │ │ │ │ ├── helicopter.svg │ │ │ │ │ │ ├── highlighter.svg │ │ │ │ │ │ ├── hiking.svg │ │ │ │ │ │ ├── hippo.svg │ │ │ │ │ │ ├── history.svg │ │ │ │ │ │ ├── hockey-puck.svg │ │ │ │ │ │ ├── holly-berry.svg │ │ │ │ │ │ ├── home.svg │ │ │ │ │ │ ├── horse-head.svg │ │ │ │ │ │ ├── horse.svg │ │ │ │ │ │ ├── hospital-alt.svg │ │ │ │ │ │ ├── hospital-symbol.svg │ │ │ │ │ │ ├── hospital-user.svg │ │ │ │ │ │ ├── hospital.svg │ │ │ │ │ │ ├── hot-tub.svg │ │ │ │ │ │ ├── hotdog.svg │ │ │ │ │ │ ├── hotel.svg │ │ │ │ │ │ ├── hourglass-end.svg │ │ │ │ │ │ ├── hourglass-half.svg │ │ │ │ │ │ ├── hourglass-start.svg │ │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ │ ├── house-damage.svg │ │ │ │ │ │ ├── house-user.svg │ │ │ │ │ │ ├── hryvnia.svg │ │ │ │ │ │ ├── i-cursor.svg │ │ │ │ │ │ ├── ice-cream.svg │ │ │ │ │ │ ├── icicles.svg │ │ │ │ │ │ ├── icons.svg │ │ │ │ │ │ ├── id-badge.svg │ │ │ │ │ │ ├── id-card-alt.svg │ │ │ │ │ │ ├── id-card.svg │ │ │ │ │ │ ├── igloo.svg │ │ │ │ │ │ ├── image.svg │ │ │ │ │ │ ├── images.svg │ │ │ │ │ │ ├── inbox.svg │ │ │ │ │ │ ├── indent.svg │ │ │ │ │ │ ├── industry.svg │ │ │ │ │ │ ├── infinity.svg │ │ │ │ │ │ ├── info-circle.svg │ │ │ │ │ │ ├── info.svg │ │ │ │ │ │ ├── italic.svg │ │ │ │ │ │ ├── jedi.svg │ │ │ │ │ │ ├── joint.svg │ │ │ │ │ │ ├── journal-whills.svg │ │ │ │ │ │ ├── kaaba.svg │ │ │ │ │ │ ├── key.svg │ │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ │ ├── khanda.svg │ │ │ │ │ │ ├── kiss-beam.svg │ │ │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ │ │ ├── kiss.svg │ │ │ │ │ │ ├── kiwi-bird.svg │ │ │ │ │ │ ├── landmark.svg │ │ │ │ │ │ ├── language.svg │ │ │ │ │ │ ├── laptop-code.svg │ │ │ │ │ │ ├── laptop-house.svg │ │ │ │ │ │ ├── laptop-medical.svg │ │ │ │ │ │ ├── laptop.svg │ │ │ │ │ │ ├── laugh-beam.svg │ │ │ │ │ │ ├── laugh-squint.svg │ │ │ │ │ │ ├── laugh-wink.svg │ │ │ │ │ │ ├── laugh.svg │ │ │ │ │ │ ├── layer-group.svg │ │ │ │ │ │ ├── leaf.svg │ │ │ │ │ │ ├── lemon.svg │ │ │ │ │ │ ├── less-than-equal.svg │ │ │ │ │ │ ├── less-than.svg │ │ │ │ │ │ ├── level-down-alt.svg │ │ │ │ │ │ ├── level-up-alt.svg │ │ │ │ │ │ ├── life-ring.svg │ │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ │ ├── link.svg │ │ │ │ │ │ ├── lira-sign.svg │ │ │ │ │ │ ├── list-alt.svg │ │ │ │ │ │ ├── list-ol.svg │ │ │ │ │ │ ├── list-ul.svg │ │ │ │ │ │ ├── list.svg │ │ │ │ │ │ ├── location-arrow.svg │ │ │ │ │ │ ├── lock-open.svg │ │ │ │ │ │ ├── lock.svg │ │ │ │ │ │ ├── long-arrow-alt-down.svg │ │ │ │ │ │ ├── long-arrow-alt-left.svg │ │ │ │ │ │ ├── long-arrow-alt-right.svg │ │ │ │ │ │ ├── long-arrow-alt-up.svg │ │ │ │ │ │ ├── low-vision.svg │ │ │ │ │ │ ├── luggage-cart.svg │ │ │ │ │ │ ├── lungs-virus.svg │ │ │ │ │ │ ├── lungs.svg │ │ │ │ │ │ ├── magic.svg │ │ │ │ │ │ ├── magnet.svg │ │ │ │ │ │ ├── mail-bulk.svg │ │ │ │ │ │ ├── male.svg │ │ │ │ │ │ ├── map-marked-alt.svg │ │ │ │ │ │ ├── map-marked.svg │ │ │ │ │ │ ├── map-marker-alt.svg │ │ │ │ │ │ ├── map-marker.svg │ │ │ │ │ │ ├── map-pin.svg │ │ │ │ │ │ ├── map-signs.svg │ │ │ │ │ │ ├── map.svg │ │ │ │ │ │ ├── marker.svg │ │ │ │ │ │ ├── mars-double.svg │ │ │ │ │ │ ├── mars-stroke-h.svg │ │ │ │ │ │ ├── mars-stroke-v.svg │ │ │ │ │ │ ├── mars-stroke.svg │ │ │ │ │ │ ├── mars.svg │ │ │ │ │ │ ├── mask.svg │ │ │ │ │ │ ├── medal.svg │ │ │ │ │ │ ├── medkit.svg │ │ │ │ │ │ ├── meh-blank.svg │ │ │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ │ │ ├── meh.svg │ │ │ │ │ │ ├── memory.svg │ │ │ │ │ │ ├── menorah.svg │ │ │ │ │ │ ├── mercury.svg │ │ │ │ │ │ ├── meteor.svg │ │ │ │ │ │ ├── microchip.svg │ │ │ │ │ │ ├── microphone-alt-slash.svg │ │ │ │ │ │ ├── microphone-alt.svg │ │ │ │ │ │ ├── microphone-slash.svg │ │ │ │ │ │ ├── microphone.svg │ │ │ │ │ │ ├── microscope.svg │ │ │ │ │ │ ├── minus-circle.svg │ │ │ │ │ │ ├── minus-square.svg │ │ │ │ │ │ ├── minus.svg │ │ │ │ │ │ ├── mitten.svg │ │ │ │ │ │ ├── mobile-alt.svg │ │ │ │ │ │ ├── mobile.svg │ │ │ │ │ │ ├── money-bill-alt.svg │ │ │ │ │ │ ├── money-bill-wave-alt.svg │ │ │ │ │ │ ├── money-bill-wave.svg │ │ │ │ │ │ ├── money-bill.svg │ │ │ │ │ │ ├── money-check-alt.svg │ │ │ │ │ │ ├── money-check.svg │ │ │ │ │ │ ├── monument.svg │ │ │ │ │ │ ├── moon.svg │ │ │ │ │ │ ├── mortar-pestle.svg │ │ │ │ │ │ ├── mosque.svg │ │ │ │ │ │ ├── motorcycle.svg │ │ │ │ │ │ ├── mountain.svg │ │ │ │ │ │ ├── mouse-pointer.svg │ │ │ │ │ │ ├── mouse.svg │ │ │ │ │ │ ├── mug-hot.svg │ │ │ │ │ │ ├── music.svg │ │ │ │ │ │ ├── network-wired.svg │ │ │ │ │ │ ├── neuter.svg │ │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ │ ├── not-equal.svg │ │ │ │ │ │ ├── notes-medical.svg │ │ │ │ │ │ ├── object-group.svg │ │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ │ ├── oil-can.svg │ │ │ │ │ │ ├── om.svg │ │ │ │ │ │ ├── otter.svg │ │ │ │ │ │ ├── outdent.svg │ │ │ │ │ │ ├── pager.svg │ │ │ │ │ │ ├── paint-brush.svg │ │ │ │ │ │ ├── paint-roller.svg │ │ │ │ │ │ ├── palette.svg │ │ │ │ │ │ ├── pallet.svg │ │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ │ ├── paperclip.svg │ │ │ │ │ │ ├── parachute-box.svg │ │ │ │ │ │ ├── paragraph.svg │ │ │ │ │ │ ├── parking.svg │ │ │ │ │ │ ├── passport.svg │ │ │ │ │ │ ├── pastafarianism.svg │ │ │ │ │ │ ├── paste.svg │ │ │ │ │ │ ├── pause-circle.svg │ │ │ │ │ │ ├── pause.svg │ │ │ │ │ │ ├── paw.svg │ │ │ │ │ │ ├── peace.svg │ │ │ │ │ │ ├── pen-alt.svg │ │ │ │ │ │ ├── pen-fancy.svg │ │ │ │ │ │ ├── pen-nib.svg │ │ │ │ │ │ ├── pen-square.svg │ │ │ │ │ │ ├── pen.svg │ │ │ │ │ │ ├── pencil-alt.svg │ │ │ │ │ │ ├── pencil-ruler.svg │ │ │ │ │ │ ├── people-arrows.svg │ │ │ │ │ │ ├── people-carry.svg │ │ │ │ │ │ ├── pepper-hot.svg │ │ │ │ │ │ ├── percent.svg │ │ │ │ │ │ ├── percentage.svg │ │ │ │ │ │ ├── person-booth.svg │ │ │ │ │ │ ├── phone-alt.svg │ │ │ │ │ │ ├── phone-slash.svg │ │ │ │ │ │ ├── phone-square-alt.svg │ │ │ │ │ │ ├── phone-square.svg │ │ │ │ │ │ ├── phone-volume.svg │ │ │ │ │ │ ├── phone.svg │ │ │ │ │ │ ├── photo-video.svg │ │ │ │ │ │ ├── piggy-bank.svg │ │ │ │ │ │ ├── pills.svg │ │ │ │ │ │ ├── pizza-slice.svg │ │ │ │ │ │ ├── place-of-worship.svg │ │ │ │ │ │ ├── plane-arrival.svg │ │ │ │ │ │ ├── plane-departure.svg │ │ │ │ │ │ ├── plane-slash.svg │ │ │ │ │ │ ├── plane.svg │ │ │ │ │ │ ├── play-circle.svg │ │ │ │ │ │ ├── play.svg │ │ │ │ │ │ ├── plug.svg │ │ │ │ │ │ ├── plus-circle.svg │ │ │ │ │ │ ├── plus-square.svg │ │ │ │ │ │ ├── plus.svg │ │ │ │ │ │ ├── podcast.svg │ │ │ │ │ │ ├── poll-h.svg │ │ │ │ │ │ ├── poll.svg │ │ │ │ │ │ ├── poo-storm.svg │ │ │ │ │ │ ├── poo.svg │ │ │ │ │ │ ├── poop.svg │ │ │ │ │ │ ├── portrait.svg │ │ │ │ │ │ ├── pound-sign.svg │ │ │ │ │ │ ├── power-off.svg │ │ │ │ │ │ ├── pray.svg │ │ │ │ │ │ ├── praying-hands.svg │ │ │ │ │ │ ├── prescription-bottle-alt.svg │ │ │ │ │ │ ├── prescription-bottle.svg │ │ │ │ │ │ ├── prescription.svg │ │ │ │ │ │ ├── print.svg │ │ │ │ │ │ ├── procedures.svg │ │ │ │ │ │ ├── project-diagram.svg │ │ │ │ │ │ ├── pump-medical.svg │ │ │ │ │ │ ├── pump-soap.svg │ │ │ │ │ │ ├── puzzle-piece.svg │ │ │ │ │ │ ├── qrcode.svg │ │ │ │ │ │ ├── question-circle.svg │ │ │ │ │ │ ├── question.svg │ │ │ │ │ │ ├── quidditch.svg │ │ │ │ │ │ ├── quote-left.svg │ │ │ │ │ │ ├── quote-right.svg │ │ │ │ │ │ ├── quran.svg │ │ │ │ │ │ ├── radiation-alt.svg │ │ │ │ │ │ ├── radiation.svg │ │ │ │ │ │ ├── rainbow.svg │ │ │ │ │ │ ├── random.svg │ │ │ │ │ │ ├── receipt.svg │ │ │ │ │ │ ├── record-vinyl.svg │ │ │ │ │ │ ├── recycle.svg │ │ │ │ │ │ ├── redo-alt.svg │ │ │ │ │ │ ├── redo.svg │ │ │ │ │ │ ├── registered.svg │ │ │ │ │ │ ├── remove-format.svg │ │ │ │ │ │ ├── reply-all.svg │ │ │ │ │ │ ├── reply.svg │ │ │ │ │ │ ├── republican.svg │ │ │ │ │ │ ├── restroom.svg │ │ │ │ │ │ ├── retweet.svg │ │ │ │ │ │ ├── ribbon.svg │ │ │ │ │ │ ├── ring.svg │ │ │ │ │ │ ├── road.svg │ │ │ │ │ │ ├── robot.svg │ │ │ │ │ │ ├── rocket.svg │ │ │ │ │ │ ├── route.svg │ │ │ │ │ │ ├── rss-square.svg │ │ │ │ │ │ ├── rss.svg │ │ │ │ │ │ ├── ruble-sign.svg │ │ │ │ │ │ ├── ruler-combined.svg │ │ │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ │ │ ├── ruler-vertical.svg │ │ │ │ │ │ ├── ruler.svg │ │ │ │ │ │ ├── running.svg │ │ │ │ │ │ ├── rupee-sign.svg │ │ │ │ │ │ ├── sad-cry.svg │ │ │ │ │ │ ├── sad-tear.svg │ │ │ │ │ │ ├── satellite-dish.svg │ │ │ │ │ │ ├── satellite.svg │ │ │ │ │ │ ├── save.svg │ │ │ │ │ │ ├── school.svg │ │ │ │ │ │ ├── screwdriver.svg │ │ │ │ │ │ ├── scroll.svg │ │ │ │ │ │ ├── sd-card.svg │ │ │ │ │ │ ├── search-dollar.svg │ │ │ │ │ │ ├── search-location.svg │ │ │ │ │ │ ├── search-minus.svg │ │ │ │ │ │ ├── search-plus.svg │ │ │ │ │ │ ├── search.svg │ │ │ │ │ │ ├── seedling.svg │ │ │ │ │ │ ├── server.svg │ │ │ │ │ │ ├── shapes.svg │ │ │ │ │ │ ├── share-alt-square.svg │ │ │ │ │ │ ├── share-alt.svg │ │ │ │ │ │ ├── share-square.svg │ │ │ │ │ │ ├── share.svg │ │ │ │ │ │ ├── shekel-sign.svg │ │ │ │ │ │ ├── shield-alt.svg │ │ │ │ │ │ ├── shield-virus.svg │ │ │ │ │ │ ├── ship.svg │ │ │ │ │ │ ├── shipping-fast.svg │ │ │ │ │ │ ├── shoe-prints.svg │ │ │ │ │ │ ├── shopping-bag.svg │ │ │ │ │ │ ├── shopping-basket.svg │ │ │ │ │ │ ├── shopping-cart.svg │ │ │ │ │ │ ├── shower.svg │ │ │ │ │ │ ├── shuttle-van.svg │ │ │ │ │ │ ├── sign-in-alt.svg │ │ │ │ │ │ ├── sign-language.svg │ │ │ │ │ │ ├── sign-out-alt.svg │ │ │ │ │ │ ├── sign.svg │ │ │ │ │ │ ├── signal.svg │ │ │ │ │ │ ├── signature.svg │ │ │ │ │ │ ├── sim-card.svg │ │ │ │ │ │ ├── sitemap.svg │ │ │ │ │ │ ├── skating.svg │ │ │ │ │ │ ├── skiing-nordic.svg │ │ │ │ │ │ ├── skiing.svg │ │ │ │ │ │ ├── skull-crossbones.svg │ │ │ │ │ │ ├── skull.svg │ │ │ │ │ │ ├── slash.svg │ │ │ │ │ │ ├── sleigh.svg │ │ │ │ │ │ ├── sliders-h.svg │ │ │ │ │ │ ├── smile-beam.svg │ │ │ │ │ │ ├── smile-wink.svg │ │ │ │ │ │ ├── smile.svg │ │ │ │ │ │ ├── smog.svg │ │ │ │ │ │ ├── smoking-ban.svg │ │ │ │ │ │ ├── smoking.svg │ │ │ │ │ │ ├── sms.svg │ │ │ │ │ │ ├── snowboarding.svg │ │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ │ ├── snowman.svg │ │ │ │ │ │ ├── snowplow.svg │ │ │ │ │ │ ├── soap.svg │ │ │ │ │ │ ├── socks.svg │ │ │ │ │ │ ├── solar-panel.svg │ │ │ │ │ │ ├── sort-alpha-down-alt.svg │ │ │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ │ │ ├── sort-alpha-up-alt.svg │ │ │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ │ │ ├── sort-amount-down-alt.svg │ │ │ │ │ │ ├── sort-amount-down.svg │ │ │ │ │ │ ├── sort-amount-up-alt.svg │ │ │ │ │ │ ├── sort-amount-up.svg │ │ │ │ │ │ ├── sort-down.svg │ │ │ │ │ │ ├── sort-numeric-down-alt.svg │ │ │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ │ │ ├── sort-numeric-up-alt.svg │ │ │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ │ │ ├── sort-up.svg │ │ │ │ │ │ ├── sort.svg │ │ │ │ │ │ ├── spa.svg │ │ │ │ │ │ ├── space-shuttle.svg │ │ │ │ │ │ ├── spell-check.svg │ │ │ │ │ │ ├── spider.svg │ │ │ │ │ │ ├── spinner.svg │ │ │ │ │ │ ├── splotch.svg │ │ │ │ │ │ ├── spray-can.svg │ │ │ │ │ │ ├── square-full.svg │ │ │ │ │ │ ├── square-root-alt.svg │ │ │ │ │ │ ├── square.svg │ │ │ │ │ │ ├── stamp.svg │ │ │ │ │ │ ├── star-and-crescent.svg │ │ │ │ │ │ ├── star-half-alt.svg │ │ │ │ │ │ ├── star-half.svg │ │ │ │ │ │ ├── star-of-david.svg │ │ │ │ │ │ ├── star-of-life.svg │ │ │ │ │ │ ├── star.svg │ │ │ │ │ │ ├── step-backward.svg │ │ │ │ │ │ ├── step-forward.svg │ │ │ │ │ │ ├── stethoscope.svg │ │ │ │ │ │ ├── sticky-note.svg │ │ │ │ │ │ ├── stop-circle.svg │ │ │ │ │ │ ├── stop.svg │ │ │ │ │ │ ├── stopwatch-20.svg │ │ │ │ │ │ ├── stopwatch.svg │ │ │ │ │ │ ├── store-alt-slash.svg │ │ │ │ │ │ ├── store-alt.svg │ │ │ │ │ │ ├── store-slash.svg │ │ │ │ │ │ ├── store.svg │ │ │ │ │ │ ├── stream.svg │ │ │ │ │ │ ├── street-view.svg │ │ │ │ │ │ ├── strikethrough.svg │ │ │ │ │ │ ├── stroopwafel.svg │ │ │ │ │ │ ├── subscript.svg │ │ │ │ │ │ ├── subway.svg │ │ │ │ │ │ ├── suitcase-rolling.svg │ │ │ │ │ │ ├── suitcase.svg │ │ │ │ │ │ ├── sun.svg │ │ │ │ │ │ ├── superscript.svg │ │ │ │ │ │ ├── surprise.svg │ │ │ │ │ │ ├── swatchbook.svg │ │ │ │ │ │ ├── swimmer.svg │ │ │ │ │ │ ├── swimming-pool.svg │ │ │ │ │ │ ├── synagogue.svg │ │ │ │ │ │ ├── sync-alt.svg │ │ │ │ │ │ ├── sync.svg │ │ │ │ │ │ ├── syringe.svg │ │ │ │ │ │ ├── table-tennis.svg │ │ │ │ │ │ ├── table.svg │ │ │ │ │ │ ├── tablet-alt.svg │ │ │ │ │ │ ├── tablet.svg │ │ │ │ │ │ ├── tablets.svg │ │ │ │ │ │ ├── tachometer-alt.svg │ │ │ │ │ │ ├── tag.svg │ │ │ │ │ │ ├── tags.svg │ │ │ │ │ │ ├── tape.svg │ │ │ │ │ │ ├── tasks.svg │ │ │ │ │ │ ├── taxi.svg │ │ │ │ │ │ ├── teeth-open.svg │ │ │ │ │ │ ├── teeth.svg │ │ │ │ │ │ ├── temperature-high.svg │ │ │ │ │ │ ├── temperature-low.svg │ │ │ │ │ │ ├── tenge.svg │ │ │ │ │ │ ├── terminal.svg │ │ │ │ │ │ ├── text-height.svg │ │ │ │ │ │ ├── text-width.svg │ │ │ │ │ │ ├── th-large.svg │ │ │ │ │ │ ├── th-list.svg │ │ │ │ │ │ ├── th.svg │ │ │ │ │ │ ├── theater-masks.svg │ │ │ │ │ │ ├── thermometer-empty.svg │ │ │ │ │ │ ├── thermometer-full.svg │ │ │ │ │ │ ├── thermometer-half.svg │ │ │ │ │ │ ├── thermometer-quarter.svg │ │ │ │ │ │ ├── thermometer-three-quarters.svg │ │ │ │ │ │ ├── thermometer.svg │ │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ │ ├── thumbtack.svg │ │ │ │ │ │ ├── ticket-alt.svg │ │ │ │ │ │ ├── times-circle.svg │ │ │ │ │ │ ├── times.svg │ │ │ │ │ │ ├── tint-slash.svg │ │ │ │ │ │ ├── tint.svg │ │ │ │ │ │ ├── tired.svg │ │ │ │ │ │ ├── toggle-off.svg │ │ │ │ │ │ ├── toggle-on.svg │ │ │ │ │ │ ├── toilet-paper-slash.svg │ │ │ │ │ │ ├── toilet-paper.svg │ │ │ │ │ │ ├── toilet.svg │ │ │ │ │ │ ├── toolbox.svg │ │ │ │ │ │ ├── tools.svg │ │ │ │ │ │ ├── tooth.svg │ │ │ │ │ │ ├── torah.svg │ │ │ │ │ │ ├── torii-gate.svg │ │ │ │ │ │ ├── tractor.svg │ │ │ │ │ │ ├── trademark.svg │ │ │ │ │ │ ├── traffic-light.svg │ │ │ │ │ │ ├── trailer.svg │ │ │ │ │ │ ├── train.svg │ │ │ │ │ │ ├── tram.svg │ │ │ │ │ │ ├── transgender-alt.svg │ │ │ │ │ │ ├── transgender.svg │ │ │ │ │ │ ├── trash-alt.svg │ │ │ │ │ │ ├── trash-restore-alt.svg │ │ │ │ │ │ ├── trash-restore.svg │ │ │ │ │ │ ├── trash.svg │ │ │ │ │ │ ├── tree.svg │ │ │ │ │ │ ├── trophy.svg │ │ │ │ │ │ ├── truck-loading.svg │ │ │ │ │ │ ├── truck-monster.svg │ │ │ │ │ │ ├── truck-moving.svg │ │ │ │ │ │ ├── truck-pickup.svg │ │ │ │ │ │ ├── truck.svg │ │ │ │ │ │ ├── tshirt.svg │ │ │ │ │ │ ├── tty.svg │ │ │ │ │ │ ├── tv.svg │ │ │ │ │ │ ├── umbrella-beach.svg │ │ │ │ │ │ ├── umbrella.svg │ │ │ │ │ │ ├── underline.svg │ │ │ │ │ │ ├── undo-alt.svg │ │ │ │ │ │ ├── undo.svg │ │ │ │ │ │ ├── universal-access.svg │ │ │ │ │ │ ├── university.svg │ │ │ │ │ │ ├── unlink.svg │ │ │ │ │ │ ├── unlock-alt.svg │ │ │ │ │ │ ├── unlock.svg │ │ │ │ │ │ ├── upload.svg │ │ │ │ │ │ ├── user-alt-slash.svg │ │ │ │ │ │ ├── user-alt.svg │ │ │ │ │ │ ├── user-astronaut.svg │ │ │ │ │ │ ├── user-check.svg │ │ │ │ │ │ ├── user-circle.svg │ │ │ │ │ │ ├── user-clock.svg │ │ │ │ │ │ ├── user-cog.svg │ │ │ │ │ │ ├── user-edit.svg │ │ │ │ │ │ ├── user-friends.svg │ │ │ │ │ │ ├── user-graduate.svg │ │ │ │ │ │ ├── user-injured.svg │ │ │ │ │ │ ├── user-lock.svg │ │ │ │ │ │ ├── user-md.svg │ │ │ │ │ │ ├── user-minus.svg │ │ │ │ │ │ ├── user-ninja.svg │ │ │ │ │ │ ├── user-nurse.svg │ │ │ │ │ │ ├── user-plus.svg │ │ │ │ │ │ ├── user-secret.svg │ │ │ │ │ │ ├── user-shield.svg │ │ │ │ │ │ ├── user-slash.svg │ │ │ │ │ │ ├── user-tag.svg │ │ │ │ │ │ ├── user-tie.svg │ │ │ │ │ │ ├── user-times.svg │ │ │ │ │ │ ├── user.svg │ │ │ │ │ │ ├── users-cog.svg │ │ │ │ │ │ ├── users.svg │ │ │ │ │ │ ├── utensil-spoon.svg │ │ │ │ │ │ ├── utensils.svg │ │ │ │ │ │ ├── vector-square.svg │ │ │ │ │ │ ├── venus-double.svg │ │ │ │ │ │ ├── venus-mars.svg │ │ │ │ │ │ ├── venus.svg │ │ │ │ │ │ ├── vial.svg │ │ │ │ │ │ ├── vials.svg │ │ │ │ │ │ ├── video-slash.svg │ │ │ │ │ │ ├── video.svg │ │ │ │ │ │ ├── vihara.svg │ │ │ │ │ │ ├── virus-slash.svg │ │ │ │ │ │ ├── virus.svg │ │ │ │ │ │ ├── viruses.svg │ │ │ │ │ │ ├── voicemail.svg │ │ │ │ │ │ ├── volleyball-ball.svg │ │ │ │ │ │ ├── volume-down.svg │ │ │ │ │ │ ├── volume-mute.svg │ │ │ │ │ │ ├── volume-off.svg │ │ │ │ │ │ ├── volume-up.svg │ │ │ │ │ │ ├── vote-yea.svg │ │ │ │ │ │ ├── vr-cardboard.svg │ │ │ │ │ │ ├── walking.svg │ │ │ │ │ │ ├── wallet.svg │ │ │ │ │ │ ├── warehouse.svg │ │ │ │ │ │ ├── water.svg │ │ │ │ │ │ ├── wave-square.svg │ │ │ │ │ │ ├── weight-hanging.svg │ │ │ │ │ │ ├── weight.svg │ │ │ │ │ │ ├── wheelchair.svg │ │ │ │ │ │ ├── wifi.svg │ │ │ │ │ │ ├── wind.svg │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ │ ├── window-restore.svg │ │ │ │ │ │ ├── wine-bottle.svg │ │ │ │ │ │ ├── wine-glass-alt.svg │ │ │ │ │ │ ├── wine-glass.svg │ │ │ │ │ │ ├── won-sign.svg │ │ │ │ │ │ ├── wrench.svg │ │ │ │ │ │ ├── x-ray.svg │ │ │ │ │ │ ├── yen-sign.svg │ │ │ │ │ │ └── yin-yang.svg │ │ │ │ └── webfonts │ │ │ │ │ ├── fa-brands-400.eot │ │ │ │ │ ├── fa-brands-400.svg │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ ├── fa-brands-400.woff │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ ├── fa-regular-400.eot │ │ │ │ │ ├── fa-regular-400.svg │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ ├── fa-regular-400.woff │ │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ │ ├── fa-solid-900.eot │ │ │ │ │ ├── fa-solid-900.svg │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ ├── fa-solid-900.woff │ │ │ │ │ └── fa-solid-900.woff2 │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── scripts │ │ │ ├── _references.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── command.js │ │ │ ├── jquery-1.10.2.intellisense.js │ │ │ ├── jquery-1.10.2.js │ │ │ ├── jquery-1.10.2.min.js │ │ │ ├── jquery-1.10.2.min.map │ │ │ ├── jquery.validate-vsdoc.js │ │ │ ├── jquery.validate.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ ├── jquery.validate.unobtrusive.min.js │ │ │ ├── modernizr-2.6.2.js │ │ │ ├── mustach.js │ │ │ ├── respond.js │ │ │ └── respond.min.js │ ├── templates │ │ ├── about.html │ │ ├── contact.html │ │ ├── index.html │ │ └── layout.html │ └── views.py │ ├── README.md │ ├── docker-compose-production.yml │ ├── docker-compose.yml │ ├── dockerfile │ ├── requirements.txt │ └── runserver.py ├── lab_contribution_guidelines.md └── tiny-ml └── audio-classifier ├── README.md ├── code ├── audio-capture │ ├── .gitignore │ ├── .vscode │ │ └── extensions.json │ ├── README.md │ ├── include │ │ └── README │ ├── platformio.ini │ ├── src │ │ ├── main.cpp │ │ └── sample_capture.h │ └── test │ │ └── README ├── audio-classifier │ ├── .gitignore │ ├── .vscode │ │ └── extensions.json │ ├── README.md │ ├── include │ │ └── README │ ├── platformio.ini │ ├── src │ │ ├── classifier.h │ │ ├── main.cpp │ │ └── sample_capture.h │ └── test │ │ └── README └── model-trainer │ ├── .gitignore │ ├── .vscode │ └── extensions.json │ ├── README.md │ ├── requirements.txt │ └── train_classifier.py ├── images └── vscode-platformio-new-capture-project.png └── steps ├── audio-capture.md ├── audio-classifier.md └── train-model.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-CODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/LICENSE-CODE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azure-subscription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/azure-subscription.md -------------------------------------------------------------------------------- /cart/Manifest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/cart/Manifest.md -------------------------------------------------------------------------------- /cart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/cart/README.md -------------------------------------------------------------------------------- /cart/images/ai-hardware.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/cart/images/ai-hardware.jpeg -------------------------------------------------------------------------------- /cart/images/cart-contents-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/cart/images/cart-contents-1.jpg -------------------------------------------------------------------------------- /cart/images/iot-hardware.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/cart/images/iot-hardware.jpeg -------------------------------------------------------------------------------- /devices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/devices/README.md -------------------------------------------------------------------------------- /devices/arduino.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/devices/arduino.md -------------------------------------------------------------------------------- /devices/azure_sphere.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/devices/azure_sphere.md -------------------------------------------------------------------------------- /devices/configure-jupyter-notebooks-raspberry-pi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/devices/configure-jupyter-notebooks-raspberry-pi.md -------------------------------------------------------------------------------- /devices/esp_eye.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/devices/esp_eye.md -------------------------------------------------------------------------------- /devices/images/azure-sphere-end-to-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/devices/images/azure-sphere-end-to-end.png -------------------------------------------------------------------------------- /devices/jetson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/devices/jetson.md -------------------------------------------------------------------------------- /devices/kinect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/devices/kinect.md -------------------------------------------------------------------------------- /devices/mxchip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/devices/mxchip.md -------------------------------------------------------------------------------- /devices/raspberry_pi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/devices/raspberry_pi.md -------------------------------------------------------------------------------- /devices/stm_discovery_kit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/devices/stm_discovery_kit.md -------------------------------------------------------------------------------- /educator-guides/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/educator-guides/README.md -------------------------------------------------------------------------------- /educator-guides/RecommendedLearningModel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/educator-guides/RecommendedLearningModel.md -------------------------------------------------------------------------------- /educator-guides/course-outlines/electricity-demand-forecasting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/educator-guides/course-outlines/electricity-demand-forecasting.md -------------------------------------------------------------------------------- /educator-guides/course-outlines/intro-to-iot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/educator-guides/course-outlines/intro-to-iot.md -------------------------------------------------------------------------------- /educator-guides/lab-guides/virtual-iot-lab/code/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/educator-guides/lab-guides/virtual-iot-lab/code/client/CMakeLists.txt -------------------------------------------------------------------------------- /educator-guides/lab-guides/virtual-iot-lab/code/client/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/educator-guides/lab-guides/virtual-iot-lab/code/client/build.sh -------------------------------------------------------------------------------- /educator-guides/lab-guides/virtual-iot-lab/code/client/ssh-proxy-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/educator-guides/lab-guides/virtual-iot-lab/code/client/ssh-proxy-client.c -------------------------------------------------------------------------------- /educator-guides/lab-guides/virtual-iot-lab/code/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/educator-guides/lab-guides/virtual-iot-lab/code/server/package-lock.json -------------------------------------------------------------------------------- /educator-guides/lab-guides/virtual-iot-lab/code/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/educator-guides/lab-guides/virtual-iot-lab/code/server/package.json -------------------------------------------------------------------------------- /educator-guides/lab-guides/virtual-iot-lab/code/server/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/educator-guides/lab-guides/virtual-iot-lab/code/server/proxy.js -------------------------------------------------------------------------------- /educator-guides/lab-guides/virtual-iot-lab/iot-hub-ssh-virtual-lab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/educator-guides/lab-guides/virtual-iot-lab/iot-hub-ssh-virtual-lab.md -------------------------------------------------------------------------------- /labs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/README.md -------------------------------------------------------------------------------- /labs/ai-edge/speech/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/speech/README.md -------------------------------------------------------------------------------- /labs/ai-edge/speech/speech-to-text.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/speech/speech-to-text.ipynb -------------------------------------------------------------------------------- /labs/ai-edge/speech/speech-translation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/speech/speech-translation.ipynb -------------------------------------------------------------------------------- /labs/ai-edge/speech/text-to-speech.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/speech/text-to-speech.ipynb -------------------------------------------------------------------------------- /labs/ai-edge/vision/manufacturing-part-check/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/vision/manufacturing-part-check/README.md -------------------------------------------------------------------------------- /labs/ai-edge/vision/manufacturing-part-check/code/custom-vision/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/vision/manufacturing-part-check/code/custom-vision/.gitignore -------------------------------------------------------------------------------- /labs/ai-edge/vision/manufacturing-part-check/code/image-capture/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/vision/manufacturing-part-check/code/image-capture/.gitignore -------------------------------------------------------------------------------- /labs/ai-edge/vision/manufacturing-part-check/code/pi-control/pi/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/vision/manufacturing-part-check/code/pi-control/pi/app.py -------------------------------------------------------------------------------- /labs/ai-edge/vision/manufacturing-part-check/images/final-setup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/vision/manufacturing-part-check/images/final-setup.jpg -------------------------------------------------------------------------------- /labs/ai-edge/vision/manufacturing-part-check/images/grove-hat-on-pi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/vision/manufacturing-part-check/images/grove-hat-on-pi.png -------------------------------------------------------------------------------- /labs/ai-edge/vision/manufacturing-part-check/images/iot-hub-basics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/vision/manufacturing-part-check/images/iot-hub-basics.png -------------------------------------------------------------------------------- /labs/ai-edge/vision/manufacturing-part-check/images/minifig-broken.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/vision/manufacturing-part-check/images/minifig-broken.jpg -------------------------------------------------------------------------------- /labs/ai-edge/vision/manufacturing-part-check/images/minifig-whole.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/vision/manufacturing-part-check/images/minifig-whole.jpg -------------------------------------------------------------------------------- /labs/ai-edge/vision/manufacturing-part-check/images/stormtrooper-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/vision/manufacturing-part-check/images/stormtrooper-1.jpg -------------------------------------------------------------------------------- /labs/ai-edge/vision/manufacturing-part-check/images/stormtrooper-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/vision/manufacturing-part-check/images/stormtrooper-2.jpg -------------------------------------------------------------------------------- /labs/ai-edge/vision/manufacturing-part-check/steps/classify-esp-eye.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/vision/manufacturing-part-check/steps/classify-esp-eye.md -------------------------------------------------------------------------------- /labs/ai-edge/vision/manufacturing-part-check/steps/clean-up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/vision/manufacturing-part-check/steps/clean-up.md -------------------------------------------------------------------------------- /labs/ai-edge/vision/manufacturing-part-check/steps/edge-classifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/vision/manufacturing-part-check/steps/edge-classifier.md -------------------------------------------------------------------------------- /labs/ai-edge/vision/manufacturing-part-check/steps/hello-world-esp-eye.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/vision/manufacturing-part-check/steps/hello-world-esp-eye.md -------------------------------------------------------------------------------- /labs/ai-edge/vision/manufacturing-part-check/steps/image-capture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/vision/manufacturing-part-check/steps/image-capture.md -------------------------------------------------------------------------------- /labs/ai-edge/vision/manufacturing-part-check/steps/iot-hub-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/vision/manufacturing-part-check/steps/iot-hub-control.md -------------------------------------------------------------------------------- /labs/ai-edge/vision/manufacturing-part-check/steps/pi-button-led.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/vision/manufacturing-part-check/steps/pi-button-led.md -------------------------------------------------------------------------------- /labs/ai-edge/vision/manufacturing-part-check/steps/store-and-visualize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/vision/manufacturing-part-check/steps/store-and-visualize.md -------------------------------------------------------------------------------- /labs/ai-edge/vision/manufacturing-part-check/steps/upload-iot-hub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/vision/manufacturing-part-check/steps/upload-iot-hub.md -------------------------------------------------------------------------------- /labs/ai-edge/vision/ocr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/vision/ocr/README.md -------------------------------------------------------------------------------- /labs/ai-edge/vision/ocr/code/ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/vision/ocr/code/ocr.py -------------------------------------------------------------------------------- /labs/ai-edge/vision/ocr/images/camera-capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/ai-edge/vision/ocr/images/camera-capture.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Code/Functions/.funcignore: -------------------------------------------------------------------------------- 1 | .git* 2 | .vscode 3 | local.settings.json 4 | test 5 | .venv -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Code/Functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Code/Functions/.gitignore -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Code/Functions/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Code/Functions/.vscode/launch.json -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Code/Functions/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Code/Functions/.vscode/tasks.json -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Code/Functions/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Code/Functions/host.json -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Code/Functions/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Code/Functions/proxies.json -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Code/Functions/requirements.txt: -------------------------------------------------------------------------------- 1 | azure-functions 2 | requests -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Code/Pi/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Code/Pi/app.py -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Code/Pi/requirements.txt: -------------------------------------------------------------------------------- 1 | python-dotenv 2 | azure-iot-device 3 | RPi.bme280 4 | grove.py -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/AddCloudProperty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/AddCloudProperty.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/AddContainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/AddContainer.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/AddInterface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/AddInterface.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/AddNewSSHHost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/AddNewSSHHost.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/AddStreamAnalyticsInputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/AddStreamAnalyticsInputs.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/AddWebhook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/AddWebhook.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/AdministrationButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/AdministrationButton.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/ApiTokensButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/ApiTokensButton.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/AppOutput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/AppOutput.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/AzureCreateResource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/AzureCreateResource.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/AzureMapsDetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/AzureMapsDetails.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/AzureMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/AzureMenu.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/BME280.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/BME280.jpg -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/BaseHat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/BaseHat.jpg -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/BingMapsShareButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/BingMapsShareButton.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/BlobContainersOption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/BlobContainersOption.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/BmePin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/BmePin.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/BrowseBlobContainers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/BrowseBlobContainers.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/Cables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/Cables.jpg -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/ChartSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/ChartSettings.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/ChartSize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/ChartSize.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/ChartType.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/ChartType.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/CloudPropertiesMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/CloudPropertiesMenu.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/CloudProperty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/CloudProperty.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/CodeUploadSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/CodeUploadSettings.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/Command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/Command.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/ConfigureDataExport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/ConfigureDataExport.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/ConfigureInput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/ConfigureInput.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/ConfigureOutput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/ConfigureOutput.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/ConfigureWebhook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/ConfigureWebhook.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/ConfirmDeploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/ConfirmDeploy.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/ConnectButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/ConnectButton.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/CreateAppInsights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/CreateAppInsights.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/CreateAzureMapsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/CreateAzureMapsButton.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/CreateEventHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/CreateEventHub.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/CreateEventHubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/CreateEventHubs.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/CreateEventHubsNamespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/CreateEventHubsNamespace.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/CreateFunctionApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/CreateFunctionApp.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/CreateFunctionsProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/CreateFunctionsProject.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/CreateResourceGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/CreateResourceGroup.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/CreateStorageButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/CreateStorageButton.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/CreateStreamAnalyticsJob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/CreateStreamAnalyticsJob.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/CustomInterface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/CustomInterface.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/DashboardWaitingForData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/DashboardWaitingForData.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/DataExportMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/DataExportMenu.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/DebugMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/DebugMenu.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/DebugRunButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/DebugRunButton.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/DeployFunctionApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/DeployFunctionApp.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/DeviceConnectionDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/DeviceConnectionDialog.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/DeviceList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/DeviceList.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/DeviceTemplatesMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/DeviceTemplatesMenu.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/DevicesMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/DevicesMenu.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/DownloadBlob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/DownloadBlob.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/EnterSSHHost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/EnterSSHHost.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/FunctionAuthLevel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/FunctionAuthLevel.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/FunctionCalls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/FunctionCalls.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/FunctionChooseFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/FunctionChooseFolder.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/FunctionInBrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/FunctionInBrowser.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/FunctionLanguageSelect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/FunctionLanguageSelect.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/FunctionName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/FunctionName.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/FunctionsExtension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/FunctionsExtension.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/FunctionsListInCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/FunctionsListInCode.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/GenerateToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/GenerateToken.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/GenerateTokenButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/GenerateTokenButton.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/GeneratedToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/GeneratedToken.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/Grove-White-LED-p-2016.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/Grove-White-LED-p-2016.jpeg -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/HostAddedDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/HostAddedDialog.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/InterfaceMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/InterfaceMenu.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/InterfaceName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/InterfaceName.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/IoTCentralRulesMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/IoTCentralRulesMenu.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/KillTerminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/KillTerminal.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/LaunchVirtualEnv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/LaunchVirtualEnv.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/MapsKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/MapsKey.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/MessagesComingToEventHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/MessagesComingToEventHub.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/MoisturePin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/MoisturePin.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/MonitorMenuOption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/MonitorMenuOption.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/NameAppPy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/NameAppPy.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/NameFunctionApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/NameFunctionApp.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/NameView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/NameView.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/NewBlobExport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/NewBlobExport.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/NewContainerDetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/NewContainerDetails.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/NewDevice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/NewDevice.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/NewDeviceTemplateButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/NewDeviceTemplateButton.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/NewEventHubExport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/NewEventHubExport.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/NewFileButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/NewFileButton.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/NewRule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/NewRule.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/OpenFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/OpenFolder.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/PiWithHat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/PiWithHat.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/PostmanBody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/PostmanBody.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/PostmanHeaders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/PostmanHeaders.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/PostmanURL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/PostmanURL.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/PostmanWeatherQuery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/PostmanWeatherQuery.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/Properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/Properties.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/PublishButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/PublishButton.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/PublishTemplateDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/PublishTemplateDialog.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/PythonExtension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/PythonExtension.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/PythonExtensionLocal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/PythonExtensionLocal.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/PythonInstaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/PythonInstaller.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/PythonReloadRequired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/PythonReloadRequired.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/PythonSelectInterpreter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/PythonSelectInterpreter.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/RaspiConfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/RaspiConfig.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/RaspiConfigEnableI2C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/RaspiConfigEnableI2C.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/RaspiConfigFinish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/RaspiConfigFinish.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/RaspiConfigI2CEnabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/RaspiConfigI2CEnabled.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/RuleTelemetry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/RuleTelemetry.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SSHPassword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SSHPassword.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SaveCloudProperty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SaveCloudProperty.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SaveFunctionQuery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SaveFunctionQuery.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SaveInterface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SaveInterface.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SaveQuery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SaveQuery.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SaveRuleButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SaveRuleButton.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SaveView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SaveView.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SearchAzureMaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SearchAzureMaps.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SearchEventHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SearchEventHub.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SearchEventHubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SearchEventHubs.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SearchForFunctionApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SearchForFunctionApp.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SearchForResourceGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SearchForResourceGroup.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SearchForStorageAccount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SearchForStorageAccount.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SearchStorageAccount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SearchStorageAccount.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SearchStreamAnalytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SearchStreamAnalytics.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SelectCapabilityModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SelectCapabilityModel.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SelectConsumptionPlan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SelectConsumptionPlan.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SelectEMDeviceTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SelectEMDeviceTemplate.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SelectEMFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SelectEMFolder.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SelectFuncAppStorage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SelectFuncAppStorage.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SelectFunctionOs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SelectFunctionOs.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SelectFunctionTrigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SelectFunctionTrigger.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SelectIoTDeviceType.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SelectIoTDeviceType.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SelectPythonVersion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SelectPythonVersion.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SelectViewType.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SelectViewType.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SetDeviceId.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SetDeviceId.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SetPythonRuntime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SetPythonRuntime.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SettingsUploadOutput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SettingsUploadOutput.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/SkipAppInsights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/SkipAppInsights.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/StartStreamAnalytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/StartStreamAnalytics.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/StartStreamAnalyticsNow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/StartStreamAnalyticsNow.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/StopDebuggingButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/StopDebuggingButton.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/StorageDetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/StorageDetails.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/StorageExplorerMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/StorageExplorerMenu.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/StreamAnalyticsInputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/StreamAnalyticsInputs.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/StreamAnalyticsOutputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/StreamAnalyticsOutputs.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/StreamAnalyticsOverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/StreamAnalyticsOverview.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/StreamAnalyticsQuery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/StreamAnalyticsQuery.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/TelemetryValues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/TelemetryValues.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/TestFunctionQuery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/TestFunctionQuery.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/TestQuery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/TestQuery.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/TriggerRunningOutput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/TriggerRunningOutput.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/VSConnectToHost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/VSConnectToHost.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/View.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/ViewIdentityButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/ViewIdentityButton.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/ViewWithData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/ViewWithData.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/moisture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/moisture.jpg -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/mxchip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/mxchip.jpg -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/pi4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/pi4.jpg -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Images/views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Images/views.png -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/README.md -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Steps/CheckWeatherWithAzureMaps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Steps/CheckWeatherWithAzureMaps.md -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Steps/CleanUp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Steps/CleanUp.md -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Steps/CreateBlobStorage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Steps/CreateBlobStorage.md -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Steps/CreateFunction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Steps/CreateFunction.md -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Steps/CreateTheAppInIoTCentral.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Steps/CreateTheAppInIoTCentral.md -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Steps/ExecuteIoTCommand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Steps/ExecuteIoTCommand.md -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Steps/ExportDataToBlobStorage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Steps/ExportDataToBlobStorage.md -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Steps/ExportDataToEventHubs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Steps/ExportDataToEventHubs.md -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Steps/SetUpTheEnvironmentMonitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Steps/SetUpTheEnvironmentMonitor.md -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Steps/Summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Steps/Summary.md -------------------------------------------------------------------------------- /labs/digital-agriculture/plant-monitor/Steps/WriteThePiCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/digital-agriculture/plant-monitor/Steps/WriteThePiCode.md -------------------------------------------------------------------------------- /labs/images/arduino-setup-loop-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/arduino-setup-loop-flow.png -------------------------------------------------------------------------------- /labs/images/azure-portal-cloud-shell-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/azure-portal-cloud-shell-button.png -------------------------------------------------------------------------------- /labs/images/azure-portal-cloud-shell-create-storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/azure-portal-cloud-shell-create-storage.png -------------------------------------------------------------------------------- /labs/images/cosmos-db-data-explorer-upload-notebook-menu-option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/cosmos-db-data-explorer-upload-notebook-menu-option.png -------------------------------------------------------------------------------- /labs/images/custom-vision-iteration-export-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/custom-vision-iteration-export-button.png -------------------------------------------------------------------------------- /labs/images/custom-vision-iteration-export-docker-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/custom-vision-iteration-export-docker-button.png -------------------------------------------------------------------------------- /labs/images/custom-vision-new-project-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/custom-vision-new-project-button.png -------------------------------------------------------------------------------- /labs/images/custom-vision-quick-test-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/custom-vision-quick-test-button.png -------------------------------------------------------------------------------- /labs/images/custom-vision-settings-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/custom-vision-settings-button.png -------------------------------------------------------------------------------- /labs/images/custom-vision-settings-domain-general-compact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/custom-vision-settings-domain-general-compact.png -------------------------------------------------------------------------------- /labs/images/custom-vision-train-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/custom-vision-train-button.png -------------------------------------------------------------------------------- /labs/images/custom-vision-train-type-dialog-quick-train-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/custom-vision-train-type-dialog-quick-train-selected.png -------------------------------------------------------------------------------- /labs/images/iot-central-menu-administration-api-tokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/iot-central-menu-administration-api-tokens.png -------------------------------------------------------------------------------- /labs/images/iot-central-menu-administration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/iot-central-menu-administration.png -------------------------------------------------------------------------------- /labs/images/iot-central-menu-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/iot-central-menu-dashboard.png -------------------------------------------------------------------------------- /labs/images/iot-central-menu-data-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/iot-central-menu-data-export.png -------------------------------------------------------------------------------- /labs/images/iot-central-menu-device-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/iot-central-menu-device-groups.png -------------------------------------------------------------------------------- /labs/images/iot-central-menu-device-templates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/iot-central-menu-device-templates.png -------------------------------------------------------------------------------- /labs/images/iot-central-menu-devices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/iot-central-menu-devices.png -------------------------------------------------------------------------------- /labs/images/iot-central-menu-rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/iot-central-menu-rules.png -------------------------------------------------------------------------------- /labs/images/iot-central-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/iot-central-menu.png -------------------------------------------------------------------------------- /labs/images/vscode-command-palette-connect-to-host.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/vscode-command-palette-connect-to-host.png -------------------------------------------------------------------------------- /labs/images/vscode-command-palette-platformio-serial-monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/vscode-command-palette-platformio-serial-monitor.png -------------------------------------------------------------------------------- /labs/images/vscode-command-palette-platformio-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/vscode-command-palette-platformio-upload.png -------------------------------------------------------------------------------- /labs/images/vscode-explorer-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/vscode-explorer-menu.png -------------------------------------------------------------------------------- /labs/images/vscode-explorer-open-folder-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/vscode-explorer-open-folder-button.png -------------------------------------------------------------------------------- /labs/images/vscode-extensions-azure-iot-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/vscode-extensions-azure-iot-tools.png -------------------------------------------------------------------------------- /labs/images/vscode-extensions-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/vscode-extensions-menu.png -------------------------------------------------------------------------------- /labs/images/vscode-extensions-platformio-install-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/vscode-extensions-platformio-install-button.png -------------------------------------------------------------------------------- /labs/images/vscode-extensions-pylance-install-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/vscode-extensions-pylance-install-button.png -------------------------------------------------------------------------------- /labs/images/vscode-extensions-pylance-install-remote-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/vscode-extensions-pylance-install-remote-button.png -------------------------------------------------------------------------------- /labs/images/vscode-extensions-pylance-reload-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/vscode-extensions-pylance-reload-button.png -------------------------------------------------------------------------------- /labs/images/vscode-extensions-remote-development-install-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/vscode-extensions-remote-development-install-button.png -------------------------------------------------------------------------------- /labs/images/vscode-kill-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/vscode-kill-terminal.png -------------------------------------------------------------------------------- /labs/images/vscode-launch-venv-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/vscode-launch-venv-dialog.png -------------------------------------------------------------------------------- /labs/images/vscode-new-file-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/vscode-new-file-button.png -------------------------------------------------------------------------------- /labs/images/vscode-platformio-home-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/vscode-platformio-home-open.png -------------------------------------------------------------------------------- /labs/images/vscode-platformio-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/vscode-platformio-menu.png -------------------------------------------------------------------------------- /labs/images/vscode-platformio-new-project-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/vscode-platformio-new-project-button.png -------------------------------------------------------------------------------- /labs/images/vscode-remote-confirm-fingerprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/vscode-remote-confirm-fingerprint.png -------------------------------------------------------------------------------- /labs/images/vscode-remote-select-platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/vscode-remote-select-platform.png -------------------------------------------------------------------------------- /labs/images/vscode-status-bar-platformio-serial-monitor-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/vscode-status-bar-platformio-serial-monitor-button.png -------------------------------------------------------------------------------- /labs/images/vscode-terminal-activated-venv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/images/vscode-terminal-activated-venv.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/README.md -------------------------------------------------------------------------------- /labs/iot/environment-monitor/code/pi/led/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/code/pi/led/app.py -------------------------------------------------------------------------------- /labs/iot/environment-monitor/code/pi/sound-humidity/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/code/pi/sound-humidity/app.py -------------------------------------------------------------------------------- /labs/iot/environment-monitor/code/pi/temperature/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/code/pi/temperature/app.py -------------------------------------------------------------------------------- /labs/iot/environment-monitor/code/virtual-device/led/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/code/virtual-device/led/app.py -------------------------------------------------------------------------------- /labs/iot/environment-monitor/code/virtual-device/led/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/code/virtual-device/led/requirements.txt -------------------------------------------------------------------------------- /labs/iot/environment-monitor/code/virtual-device/sound-humidity/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/code/virtual-device/sound-humidity/app.py -------------------------------------------------------------------------------- /labs/iot/environment-monitor/code/virtual-device/temperature/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/code/virtual-device/temperature/app.py -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/cosmos-db-account-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/cosmos-db-account-details.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/cosmos-db-data-explorer-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/cosmos-db-data-explorer-menu.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/email-sound-check-rule-breach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/email-sound-check-rule-breach.jpg -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/event-hubs-hubs-menu-select-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/event-hubs-hubs-menu-select-hub.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/event-hubs-hubs-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/event-hubs-hubs-menu.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/iot-central-create-new-device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/iot-central-create-new-device.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/iot-central-create-new-pi-device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/iot-central-create-new-pi-device.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/iot-central-dashboard-edit-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/iot-central-dashboard-edit-button.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/iot-central-device-commands-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/iot-central-device-commands-tab.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/iot-central-device-connect-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/iot-central-device-connect-button.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/iot-central-device-groups-value-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/iot-central-device-groups-value-v2.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/iot-central-devices-list-simulated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/iot-central-devices-list-simulated.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/iot-central-devices-select-device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/iot-central-devices-select-device.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/iot-central-new-device-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/iot-central-new-device-button.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/iot-central-pi-device-view-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/iot-central-pi-device-view-chart.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/iot-central-rules-delete-rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/iot-central-rules-delete-rule.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/iot-central-rules-list-sound-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/iot-central-rules-list-sound-check.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/iot-central-rules-name-rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/iot-central-rules-name-rule.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/iot-central-rules-new-rule-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/iot-central-rules-new-rule-button.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/iot-central-rules-save-rule-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/iot-central-rules-save-rule-button.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/pi-grove-led-fitted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/pi-grove-led-fitted.jpg -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/pi-grove-piplus-hat-fitted-side.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/pi-grove-piplus-hat-fitted-side.jpg -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/pi-grove-piplus-hat-fitted-top.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/pi-grove-piplus-hat-fitted-top.JPG -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/pi-grove-sound-sensor-fitted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/pi-grove-sound-sensor-fitted.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/pi-grove-temperature-sensor-fitted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/pi-grove-temperature-sensor-fitted.jpg -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/postman-command-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/postman-command-call.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/stream-analytics-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/stream-analytics-overview.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/stream-analytics-query-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/stream-analytics-query-blank.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/stream-analytics-query-test-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/stream-analytics-query-test-button.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/vscode-macos-keyboard-control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/vscode-macos-keyboard-control.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/vscode-new-file-app-py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/vscode-new-file-app-py.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/images/vscode-open-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/images/vscode-open-folder.png -------------------------------------------------------------------------------- /labs/iot/environment-monitor/notebooks/Plot_Spikes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/notebooks/Plot_Spikes.ipynb -------------------------------------------------------------------------------- /labs/iot/environment-monitor/steps/add-more-sensors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/steps/add-more-sensors.md -------------------------------------------------------------------------------- /labs/iot/environment-monitor/steps/add-pi-to-iot-central.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/steps/add-pi-to-iot-central.md -------------------------------------------------------------------------------- /labs/iot/environment-monitor/steps/anomaly-detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/steps/anomaly-detection.md -------------------------------------------------------------------------------- /labs/iot/environment-monitor/steps/clean-up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/steps/clean-up.md -------------------------------------------------------------------------------- /labs/iot/environment-monitor/steps/rules-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/steps/rules-command.md -------------------------------------------------------------------------------- /labs/iot/environment-monitor/steps/rules-pi-led.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/steps/rules-pi-led.md -------------------------------------------------------------------------------- /labs/iot/environment-monitor/steps/rules-virtual-led.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/steps/rules-virtual-led.md -------------------------------------------------------------------------------- /labs/iot/environment-monitor/steps/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/steps/rules.md -------------------------------------------------------------------------------- /labs/iot/environment-monitor/steps/set-up-humidity-sound.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/steps/set-up-humidity-sound.md -------------------------------------------------------------------------------- /labs/iot/environment-monitor/steps/set-up-iot-central.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/steps/set-up-iot-central.md -------------------------------------------------------------------------------- /labs/iot/environment-monitor/steps/set-up-pi-humidity-sound.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/steps/set-up-pi-humidity-sound.md -------------------------------------------------------------------------------- /labs/iot/environment-monitor/steps/set-up-pi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/steps/set-up-pi.md -------------------------------------------------------------------------------- /labs/iot/environment-monitor/steps/set-up-virtual-humidity-sound.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/steps/set-up-virtual-humidity-sound.md -------------------------------------------------------------------------------- /labs/iot/environment-monitor/steps/set-up-virtual-pi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/environment-monitor/steps/set-up-virtual-pi.md -------------------------------------------------------------------------------- /labs/iot/gps-lab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/gps-lab/README.md -------------------------------------------------------------------------------- /labs/iot/gps-lab/code/pi/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/gps-lab/code/pi/app.py -------------------------------------------------------------------------------- /labs/iot/gps-lab/code/pi/requirements.txt: -------------------------------------------------------------------------------- 1 | azure-iot-device 2 | python-dotenv 3 | gps -------------------------------------------------------------------------------- /labs/iot/gps-lab/code/web-app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/gps-lab/code/web-app/app.py -------------------------------------------------------------------------------- /labs/iot/gps-lab/code/web-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/gps-lab/code/web-app/requirements.txt -------------------------------------------------------------------------------- /labs/iot/gps-lab/code/web-app/static/js/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/gps-lab/code/web-app/static/js/application.js -------------------------------------------------------------------------------- /labs/iot/gps-lab/code/web-app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/gps-lab/code/web-app/templates/index.html -------------------------------------------------------------------------------- /labs/iot/gps-lab/images/pi-gps-sketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/gps-lab/images/pi-gps-sketch.png -------------------------------------------------------------------------------- /labs/iot/gps-lab/images/vscode-new-file-app-py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/gps-lab/images/vscode-new-file-app-py.png -------------------------------------------------------------------------------- /labs/iot/gps-lab/steps/clean-up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/gps-lab/steps/clean-up.md -------------------------------------------------------------------------------- /labs/iot/gps-lab/steps/set-up-azure-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/gps-lab/steps/set-up-azure-services.md -------------------------------------------------------------------------------- /labs/iot/gps-lab/steps/set-up-pi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/gps-lab/steps/set-up-pi.md -------------------------------------------------------------------------------- /labs/iot/gps-lab/steps/web-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/gps-lab/steps/web-app.md -------------------------------------------------------------------------------- /labs/iot/gps-lab/steps/write-pi-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/gps-lab/steps/write-pi-code.md -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/README.md -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/day0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/day0/README.md -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/day1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/day1/README.md -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/device/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/device/README.md -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/Lab-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/Lab-1.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/Lab-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/Lab-2.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/Lab-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/Lab-3.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/Lab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/Lab.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/app-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/app-1.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/app-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/app-2.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/app-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/app-3.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/app-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/app-4.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/app-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/app-5.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/app-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/app-6.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/app-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/app-7.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/app-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/app-8.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/email-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/email-1.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/email-5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/email-5.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/email-6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/email-6.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/email-7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/email-7.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/eventhub-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/eventhub-1.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/eventhub-10.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/eventhub-10.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/eventhub-11.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/eventhub-11.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/eventhub-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/eventhub-2.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/eventhub-21.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/eventhub-21.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/eventhub-22.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/eventhub-22.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/eventhub-3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/eventhub-3.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/eventhub-4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/eventhub-4.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/eventhub-5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/eventhub-5.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/eventhub-6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/eventhub-6.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/eventhub-7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/eventhub-7.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/eventhub-8.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/eventhub-8.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/eventhub-9.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/eventhub-9.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/hub-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/hub-1.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/hub-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/hub-2.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/iot-hub-0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/iot-hub-0.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/iot-hub-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/iot-hub-1.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/iot-hub-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/iot-hub-10.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/iot-hub-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/iot-hub-2.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/iot-hub-3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/iot-hub-3.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/iot-hub-4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/iot-hub-4.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/iot-hub-5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/iot-hub-5.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/iot-hub-6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/iot-hub-6.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/iot-hub-7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/iot-hub-7.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/iot-hub-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/iot-hub-8.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/iot-hub-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/iot-hub-9.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/message-3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/message-3.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/message-4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/message-4.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/message-enrichments-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/message-enrichments-flow.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/notification_06_New_Step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/notification_06_New_Step.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/notification_12_eventurl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/notification_12_eventurl.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/notification_16_add_device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/notification_16_add_device.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/notification_17_add_device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/notification_17_add_device.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/notification_eventgrid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/notification_eventgrid.jpg -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/routing-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/routing-1.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/routing-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/routing-2.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/routing-3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/routing-3.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/routing-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/routing-4.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/routing-5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/routing-5.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/routing-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/routing-6.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/routing-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/routing-7.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/routing-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/routing-8.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/routing-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/routing-9.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/simulated-0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/simulated-0.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/simulated-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/simulated-1.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/simulated-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/simulated-10.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/simulated-11.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/simulated-11.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/simulated-12.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/simulated-12.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/simulated-13.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/simulated-13.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/simulated-14.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/simulated-14.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/simulated-15.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/simulated-15.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/simulated-16.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/simulated-16.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/simulated-3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/simulated-3.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/simulated-4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/simulated-4.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/simulated-5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/simulated-5.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/simulated-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/simulated-6.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/simulated-7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/simulated-7.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/simulated-8.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/simulated-8.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/storage-3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/storage-3.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/storage-4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/storage-4.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/storage-5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/storage-5.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/summary-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/summary-1.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/summary-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/summary-2.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/summary-3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/summary-3.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/summary-4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/summary-4.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/summary-5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/summary-5.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/summary-6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/summary-6.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/summary-7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/summary-7.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/visualize-20.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/visualize-20.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/visualize-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/visualize-21.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/visualize-22.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/visualize-22.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/visualize-23.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/visualize-23.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/visualize-24.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/visualize-24.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/visualize-27.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/visualize-27.PNG -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/visualize_10_visual10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/visualize_10_visual10.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/visualize_11_visual11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/visualize_11_visual11.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/visualize_12_Visual12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/visualize_12_Visual12.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/visualize_heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/visualize_heatmap.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/visualize_perspective.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/visualize_perspective.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/visualize_predicate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/visualize_predicate.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/images/visualize_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/images/visualize_table.png -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/iot-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/iot-client/README.md -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/iot-client/iot-hub-client-dual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/iot-client/iot-hub-client-dual.py -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/iot-client/iot-hub-client-message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/iot-client/iot-hub-client-message.py -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/iot-client/iot-hub-client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/iot-client/iot-hub-client.py -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/iot-lab/clientdeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/iot-lab/clientdeploy.json -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/iot-lab/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/iot-lab/config.sh -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/iot-lab/create_lab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/iot-lab/create_lab.sh -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/iot-lab/create_modules_1_2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/iot-lab/create_modules_1_2.sh -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/iot-lab/group-checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/iot-lab/group-checker.py -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/iot-lab/iot-hub-deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/iot-lab/iot-hub-deploy.json -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/iot-lab/password-checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/iot-lab/password-checker.py -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/iothub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/iothub/README.md -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/labtracker/labtracker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/labtracker/labtracker.sh -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/messages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/messages/README.md -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/notification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/notification/README.md -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/routing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/routing/README.md -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/sample-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/sample-app/README.md -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/sample-app/logic_app_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/sample-app/logic_app_launcher.py -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/storage/README.md -------------------------------------------------------------------------------- /labs/iot/hands-on-with-azure-iot-hub/visualize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/hands-on-with-azure-iot-hub/visualize/README.md -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Code/Final/TemperatureSensor/Device/.iotworkbenchproject: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Code/Final/TemperatureSensor/Device/device.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Code/Final/TemperatureSensor/Device/device.ino -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Code/Final/TemperatureSensor/Functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Code/Final/TemperatureSensor/Functions/.gitignore -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Code/Final/TemperatureSensor/Functions/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Images/ConfigureBoardWiFi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Images/ConfigureBoardWiFi.png -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Images/D2CMessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Images/D2CMessage.png -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Images/DocumentInCosmos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Images/DocumentInCosmos.png -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Images/InstallArduinoExtension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Images/InstallArduinoExtension.png -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Images/InstallCSharpExtension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Images/InstallCSharpExtension.png -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Images/InstallCosmosExtension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Images/InstallCosmosExtension.png -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Images/InstallFuncExtension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Images/InstallFuncExtension.png -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Images/InstallIoTExtension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Images/InstallIoTExtension.png -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Images/InstallLatestMXChip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Images/InstallLatestMXChip.png -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Images/IoTHubD2CMessageGraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Images/IoTHubD2CMessageGraph.png -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Images/IotHubEndpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Images/IotHubEndpoint.png -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Images/MXChipBoard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Images/MXChipBoard.png -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Images/MXChipBoardConnectedWiFiAzure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Images/MXChipBoardConnectedWiFiAzure.jpg -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Images/MXChipConfigurationMode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Images/MXChipConfigurationMode.jpg -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Images/OverwriteFunctionApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Images/OverwriteFunctionApp.png -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Images/SearchinThePortalForIoTHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Images/SearchinThePortalForIoTHub.png -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Images/StartMonitoringD2C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Images/StartMonitoringD2C.png -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Images/Step3Running.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Images/Step3Running.jpg -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/README.md -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Steps/CleanUp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Steps/CleanUp.md -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Steps/ConfigureTheBoard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Steps/ConfigureTheBoard.md -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Steps/ConfigureVSCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Steps/ConfigureVSCode.md -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Steps/ControlTheLEDThreshold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Steps/ControlTheLEDThreshold.md -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Steps/ExposeTheTemperature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Steps/ExposeTheTemperature.md -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Steps/SendingTheTemperature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Steps/SendingTheTemperature.md -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Steps/ShowingTheTemperature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Steps/ShowingTheTemperature.md -------------------------------------------------------------------------------- /labs/iot/mxchip-workshop/Steps/StoreTheTemperature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/mxchip-workshop/Steps/StoreTheTemperature.md -------------------------------------------------------------------------------- /labs/iot/smart-door/Diagram/IoTDoor.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/Diagram/IoTDoor.fzz -------------------------------------------------------------------------------- /labs/iot/smart-door/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/README.md -------------------------------------------------------------------------------- /labs/iot/smart-door/Readme.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/Readme.docx -------------------------------------------------------------------------------- /labs/iot/smart-door/StreamAnalytics/query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/StreamAnalytics/query.sql -------------------------------------------------------------------------------- /labs/iot/smart-door/device/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/device/.gitignore -------------------------------------------------------------------------------- /labs/iot/smart-door/device/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/device/.vscode/extensions.json -------------------------------------------------------------------------------- /labs/iot/smart-door/device/PlatformioWorkspace.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/device/PlatformioWorkspace.code-workspace -------------------------------------------------------------------------------- /labs/iot/smart-door/device/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/device/include/README -------------------------------------------------------------------------------- /labs/iot/smart-door/device/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/device/platformio.ini -------------------------------------------------------------------------------- /labs/iot/smart-door/device/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/device/src/main.cpp -------------------------------------------------------------------------------- /labs/iot/smart-door/device/src/ws.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/device/src/ws.code-workspace -------------------------------------------------------------------------------- /labs/iot/smart-door/device/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/device/test/README -------------------------------------------------------------------------------- /labs/iot/smart-door/images/access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/images/access.png -------------------------------------------------------------------------------- /labs/iot/smart-door/images/acr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/images/acr.png -------------------------------------------------------------------------------- /labs/iot/smart-door/images/compose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/images/compose -------------------------------------------------------------------------------- /labs/iot/smart-door/images/cosmos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/images/cosmos.png -------------------------------------------------------------------------------- /labs/iot/smart-door/images/cosmos2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/images/cosmos2.png -------------------------------------------------------------------------------- /labs/iot/smart-door/images/dc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/images/dc.png -------------------------------------------------------------------------------- /labs/iot/smart-door/images/device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/images/device.png -------------------------------------------------------------------------------- /labs/iot/smart-door/images/devicelist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/images/devicelist.png -------------------------------------------------------------------------------- /labs/iot/smart-door/images/esp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/images/esp.png -------------------------------------------------------------------------------- /labs/iot/smart-door/images/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/images/find.png -------------------------------------------------------------------------------- /labs/iot/smart-door/images/halleffect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/images/halleffect.png -------------------------------------------------------------------------------- /labs/iot/smart-door/images/hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/images/hub.png -------------------------------------------------------------------------------- /labs/iot/smart-door/images/hub1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/images/hub1.png -------------------------------------------------------------------------------- /labs/iot/smart-door/images/hub2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/images/hub2.png -------------------------------------------------------------------------------- /labs/iot/smart-door/images/hub3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/images/hub3.png -------------------------------------------------------------------------------- /labs/iot/smart-door/images/magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/images/magnet.png -------------------------------------------------------------------------------- /labs/iot/smart-door/images/motor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/images/motor.png -------------------------------------------------------------------------------- /labs/iot/smart-door/images/pio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/images/pio.png -------------------------------------------------------------------------------- /labs/iot/smart-door/images/pio2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/images/pio2.png -------------------------------------------------------------------------------- /labs/iot/smart-door/images/piobar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/images/piobar.png -------------------------------------------------------------------------------- /labs/iot/smart-door/images/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/images/qa.png -------------------------------------------------------------------------------- /labs/iot/smart-door/images/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/images/sa.png -------------------------------------------------------------------------------- /labs/iot/smart-door/images/sa2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/images/sa2.png -------------------------------------------------------------------------------- /labs/iot/smart-door/images/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/images/setup.png -------------------------------------------------------------------------------- /labs/iot/smart-door/web/.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/.env.dev -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/__init__.py -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/doorAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/doorAPI.py -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/content/bootstrap.css -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/content/bootstrap.min.css -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/content/command.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/content/command.css -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/content/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/content/site.css -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/content/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/content/test.html -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/favicon.ico -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/LICENSE.txt -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/css/all.css -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/css/all.min.css -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/css/brands.css -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/css/brands.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/css/brands.min.css -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/css/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/css/fontawesome.css -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/css/regular.css -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/css/regular.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/css/regular.min.css -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/css/solid.css -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/css/solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/css/solid.min.css -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/css/svg-with-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/css/svg-with-js.css -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/css/v4-shims.css -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/css/v4-shims.min.css -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/js/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/js/all.js -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/js/all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/js/all.min.js -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/js/brands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/js/brands.js -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/js/brands.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/js/brands.min.js -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/js/fontawesome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/js/fontawesome.js -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/js/regular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/js/regular.js -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/js/regular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/js/regular.min.js -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/js/solid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/js/solid.js -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/js/solid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/js/solid.min.js -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/js/v4-shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/js/v4-shims.js -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/js/v4-shims.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/js/v4-shims.min.js -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/_animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/_animated.less -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/_core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/_core.less -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/_icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/_icons.less -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/_larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/_larger.less -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/_list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/_list.less -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/_mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/_mixins.less -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/_shims.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/_shims.less -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/_stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/_stacked.less -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/_variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/_variables.less -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/brands.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/brands.less -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/regular.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/regular.less -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/solid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/solid.less -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/v4-shims.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/less/v4-shims.less -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/metadata/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/metadata/icons.json -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/metadata/icons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/metadata/icons.yml -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/metadata/shims.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/metadata/shims.json -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/metadata/shims.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/metadata/shims.yml -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/_animated.scss -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/_core.scss -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/_icons.scss -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/_larger.scss -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/_list.scss -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/_mixins.scss -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/_shims.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/_shims.scss -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/_stacked.scss -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/_variables.scss -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/brands.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/brands.scss -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/regular.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/regular.scss -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/solid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/solid.scss -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/v4-shims.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/scss/v4-shims.scss -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/sprites/brands.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/sprites/brands.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/sprites/regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/sprites/regular.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/sprites/solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/sprites/solid.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/adn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/adn.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/aws.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/aws.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/bity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/bity.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/btc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/btc.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/css3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/css3.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/dev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/dev.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/dhl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/dhl.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/digg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/digg.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/ebay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/ebay.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/edge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/edge.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/ello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/ello.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/etsy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/etsy.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/fly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/fly.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/gg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/gg.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/git.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/grav.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/grav.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/gulp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/gulp.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/hips.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/hips.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/imdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/imdb.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/java.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/jira.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/jira.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/js.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/less.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/less.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/line.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/lyft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/lyft.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/mdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/mdb.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/mix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/mix.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/modx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/modx.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/neos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/neos.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/node.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/npm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/npm.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/ns8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/ns8.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/osi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/osi.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/php.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/php.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/qq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/qq.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/rev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/rev.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/sass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/sass.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/sith.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/sith.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/suse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/suse.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/uber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/uber.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/ups.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/ups.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/usb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/usb.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/usps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/usps.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/vine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/vine.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/vk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/vk.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/vnv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/vnv.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/waze.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/waze.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/wix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/wix.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/xbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/xbox.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/xing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/xing.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/yarn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/yarn.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/yelp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/brands/yelp.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/solid/ad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/solid/ad.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/solid/at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/solid/at.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/solid/om.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/solid/om.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/solid/th.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/solid/th.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/solid/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/fonts/fontawesome/svgs/solid/tv.svg -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/scripts/_references.js -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/scripts/bootstrap.js -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/scripts/bootstrap.min.js -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/scripts/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/scripts/command.js -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/scripts/jquery.validate.js -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/scripts/mustach.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/scripts/mustach.js -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/scripts/respond.js -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/static/scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/static/scripts/respond.min.js -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/templates/about.html -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/templates/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/templates/contact.html -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/templates/index.html -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/templates/layout.html -------------------------------------------------------------------------------- /labs/iot/smart-door/web/Door/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/Door/views.py -------------------------------------------------------------------------------- /labs/iot/smart-door/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/README.md -------------------------------------------------------------------------------- /labs/iot/smart-door/web/docker-compose-production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/docker-compose-production.yml -------------------------------------------------------------------------------- /labs/iot/smart-door/web/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/docker-compose.yml -------------------------------------------------------------------------------- /labs/iot/smart-door/web/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/dockerfile -------------------------------------------------------------------------------- /labs/iot/smart-door/web/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/requirements.txt -------------------------------------------------------------------------------- /labs/iot/smart-door/web/runserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/iot/smart-door/web/runserver.py -------------------------------------------------------------------------------- /labs/lab_contribution_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/lab_contribution_guidelines.md -------------------------------------------------------------------------------- /labs/tiny-ml/audio-classifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/tiny-ml/audio-classifier/README.md -------------------------------------------------------------------------------- /labs/tiny-ml/audio-classifier/code/audio-capture/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/tiny-ml/audio-classifier/code/audio-capture/.gitignore -------------------------------------------------------------------------------- /labs/tiny-ml/audio-classifier/code/audio-capture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/tiny-ml/audio-classifier/code/audio-capture/README.md -------------------------------------------------------------------------------- /labs/tiny-ml/audio-classifier/code/audio-capture/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/tiny-ml/audio-classifier/code/audio-capture/include/README -------------------------------------------------------------------------------- /labs/tiny-ml/audio-classifier/code/audio-capture/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/tiny-ml/audio-classifier/code/audio-capture/platformio.ini -------------------------------------------------------------------------------- /labs/tiny-ml/audio-classifier/code/audio-capture/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/tiny-ml/audio-classifier/code/audio-capture/src/main.cpp -------------------------------------------------------------------------------- /labs/tiny-ml/audio-classifier/code/audio-capture/src/sample_capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/tiny-ml/audio-classifier/code/audio-capture/src/sample_capture.h -------------------------------------------------------------------------------- /labs/tiny-ml/audio-classifier/code/audio-capture/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/tiny-ml/audio-classifier/code/audio-capture/test/README -------------------------------------------------------------------------------- /labs/tiny-ml/audio-classifier/code/audio-classifier/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/tiny-ml/audio-classifier/code/audio-classifier/.gitignore -------------------------------------------------------------------------------- /labs/tiny-ml/audio-classifier/code/audio-classifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/tiny-ml/audio-classifier/code/audio-classifier/README.md -------------------------------------------------------------------------------- /labs/tiny-ml/audio-classifier/code/audio-classifier/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/tiny-ml/audio-classifier/code/audio-classifier/include/README -------------------------------------------------------------------------------- /labs/tiny-ml/audio-classifier/code/audio-classifier/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/tiny-ml/audio-classifier/code/audio-classifier/platformio.ini -------------------------------------------------------------------------------- /labs/tiny-ml/audio-classifier/code/audio-classifier/src/classifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/tiny-ml/audio-classifier/code/audio-classifier/src/classifier.h -------------------------------------------------------------------------------- /labs/tiny-ml/audio-classifier/code/audio-classifier/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/tiny-ml/audio-classifier/code/audio-classifier/src/main.cpp -------------------------------------------------------------------------------- /labs/tiny-ml/audio-classifier/code/audio-classifier/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/tiny-ml/audio-classifier/code/audio-classifier/test/README -------------------------------------------------------------------------------- /labs/tiny-ml/audio-classifier/code/model-trainer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/tiny-ml/audio-classifier/code/model-trainer/.gitignore -------------------------------------------------------------------------------- /labs/tiny-ml/audio-classifier/code/model-trainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/tiny-ml/audio-classifier/code/model-trainer/README.md -------------------------------------------------------------------------------- /labs/tiny-ml/audio-classifier/code/model-trainer/requirements.txt: -------------------------------------------------------------------------------- 1 | scikit-learn 2 | micromlgen -------------------------------------------------------------------------------- /labs/tiny-ml/audio-classifier/code/model-trainer/train_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/tiny-ml/audio-classifier/code/model-trainer/train_classifier.py -------------------------------------------------------------------------------- /labs/tiny-ml/audio-classifier/steps/audio-capture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/tiny-ml/audio-classifier/steps/audio-capture.md -------------------------------------------------------------------------------- /labs/tiny-ml/audio-classifier/steps/audio-classifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/tiny-ml/audio-classifier/steps/audio-classifier.md -------------------------------------------------------------------------------- /labs/tiny-ml/audio-classifier/steps/train-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/iot-curriculum/HEAD/labs/tiny-ml/audio-classifier/steps/train-model.md --------------------------------------------------------------------------------