├── Module1-IntroWindows10IoTCore ├── Images │ ├── L714-R1.png │ ├── add-iot-extension.png │ ├── ex1task1-device-portal-credentials.png │ ├── ex1task1-device-portal-rename.png │ ├── ex1task1-device-portal.png │ ├── ex1task1-watcher-browser.png │ ├── ex1task1-watcher.png │ ├── ex1task2-connect-wifi.png │ ├── ex1task2-device-portal-available-networks.png │ ├── ex1task2-device-portal-networking.png │ ├── ex2task1-IoT-SDK-ref.png │ ├── ex2task1-hello-world-local.png │ ├── ex2task1-new-blank-app.png │ ├── ex2task2-arm.png │ ├── ex2task2-remote-connections-dialog.png │ ├── ex2task2-run-remote-machine.png │ ├── ex3task1-intalling-ghi-electronics-nuget-package.png │ ├── ex3task1-raspberry-led.png │ ├── ex3task2-raspberry-led-button.png │ ├── ex4task1-running-application.png │ └── ex4task2-raspberry-light-temp.png ├── README.md ├── Slides │ └── IoT Module 1.pptx └── Source │ ├── Ex2 │ └── End │ │ ├── IoTWorkshop.sln │ │ └── IoTWorkshop │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ │ ├── IoTWorkshop.csproj │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ │ └── project.json │ ├── Ex3 │ └── End │ │ └── IoTHelloBlinky │ │ ├── .vs │ │ └── IoTHelloBlinky │ │ │ └── v14 │ │ │ └── .suo │ │ ├── IoTHelloBlinky.sln │ │ └── IoTHelloBlinky │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ │ ├── IoTHelloBlinky.csproj │ │ ├── IoTHelloBlinky.csproj.user │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ │ ├── project.json │ │ └── project.lock.json │ ├── Ex4 │ ├── Begin │ │ ├── IoTWorkshop.sln │ │ └── IoTWorkshop │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── IoTWorkshop.csproj │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ │ └── project.json │ └── End │ │ ├── IoTWorkshop.sln │ │ └── IoTWorkshop │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ │ ├── IoTWorkshop.csproj │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ │ └── project.json │ ├── Ex5 │ ├── Begin │ │ ├── IoTWorkshop.sln │ │ └── IoTWorkshop │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── IoTWorkshop.csproj │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ │ └── project.json │ └── End │ │ ├── IoTWorkshop.sln │ │ └── IoTWorkshop │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ │ ├── IoTWorkshop.csproj │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ │ └── project.json │ ├── Setup.cmd │ └── Setup │ ├── Cleanup.cmd │ ├── Setup.cmd │ └── scripts │ ├── InstallCodeSnippets.cmd │ ├── installCodeSnippets.ps1 │ └── snippets │ └── IntroWinIoT.vsi ├── Module2-IntroAzureIoT-NoDevice ├── Images │ ├── adding-website-consumer-groups.png │ ├── change-value-to-average.png │ ├── change-visualization-to-gauge.png │ ├── configure-device-explorer.png │ ├── copying-device-connection-information.png │ ├── create-consumer-group.png │ ├── creating-a-device-identity.png │ ├── creating-a-new-web-app.png │ ├── edit-report-title.png │ ├── enabling-web-sockets.png │ ├── final-power-bi-dashboard.png │ ├── gauge-report.png │ ├── get-iot-hub-owner-connection-string.png │ ├── iot-hub-shared-access-policies.png │ ├── light-by-time-report.png │ ├── monitoring-messages-sent.png │ ├── new-iot-hub-settings.png │ ├── new-stream-analytics-input.png │ ├── new-stream-analytics-output.png │ ├── new-stream-analytics.png │ ├── pin-a-report-to-the-dashboard.png │ ├── power-bi-new-datasource.png │ ├── power-bi-report-designer.png │ ├── select-light-sensor-values.png │ ├── select-line-chart.png │ ├── select-report-filter.png │ ├── selecting-publish-target.png │ ├── stream-analytics-query.png │ └── web-site-consuming-the-event-hub-data.png ├── README.md └── Source │ ├── Ex1 │ ├── Begin │ │ ├── IoTWorkshop.sln │ │ └── IoTWorkshop │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── IoTWorkshop.csproj │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ │ └── project.json │ └── End │ │ ├── IoTWorkshop.sln │ │ └── IoTWorkshop │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ │ ├── IoTWorkshop.csproj │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ │ └── project.json │ ├── Ex4 │ └── Begin │ │ ├── IoTWorkshopWebSite.sln │ │ └── IoTWorkshopWebSite │ │ ├── Default.aspx │ │ ├── Default.aspx.cs │ │ ├── Default.aspx.designer.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── IoTWorkshopWebSite.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── SensorInventory.cs │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── WebSocketEventProcessor.cs │ │ ├── WebSocketHandler.cs │ │ ├── css │ │ └── styles.css │ │ ├── img │ │ ├── Logo.png │ │ └── ajax-loader.gif │ │ ├── js │ │ ├── d3CTD.js │ │ ├── d3CTDDataSourceFilter.js │ │ ├── d3CTDDataSourceSocket.js │ │ ├── d3Chart.js │ │ ├── d3ChartControl.js │ │ ├── d3DataFlow.js │ │ ├── d3DataSourceSocket.js │ │ └── d3utils.js │ │ └── packages.config │ ├── Setup.cmd │ └── Setup │ ├── Cleanup.cmd │ ├── Setup.cmd │ └── scripts │ ├── InstallCodeSnippets.cmd │ ├── installCodeSnippets.ps1 │ └── snippets │ └── AzureIoT.vsi ├── Module3-IntroAzureIoT-WindowsIoTCore ├── Images │ ├── L714-R1.png │ ├── adding-website-consumer-groups.png │ ├── arm-platform.png │ ├── cloud-to-device-message-received.png │ ├── configure-device-explorer.png │ ├── copying-device-connection-information.png │ ├── creating-a-device-identity.png │ ├── creating-a-new-project.png │ ├── creating-a-new-web-app.png │ ├── enabling-web-sockets.png │ ├── ex1task1-device-portal-credentials.png │ ├── ex1task1-device-portal-rename.png │ ├── ex1task1-device-portal.png │ ├── ex1task1-watcher.png │ ├── ex1task2-connect-wifi.png │ ├── ex1task2-device-portal-available-networks.png │ ├── ex1task2-device-portal-networking.png │ ├── fezhat-connected-to-raspberri-pi-2.png │ ├── get-iot-hub-owner-connection-string.png │ ├── iot-hub-shared-access-policies.png │ ├── monitoring-messages-sent.png │ ├── new-iot-hub-settings.png │ ├── remote-connections-dialog.png │ ├── run-remote-machine.png │ ├── selecting-publish-target.png │ ├── sending-cloud-to-device-message.png │ ├── web-site-consuming-the-event-hub-data.png │ └── windows-10-iot-core-fez-hat-hardware-setup.png ├── README.md ├── Slides │ └── IoT Module 3.pptx └── Source │ ├── Ex2 │ ├── Begin │ │ ├── IoTWorkshop.sln │ │ └── IoTWorkshop │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── IoTWorkshop.csproj │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ │ └── project.json │ └── End │ │ ├── IoTWorkshop.sln │ │ └── IoTWorkshop │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ │ ├── IoTWorkshop.csproj │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ │ └── project.json │ ├── Ex3 │ └── Begin │ │ ├── IoTWorkshopWebSite.sln │ │ └── IoTWorkshopWebSite │ │ ├── Default.aspx │ │ ├── Default.aspx.cs │ │ ├── Default.aspx.designer.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── IoTWorkshopWebSite.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── SensorInventory.cs │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── WebSocketEventProcessor.cs │ │ ├── WebSocketHandler.cs │ │ ├── css │ │ └── styles.css │ │ ├── img │ │ ├── Logo.png │ │ └── ajax-loader.gif │ │ ├── js │ │ ├── d3CTD.js │ │ ├── d3CTDDataSourceFilter.js │ │ ├── d3CTDDataSourceSocket.js │ │ ├── d3Chart.js │ │ ├── d3ChartControl.js │ │ ├── d3DataFlow.js │ │ ├── d3DataSourceSocket.js │ │ └── d3utils.js │ │ └── packages.config │ ├── Ex4 │ ├── Begin │ │ ├── IoTWorkshop.sln │ │ └── IoTWorkshop │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── IoTWorkshop.csproj │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ │ └── project.json │ └── End │ │ ├── IoTWorkshop.sln │ │ └── IoTWorkshop │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ │ ├── IoTWorkshop.csproj │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ │ └── project.json │ ├── Setup.cmd │ └── Setup │ ├── Cleanup.cmd │ ├── Setup.cmd │ └── scripts │ ├── InstallCodeSnippets.cmd │ ├── installCodeSnippets.ps1 │ └── snippets │ └── AzureIoT.vsi ├── Module4-OpenHack ├── AdafruitServoHAT.md ├── AudioAndMIDI.md ├── FEZHAT.md ├── GPIO.md ├── Gadgeteer.md ├── Images │ ├── L714-R1.png │ ├── midi_keyboard.jpg │ └── pi_bw.jpg ├── README.md ├── RemoteArduino.md └── Webcam.md ├── README.md ├── _layouts └── default.html └── style.css /Module1-IntroWindows10IoTCore/Images/L714-R1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Images/L714-R1.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Images/add-iot-extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Images/add-iot-extension.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Images/ex1task1-device-portal-credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Images/ex1task1-device-portal-credentials.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Images/ex1task1-device-portal-rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Images/ex1task1-device-portal-rename.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Images/ex1task1-device-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Images/ex1task1-device-portal.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Images/ex1task1-watcher-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Images/ex1task1-watcher-browser.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Images/ex1task1-watcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Images/ex1task1-watcher.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Images/ex1task2-connect-wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Images/ex1task2-connect-wifi.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Images/ex1task2-device-portal-available-networks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Images/ex1task2-device-portal-available-networks.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Images/ex1task2-device-portal-networking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Images/ex1task2-device-portal-networking.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Images/ex2task1-IoT-SDK-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Images/ex2task1-IoT-SDK-ref.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Images/ex2task1-hello-world-local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Images/ex2task1-hello-world-local.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Images/ex2task1-new-blank-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Images/ex2task1-new-blank-app.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Images/ex2task2-arm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Images/ex2task2-arm.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Images/ex2task2-remote-connections-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Images/ex2task2-remote-connections-dialog.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Images/ex2task2-run-remote-machine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Images/ex2task2-run-remote-machine.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Images/ex3task1-intalling-ghi-electronics-nuget-package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Images/ex3task1-intalling-ghi-electronics-nuget-package.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Images/ex3task1-raspberry-led.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Images/ex3task1-raspberry-led.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Images/ex3task2-raspberry-led-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Images/ex3task2-raspberry-led-button.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Images/ex4task1-running-application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Images/ex4task1-running-application.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Images/ex4task2-raspberry-light-temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Images/ex4task2-raspberry-light-temp.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/README.md -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Slides/IoT Module 1.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Slides/IoT Module 1.pptx -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop.sln -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/App.xaml -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/App.xaml.cs -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/IoTWorkshop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/IoTWorkshop.csproj -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/MainPage.xaml -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/MainPage.xaml.cs -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/Package.appxmanifest -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex2/End/IoTWorkshop/project.json -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/.vs/IoTHelloBlinky/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/.vs/IoTHelloBlinky/v14/.suo -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky.sln -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/App.xaml -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/App.xaml.cs -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/IoTHelloBlinky.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/IoTHelloBlinky.csproj -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/IoTHelloBlinky.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/IoTHelloBlinky.csproj.user -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/MainPage.xaml -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/MainPage.xaml.cs -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/Package.appxmanifest -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/project.json -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex3/End/IoTHelloBlinky/IoTHelloBlinky/project.lock.json -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop.sln -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/App.xaml -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/App.xaml.cs -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/IoTWorkshop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/IoTWorkshop.csproj -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/MainPage.xaml -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/MainPage.xaml.cs -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/Package.appxmanifest -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/Begin/IoTWorkshop/project.json -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop.sln -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/App.xaml -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/App.xaml.cs -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/IoTWorkshop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/IoTWorkshop.csproj -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/MainPage.xaml -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/MainPage.xaml.cs -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/Package.appxmanifest -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex4/End/IoTWorkshop/project.json -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop.sln -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/App.xaml -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/App.xaml.cs -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/IoTWorkshop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/IoTWorkshop.csproj -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/MainPage.xaml -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/MainPage.xaml.cs -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/Package.appxmanifest -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/Begin/IoTWorkshop/project.json -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop.sln -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/App.xaml -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/App.xaml.cs -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/IoTWorkshop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/IoTWorkshop.csproj -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/MainPage.xaml -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/MainPage.xaml.cs -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/Package.appxmanifest -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Ex5/End/IoTWorkshop/project.json -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Setup.cmd -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Setup/Cleanup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Setup/Cleanup.cmd -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Setup/Setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Setup/Setup.cmd -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Setup/scripts/InstallCodeSnippets.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Setup/scripts/InstallCodeSnippets.cmd -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Setup/scripts/installCodeSnippets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Setup/scripts/installCodeSnippets.ps1 -------------------------------------------------------------------------------- /Module1-IntroWindows10IoTCore/Source/Setup/scripts/snippets/IntroWinIoT.vsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module1-IntroWindows10IoTCore/Source/Setup/scripts/snippets/IntroWinIoT.vsi -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/adding-website-consumer-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/adding-website-consumer-groups.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/change-value-to-average.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/change-value-to-average.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/change-visualization-to-gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/change-visualization-to-gauge.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/configure-device-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/configure-device-explorer.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/copying-device-connection-information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/copying-device-connection-information.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/create-consumer-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/create-consumer-group.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/creating-a-device-identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/creating-a-device-identity.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/creating-a-new-web-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/creating-a-new-web-app.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/edit-report-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/edit-report-title.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/enabling-web-sockets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/enabling-web-sockets.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/final-power-bi-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/final-power-bi-dashboard.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/gauge-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/gauge-report.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/get-iot-hub-owner-connection-string.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/get-iot-hub-owner-connection-string.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/iot-hub-shared-access-policies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/iot-hub-shared-access-policies.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/light-by-time-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/light-by-time-report.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/monitoring-messages-sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/monitoring-messages-sent.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/new-iot-hub-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/new-iot-hub-settings.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/new-stream-analytics-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/new-stream-analytics-input.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/new-stream-analytics-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/new-stream-analytics-output.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/new-stream-analytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/new-stream-analytics.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/pin-a-report-to-the-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/pin-a-report-to-the-dashboard.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/power-bi-new-datasource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/power-bi-new-datasource.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/power-bi-report-designer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/power-bi-report-designer.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/select-light-sensor-values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/select-light-sensor-values.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/select-line-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/select-line-chart.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/select-report-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/select-report-filter.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/selecting-publish-target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/selecting-publish-target.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/stream-analytics-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/stream-analytics-query.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Images/web-site-consuming-the-event-hub-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Images/web-site-consuming-the-event-hub-data.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/README.md -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop.sln -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/App.xaml -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/App.xaml.cs -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/IoTWorkshop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/IoTWorkshop.csproj -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/MainPage.xaml -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/MainPage.xaml.cs -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/Package.appxmanifest -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/Begin/IoTWorkshop/project.json -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop.sln -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/App.xaml -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/App.xaml.cs -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/IoTWorkshop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/IoTWorkshop.csproj -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/MainPage.xaml -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/MainPage.xaml.cs -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/Package.appxmanifest -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex1/End/IoTWorkshop/project.json -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite.sln -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/Default.aspx -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/Default.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/Default.aspx.cs -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/Default.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/Default.aspx.designer.cs -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/Global.asax -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/Global.asax.cs -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/IoTWorkshopWebSite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/IoTWorkshopWebSite.csproj -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/SensorInventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/SensorInventory.cs -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/Web.Debug.config -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/Web.Release.config -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/Web.config -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/WebSocketEventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/WebSocketEventProcessor.cs -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/WebSocketHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/WebSocketHandler.cs -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/css/styles.css -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/img/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/img/Logo.png -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/img/ajax-loader.gif -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/js/d3CTD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/js/d3CTD.js -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/js/d3CTDDataSourceFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/js/d3CTDDataSourceFilter.js -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/js/d3CTDDataSourceSocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/js/d3CTDDataSourceSocket.js -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/js/d3Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/js/d3Chart.js -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/js/d3ChartControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/js/d3ChartControl.js -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/js/d3DataFlow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/js/d3DataFlow.js -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/js/d3DataSourceSocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/js/d3DataSourceSocket.js -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/js/d3utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/js/d3utils.js -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Ex4/Begin/IoTWorkshopWebSite/packages.config -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Setup.cmd -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Setup/Cleanup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Setup/Cleanup.cmd -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Setup/Setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Setup/Setup.cmd -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Setup/scripts/InstallCodeSnippets.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Setup/scripts/InstallCodeSnippets.cmd -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Setup/scripts/installCodeSnippets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Setup/scripts/installCodeSnippets.ps1 -------------------------------------------------------------------------------- /Module2-IntroAzureIoT-NoDevice/Source/Setup/scripts/snippets/AzureIoT.vsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module2-IntroAzureIoT-NoDevice/Source/Setup/scripts/snippets/AzureIoT.vsi -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/L714-R1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/L714-R1.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/adding-website-consumer-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/adding-website-consumer-groups.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/arm-platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/arm-platform.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/cloud-to-device-message-received.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/cloud-to-device-message-received.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/configure-device-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/configure-device-explorer.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/copying-device-connection-information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/copying-device-connection-information.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/creating-a-device-identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/creating-a-device-identity.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/creating-a-new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/creating-a-new-project.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/creating-a-new-web-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/creating-a-new-web-app.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/enabling-web-sockets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/enabling-web-sockets.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/ex1task1-device-portal-credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/ex1task1-device-portal-credentials.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/ex1task1-device-portal-rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/ex1task1-device-portal-rename.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/ex1task1-device-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/ex1task1-device-portal.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/ex1task1-watcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/ex1task1-watcher.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/ex1task2-connect-wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/ex1task2-connect-wifi.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/ex1task2-device-portal-available-networks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/ex1task2-device-portal-available-networks.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/ex1task2-device-portal-networking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/ex1task2-device-portal-networking.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/fezhat-connected-to-raspberri-pi-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/fezhat-connected-to-raspberri-pi-2.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/get-iot-hub-owner-connection-string.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/get-iot-hub-owner-connection-string.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/iot-hub-shared-access-policies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/iot-hub-shared-access-policies.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/monitoring-messages-sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/monitoring-messages-sent.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/new-iot-hub-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/new-iot-hub-settings.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/remote-connections-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/remote-connections-dialog.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/run-remote-machine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/run-remote-machine.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/selecting-publish-target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/selecting-publish-target.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/sending-cloud-to-device-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/sending-cloud-to-device-message.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/web-site-consuming-the-event-hub-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/web-site-consuming-the-event-hub-data.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Images/windows-10-iot-core-fez-hat-hardware-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Images/windows-10-iot-core-fez-hat-hardware-setup.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/README.md -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Slides/IoT Module 3.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Slides/IoT Module 3.pptx -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop.sln -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/App.xaml -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/App.xaml.cs -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/IoTWorkshop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/IoTWorkshop.csproj -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/MainPage.xaml -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/MainPage.xaml.cs -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/Package.appxmanifest -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/Begin/IoTWorkshop/project.json -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop.sln -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/App.xaml -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/App.xaml.cs -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/IoTWorkshop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/IoTWorkshop.csproj -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/MainPage.xaml -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/MainPage.xaml.cs -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/Package.appxmanifest -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex2/End/IoTWorkshop/project.json -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite.sln -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/Default.aspx -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/Default.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/Default.aspx.cs -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/Default.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/Default.aspx.designer.cs -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/Global.asax -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/Global.asax.cs -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/IoTWorkshopWebSite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/IoTWorkshopWebSite.csproj -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/SensorInventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/SensorInventory.cs -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/Web.Debug.config -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/Web.Release.config -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/Web.config -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/WebSocketEventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/WebSocketEventProcessor.cs -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/WebSocketHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/WebSocketHandler.cs -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/css/styles.css -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/img/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/img/Logo.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/img/ajax-loader.gif -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/js/d3CTD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/js/d3CTD.js -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/js/d3CTDDataSourceFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/js/d3CTDDataSourceFilter.js -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/js/d3CTDDataSourceSocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/js/d3CTDDataSourceSocket.js -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/js/d3Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/js/d3Chart.js -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/js/d3ChartControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/js/d3ChartControl.js -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/js/d3DataFlow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/js/d3DataFlow.js -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/js/d3DataSourceSocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/js/d3DataSourceSocket.js -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/js/d3utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/js/d3utils.js -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex3/Begin/IoTWorkshopWebSite/packages.config -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop.sln -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/App.xaml -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/App.xaml.cs -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/IoTWorkshop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/IoTWorkshop.csproj -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/MainPage.xaml -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/MainPage.xaml.cs -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/Package.appxmanifest -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/Begin/IoTWorkshop/project.json -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop.sln -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/App.xaml -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/App.xaml.cs -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/IoTWorkshop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/IoTWorkshop.csproj -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/MainPage.xaml -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/MainPage.xaml.cs -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/Package.appxmanifest -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Ex4/End/IoTWorkshop/project.json -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Setup.cmd -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Setup/Cleanup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Setup/Cleanup.cmd -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Setup/Setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Setup/Setup.cmd -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Setup/scripts/InstallCodeSnippets.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Setup/scripts/InstallCodeSnippets.cmd -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Setup/scripts/installCodeSnippets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Setup/scripts/installCodeSnippets.ps1 -------------------------------------------------------------------------------- /Module3-IntroAzureIoT-WindowsIoTCore/Source/Setup/scripts/snippets/AzureIoT.vsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module3-IntroAzureIoT-WindowsIoTCore/Source/Setup/scripts/snippets/AzureIoT.vsi -------------------------------------------------------------------------------- /Module4-OpenHack/AdafruitServoHAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module4-OpenHack/AdafruitServoHAT.md -------------------------------------------------------------------------------- /Module4-OpenHack/AudioAndMIDI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module4-OpenHack/AudioAndMIDI.md -------------------------------------------------------------------------------- /Module4-OpenHack/FEZHAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module4-OpenHack/FEZHAT.md -------------------------------------------------------------------------------- /Module4-OpenHack/GPIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module4-OpenHack/GPIO.md -------------------------------------------------------------------------------- /Module4-OpenHack/Gadgeteer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module4-OpenHack/Gadgeteer.md -------------------------------------------------------------------------------- /Module4-OpenHack/Images/L714-R1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module4-OpenHack/Images/L714-R1.png -------------------------------------------------------------------------------- /Module4-OpenHack/Images/midi_keyboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module4-OpenHack/Images/midi_keyboard.jpg -------------------------------------------------------------------------------- /Module4-OpenHack/Images/pi_bw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module4-OpenHack/Images/pi_bw.jpg -------------------------------------------------------------------------------- /Module4-OpenHack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module4-OpenHack/README.md -------------------------------------------------------------------------------- /Module4-OpenHack/RemoteArduino.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module4-OpenHack/RemoteArduino.md -------------------------------------------------------------------------------- /Module4-OpenHack/Webcam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/Module4-OpenHack/Webcam.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/README.md -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-IoTDev/HEAD/style.css --------------------------------------------------------------------------------