├── .gitattributes ├── .gitignore ├── BusTools ├── GPIOTestTool │ ├── GpioTestTool.vcxproj │ ├── GpioTestTool.vcxproj.filters │ └── main.cpp ├── I2CTestTools │ ├── I2cTestTool.vcxproj │ ├── I2cTestTool.vcxproj.filters │ └── main.cpp ├── LICENSE ├── Mincomm │ ├── MinComm.vcxproj │ ├── MinComm.vcxproj.filters │ └── main.cpp ├── PwmTestTool │ ├── PwmTestTool.vcxproj │ ├── PwmTestTool.vcxproj.filters │ └── main.cpp ├── SPITestTools │ ├── SpiTestTool.vcxproj │ ├── SpiTestTool.vcxproj.filters │ └── main.cpp ├── readme.md └── windows-iot-bus-tools.sln ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── Resources ├── .gitkeep ├── AppRunning-LEDOff.png ├── AppRunning-LEDOn.png ├── AppServiceSharedNotepad-Messages.jpg ├── AppServiceSharedNotepad-NoMessages.jpg ├── Assembled.jpg ├── BreadBoardICPlacement.png ├── Breadboard-LEDOff.png ├── Breadboard-LEDOn.png ├── CP2102_Connections_500.png ├── CommandBar.gif ├── Deploy.png ├── DeviceInfoPage-Screenshot.png ├── FlowSensor.jpg ├── GpioOneWireFritz.png ├── GpioOneWireSchematic.png ├── GpioOneWireScreen1.png ├── I2cPortExpanderDrawing_bb_750.png ├── I2cPortExpanderDrawing_schem.png ├── MCP23008_Pinout.png ├── MCP23008_PortExpander_bb.png ├── MCP3002.png ├── MCP3208.png ├── OOBE3.jpg ├── OOBE4.jpg ├── OverallCon-3002.png ├── OverallCon-3208.png ├── OverallCon_mcp3208.png ├── PinMappingsUpBoard.png ├── PushButtonSample.png ├── RGBLED-schematic_schem.png ├── RGBLED_Pinout.png ├── RGBLED_bb.png ├── Screenshot.jpg ├── SendMessageB.png ├── SerialSampleRunningPC.png ├── SerialSampleRunningPC_ConnectDevice.png ├── SiLabs-UART.png ├── UpBoard_Pinout.png ├── Upboard_Pinout.png ├── Upboard_PushButton_bb.png ├── Upboard_PushButton_schem.png ├── blinky-screenshot.png ├── breadboard_assembled_UpBoard_kit.png ├── breadboard_assembled_upboard.png ├── breadboard_assembled_upboard1.png ├── components.png ├── components1.png ├── components2.png ├── force_mcp3002.png ├── images │ ├── .gitkeep │ ├── Azure │ │ └── IoTHubClients │ │ │ ├── .gitkeep │ │ │ └── IoTHubClientScreenshot.png │ ├── CustomDeviceAccessorUwp-AppContainerSid.png │ ├── DeviceIoControlUwp-AppContainerSid.png │ ├── PMWebCamOptions.PNG │ ├── ProcessLauncherSample │ │ ├── AddIoTExtensionReference.png │ │ ├── BuildDependencies.png │ │ ├── ConsoleApplicationProperties.png │ │ ├── ExeProperties.png │ │ ├── ProcessLauncher0.png │ │ ├── ProcessLauncher1.png │ │ └── ProcessLauncher2.png │ └── WifiConnectSample │ │ ├── .gitkeep │ │ ├── WiFiSample0.png │ │ ├── WiFiSample1.png │ │ ├── WiFiSample2.png │ │ ├── WifiSamplePasswordChecked.PNG │ │ ├── WifiSamplePasswordUnchecked.PNG │ │ └── WifiSampleSelectedNetwork.PNG ├── schematic.png ├── schematics_upboard.png ├── schematics_upboard1.png ├── spiaccelerometer_screenshot.png ├── spidisplay_screenshot.png ├── step11.png ├── step12.png ├── step13.png ├── step14.png ├── step17.png ├── step18.png ├── step2.png ├── step2a.png ├── step3.PNG ├── step3a.png ├── step4.png ├── step5.png ├── step5a.png ├── step6.PNG ├── step6a.png ├── step7.png ├── step8.png └── temp_mcp3002.png ├── SECURITY.md ├── SUPPORT.md └── samples ├── Accelerometer ├── CS │ ├── Accelerometer.csproj │ ├── Accelerometer.sln │ ├── Accelerometer_TemporaryKey.pfx │ ├── 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 │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── README.md └── README.md ├── AppServiceBlinky ├── CPP │ ├── BlinkyClient.sln │ ├── BlinkyClient │ │ ├── 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 │ │ ├── BlinkyClient.vcxproj │ │ ├── BlinkyClient_TemporaryKey.pfx │ │ ├── Package.appxmanifest │ │ ├── StartupTask.cpp │ │ ├── StartupTask.h │ │ ├── pch.cpp │ │ └── pch.h │ ├── BlinkyService.sln │ ├── BlinkyService │ │ ├── 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 │ │ ├── BlinkyService.vcxproj │ │ ├── BlinkyServiceProvider.cpp │ │ ├── BlinkyServiceProvider.h │ │ ├── BlinkyService_TemporaryKey.pfx │ │ ├── Package.appxmanifest │ │ ├── pch.cpp │ │ └── pch.h │ └── README.md ├── CS │ ├── BlinkyClient.sln │ ├── BlinkyClient │ │ ├── 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 │ │ ├── BlinkyClient.csproj │ │ ├── BlinkyClient_TemporaryKey.pfx │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ └── StartupTask.cs │ ├── BlinkyService.sln │ ├── BlinkyService │ │ ├── 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 │ │ ├── BlinkyService.csproj │ │ ├── BlinkyService_TemporaryKey.pfx │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ └── StartupTask.cs │ └── README.md └── README.md ├── AppServiceSharedNotepad ├── CS │ ├── NotepadClientBackgroundApplication.sln │ ├── NotepadClientBackgroundApplication │ │ ├── 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 │ │ ├── NotepadClientBackgroundApplication.csproj │ │ ├── NotepadClientBackgroundApplication_TemporaryKey.pfx │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ └── StartupTask.cs │ ├── NotepadService.sln │ ├── NotepadService │ │ ├── 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 │ │ ├── Notepad.cs │ │ ├── NotepadService.csproj │ │ ├── NotepadService_TemporaryKey.pfx │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ └── StartupTask.cs │ ├── NotepadServiceClientApp.sln │ ├── NotepadServiceClientApp │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ApplicationInsights.config │ │ ├── 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 │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── NotepadServiceClientApp.csproj │ │ ├── NotepadServiceClientApp_TemporaryKey.pfx │ │ ├── Package.appxmanifest │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ └── README.md └── README.md ├── CustomDeviceAccessor ├── CPP │ ├── App.xaml │ ├── App.xaml.cpp │ ├── App.xaml.h │ ├── 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 │ ├── CustomDeviceAccessorUWP.filters │ ├── CustomDeviceAccessorUWP.sln │ ├── CustomDeviceAccessorUWP.vcxproj │ ├── CustomDeviceAccessorUWP_TemporaryKey.pfx │ ├── MainPage.xaml │ ├── MainPage.xaml.cpp │ ├── MainPage.xaml.h │ ├── Package.appxmanifest │ ├── README.md │ ├── pch.cpp │ └── pch.h └── README.md ├── DMMocKPortal ├── App.config ├── App.xaml ├── App.xaml.cs ├── DMConstants.cs ├── DMMockPortal.csproj ├── DMMockPortal.sln ├── DeploymentControl.xaml ├── DeploymentControl.xaml.cs ├── DeploymentListControl.xaml ├── DeploymentListControl.xaml.cs ├── DeviceListControl.xaml ├── DeviceListControl.xaml.cs ├── DeviceTwinControl.xaml ├── DeviceTwinControl.xaml.cs ├── DevicesQuery.cs ├── Dialogs │ ├── SamplesDialog.xaml │ └── SamplesDialog.xaml.cs ├── IotHubManager.cs ├── JsonTemplates.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── PropertyControls │ ├── ApplicationListControl.xaml │ ├── ApplicationListControl.xaml.cs │ ├── AzureStorageControl.xaml │ ├── AzureStorageControl.xaml.cs │ ├── RebootInfoControl.xaml │ ├── RebootInfoControl.xaml.cs │ ├── WindowsUpdateControl.xaml │ └── WindowsUpdateControl.xaml.cs ├── TabControl.xaml ├── TabControl.xaml.cs ├── adm.windows_telemetry_arm_v1.json ├── adm.windows_telemetry_x64_v1.json ├── dm-mock-portal.png ├── packages.config ├── readme.md └── windows_telemetry_x64_v1.json.txt ├── DeviceIOContoller ├── CPP │ ├── App.xaml │ ├── App.xaml.cpp │ ├── App.xaml.h │ ├── 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 │ ├── DeviceIoControlUwp.sln │ ├── DeviceIoControlUwp.vcxproj │ ├── DeviceIoControlUwp.vcxproj.filters │ ├── DeviceIoControlUwp_TemporaryKey.pfx │ ├── MainPage.xaml │ ├── MainPage.xaml.cpp │ ├── MainPage.xaml.h │ ├── Package.appxmanifest │ ├── README.md │ ├── pch.cpp │ └── pch.h └── README.md ├── DualOperator ├── Dual Operator objects.jpg ├── DualOperator.sln ├── DualOperator │ ├── DualOperator.csproj │ ├── DualOperator.csproj.user │ ├── Enumerations │ │ ├── BroadcastDeviceType.cs │ │ ├── DataCommand.cs │ │ ├── DeviceNotification.cs │ │ ├── HIDUsage.cs │ │ ├── HIDUsagePage.cs │ │ ├── KeyEventF.cs │ │ ├── MouseEventF.cs │ │ ├── OutputType.cs │ │ ├── RawInputDeviceFlags.cs │ │ └── RawInputDeviceInfo.cs │ ├── Helpers │ │ ├── DeviceType.cs │ │ ├── Extensions.cs │ │ ├── KeyMapper.cs │ │ ├── KeyPressEvent.cs │ │ ├── KeyboardProcessor.cs │ │ ├── LoadOperator.cs │ │ ├── PreMessageFilter.cs │ │ ├── RawInput.cs │ │ ├── RawInputEventArg.cs │ │ ├── RawKeyboard.cs │ │ ├── RegistryAccess.cs │ │ ├── SendKeyMapper.cs │ │ └── Win32.cs │ ├── Models │ │ ├── KeyboardItem.cs │ │ ├── OperatorApp.cs │ │ ├── RunningApp.cs │ │ └── WinStruct.cs │ ├── OperatorManager.Designer.cs │ ├── OperatorManager.cs │ ├── OperatorManager.resx │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── ScanOperator.Designer.cs │ ├── ScanOperator.cs │ ├── ScanOperator.resx │ ├── Structures │ │ ├── BroadcastDeviceInterface.cs │ │ ├── DeviceInfo.cs │ │ ├── DeviceInfoHID.cs │ │ ├── DeviceInfoKeyboard.cs │ │ ├── DeviceInfoMouse.cs │ │ ├── HardwareOutput.cs │ │ ├── InputData.cs │ │ ├── KeyboardOutput.cs │ │ ├── MouseOutput.cs │ │ ├── OperatorKeyState.cs │ │ ├── Output.cs │ │ ├── OutputUnion.cs │ │ ├── RawData.cs │ │ ├── RawHID.cs │ │ ├── RawInputDevice.cs │ │ ├── RawInputDeviceList.cs │ │ ├── RawInputHeader.cs │ │ ├── RawKeyboard.cs │ │ └── RawMouse.cs │ └── operators.json ├── README.md └── TestApp │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Models │ └── AppTitle.cs │ ├── Program.cs │ ├── TestApp.csproj │ ├── TestApp.csproj.user │ └── apptitle.json ├── ExternalProcessLauncher ├── CS │ ├── ProcessLauncherSample.sln │ ├── ProcessLauncherSample │ │ ├── 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 │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── ProcessLauncherSample.csproj │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ └── TestProcessLauncher_CS_TemporaryKey.pfx │ ├── README.md │ └── SampleConsoleApplication │ │ ├── ConsoleApplication.cpp │ │ ├── SampleConsoleApplication.vcxproj │ │ ├── SampleConsoleApplication.vcxproj.filters │ │ ├── pch.cpp │ │ └── pch.h └── README.md ├── FlowVolume ├── CS │ ├── FlowVolume.sln │ ├── FlowVolume │ │ ├── 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 │ │ ├── Flow.cs │ │ ├── FlowVolume.csproj │ │ ├── FlowVolume_TemporaryKey.pfx │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MeasurementChangedEventArgs.cs │ │ ├── Models │ │ │ └── Measurement.cs │ │ ├── Package.appxmanifest │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ └── README.md └── README.md ├── ForegroundAppWithBackgroundApp ├── CPP │ ├── ForegroundAppWithBackgroundAppCpp.sln │ ├── MyBackgroundApplicationCpp │ │ ├── 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 │ │ ├── MyBackgroundApplicationCpp.vcxproj │ │ ├── MyBackgroundApplicationCpp.vcxproj.filters │ │ ├── Package.appxmanifest │ │ ├── StartupTask.cpp │ │ ├── StartupTask.h │ │ ├── pch.cpp │ │ └── pch.h │ ├── MyForegroundAppCpp │ │ ├── App.xaml │ │ ├── App.xaml.cpp │ │ ├── App.xaml.h │ │ ├── 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 │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cpp │ │ ├── MainPage.xaml.h │ │ ├── MyForegroundAppCpp.vcxproj │ │ ├── MyForegroundAppCpp.vcxproj.filters │ │ ├── Package.appxmanifest │ │ ├── pch.cpp │ │ └── pch.h │ └── README.md ├── CS │ ├── ForegroundAppWithBackgroundApp.sln │ ├── MyBackgroundApplication │ │ ├── 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 │ │ ├── MyBackgroundApplication.csproj │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ └── StartupTask.cs │ ├── MyForegroundApp │ │ ├── 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 │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MyForegroundApp.csproj │ │ ├── MyForegroundApp_TemporaryKey.pfx │ │ ├── Package.appxmanifest │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ └── README.md └── README.md ├── GPIOKmdfDemo ├── LICENSE.txt ├── acpitable │ ├── MBM_ACPITABL │ │ └── ACPITABL.dat │ ├── RPi2_ACPITABL │ │ └── ACPITABL.dat │ └── SBC_ACPITABL │ │ └── ACPITABL.dat ├── asl │ ├── dragon.asl │ ├── gpiokmdfdemo.asl │ └── rpi2.asl ├── gpiokmdfdemo.sln ├── gpiokmdfdemo │ ├── gpiokmdfdemo.cpp │ ├── gpiokmdfdemo.h │ ├── gpiokmdfdemo.inf │ ├── gpiokmdfdemo.vcxproj │ └── gpiokmdfdemo.vcxproj.filters └── readme.md ├── GPIOOneWire ├── CPP │ ├── App.xaml │ ├── App.xaml.cpp │ ├── App.xaml.h │ ├── 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 │ │ └── schematic.png │ ├── GpioOneWire.vcxproj │ ├── GpioOneWire.vcxproj.filters │ ├── MainPage.xaml │ ├── MainPage.xaml.cpp │ ├── MainPage.xaml.h │ ├── Package.appxmanifest │ ├── ReadMe.md │ ├── pch.cpp │ ├── pch.h │ └── schematic.sch └── ReadMe.md ├── HIDInjector ├── HidInjector.sln ├── HidinjectorPackage │ ├── HidInjectorPackage.vcxproj │ └── HidInjectorPackage.vcxproj.filters ├── README.md ├── app │ ├── HidDevice.cpp │ ├── HidDevice.h │ ├── HidInject.cpp │ ├── HidInject.h │ ├── HidInjectorTest.c │ ├── HidInjectorTest.rc │ ├── HidInjectorTest.vcxproj │ ├── HidInjectorTest.vcxproj.Filters │ ├── SendInput.cpp │ └── SendInput.h ├── driver │ ├── CreateDriverPackage.cmd │ ├── HidDriver.arm.pkg.xml │ ├── HidInjectorKd.c │ ├── HidInjectorKd.h │ ├── HidInjectorKd.rc │ ├── HidInjectorKd.vcxproj │ ├── HidInjectorKd.vcxproj.Filters │ ├── HidInjectorSample.inx │ ├── rawpdo.c │ └── util.c └── inc │ └── common.h ├── Hello Blinky ├── CS │ ├── 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 │ ├── Blinky.csproj │ ├── Blinky.sln │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── README.md ├── Cpp │ ├── App.xaml │ ├── App.xaml.cpp │ ├── App.xaml.h │ ├── 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 │ ├── BlinkyCpp.sln │ ├── BlinkyCpp.vcxproj │ ├── BlinkyCpp.vcxproj.filters │ ├── MainPage.xaml │ ├── MainPage.xaml.cpp │ ├── MainPage.xaml.h │ ├── Package.appxmanifest │ ├── README.md │ ├── pch.cpp │ └── pch.h └── README.md ├── HelloBlinkyBackground ├── CPP │ ├── 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 │ ├── BlinkyHeadlessCpp.sln │ ├── BlinkyHeadlessCpp.vcxproj │ ├── BlinkyHeadlessCpp.vcxproj.filters │ ├── BlinkyHeadlessCpp_TemporaryKey.pfx │ ├── Package.appxmanifest │ ├── README.md │ ├── StartupTask.cpp │ ├── StartupTask.h │ ├── pch.cpp │ └── pch.h ├── 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 │ ├── BlinkyHeadlessCS.csproj │ ├── BlinkyHeadlessCS.sln │ ├── BlinkyHeadlessCS_TemporaryKey.pfx │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── README.md │ └── StartupTask.cs ├── README.md └── VB │ ├── 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 │ ├── BlinkyHeadlessVB.sln │ ├── BlinkyHeadlessVB.vbproj │ ├── BlinkyHeadlessVB_TemporaryKey.pfx │ ├── My Project │ ├── AssemblyInfo.vb │ └── Default.rd.xml │ ├── Package.appxmanifest │ ├── README.md │ └── StartupTask.vb ├── I2CCompass ├── AN203_Compass_Heading_Using_Magnetometers.pdf ├── CS │ ├── 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 │ ├── Converters │ │ └── HeadingConverter.cs │ ├── Exceptions │ │ ├── I2CControllerAddressException.cs │ │ └── I2CControllerFoundException.cs │ ├── I2CCompass.csproj │ ├── I2CCompass.sln │ ├── I2CCompass_TemporaryKey.pfx │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── Sensors │ │ ├── CompassReading.cs │ │ ├── HMC5883L.cs │ │ ├── ICompass.cs │ │ └── MagnetometerMeasurementMode.cs │ ├── ViewModels │ │ └── MainPageViewModel.cs │ └── Views │ │ ├── MainPage.xaml │ │ └── MainPage.xaml.cs ├── HMC5883L_3-Axis_Digital_Compass_IC.pdf └── README.md ├── I2CPortExpander ├── CS │ ├── 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 │ ├── I2cPortExpander.csproj │ ├── I2cPortExpander.sln │ ├── I2cPortExpander_TemporaryKey.pfx │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ └── AssemblyInfo.cs │ └── README.md └── README.md ├── IoTEnterpriseDefault ├── CS │ ├── IoTEnterpriseDefaultApp.sln │ ├── README.md │ ├── SmartDisplay.Contracts │ │ ├── Controls │ │ │ ├── BaseViewModel.cs │ │ │ ├── CommandBarButton.cs │ │ │ ├── DialogButton.cs │ │ │ ├── MessageTemplateControl.xaml │ │ │ ├── MessageTemplateControl.xaml.cs │ │ │ ├── Notification.cs │ │ │ ├── PageBase.cs │ │ │ ├── RelayCommand.cs │ │ │ ├── SettingsBaseViewModel.cs │ │ │ ├── SettingsUserControlBase.cs │ │ │ ├── SidePopupControl.xaml │ │ │ ├── SidePopupControl.xaml.cs │ │ │ ├── SidePopupControlVM.cs │ │ │ ├── TitleContentFrame.xaml │ │ │ └── TitleContentFrame.xaml.cs │ │ ├── Interfaces │ │ │ ├── IAppService.cs │ │ │ ├── IAppServiceProvider.cs │ │ │ ├── IAuthManager.cs │ │ │ ├── IAuthProvider.cs │ │ │ ├── ICustomContentService.cs │ │ │ ├── IFeature.cs │ │ │ ├── IIoTDmService.cs │ │ │ ├── IIoTHubService.cs │ │ │ ├── ILogService.cs │ │ │ ├── INotificationControl.cs │ │ │ ├── IPageService.cs │ │ │ ├── ISettingsProvider.cs │ │ │ ├── ISmartDisplayService.cs │ │ │ ├── ITelemetryService.cs │ │ │ └── IWeather.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── SmartDisplay.Contracts.rd.xml │ │ └── SmartDisplay.Contracts.csproj │ ├── SmartDisplay.Features │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── SmartDisplay.Features.rd.xml │ │ ├── SmartDisplay.Features.csproj │ │ ├── Strings │ │ │ └── en-US │ │ │ │ └── Resources.resw │ │ ├── Utils │ │ │ └── FeatureUtil.cs │ │ └── WinML │ │ │ ├── Helpers │ │ │ ├── MLHelper.cs │ │ │ └── MnistHelper.cs │ │ │ ├── Interfaces │ │ │ └── IVideoFrameInputController.cs │ │ │ ├── Models │ │ │ └── mnist.onnx │ │ │ ├── Views │ │ │ ├── MnistPage.xaml │ │ │ ├── MnistPage.xaml.cs │ │ │ └── MnistPageVM.cs │ │ │ ├── WinMLFeature.cs │ │ │ └── Wrappers │ │ │ └── mnist.cs │ ├── SmartDisplay.Utils │ │ ├── AnimationUtil.cs │ │ ├── Authentication │ │ │ ├── MsalProvider.cs │ │ │ └── WamProvider.cs │ │ ├── Common.cs │ │ ├── Constants.cs │ │ ├── Converters │ │ │ ├── BooleanToFontWeightConverter.cs │ │ │ ├── BooleanToVisibilityConverter.cs │ │ │ ├── InvertBooleanConverter.cs │ │ │ ├── StringToBooleanConverter.cs │ │ │ ├── StringToVisibilityConverter.cs │ │ │ ├── WeatherConverters.cs │ │ │ ├── WeatherIconConverter.cs │ │ │ └── WifiGlyphConverter.cs │ │ ├── DevicePortalUtil.cs │ │ ├── FileHelper.cs │ │ ├── GraphHelper.cs │ │ ├── ImageUtil.cs │ │ ├── IoTHubUtil.cs │ │ ├── Keys.cs │ │ ├── LiveApiUtil.cs │ │ ├── LocationUtil.cs │ │ ├── ProcessLauncherUtil.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── SmartDisplay.Utils.rd.xml │ │ ├── ServiceUtil.cs │ │ ├── SmartDisplay.Utils.csproj │ │ ├── WeatherHelper.cs │ │ └── WebUtil.cs │ └── SmartDisplay │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AppComposer.cs │ │ ├── AppService.cs │ │ ├── Assets │ │ ├── BingMapsQRCode.png │ │ ├── DB410-tutorials.png │ │ ├── DB410Board.png │ │ ├── Fonts │ │ │ ├── IOTMDL2.1.35.ttf │ │ │ ├── MSNMDL2.ttf │ │ │ ├── OOBMDL2.ttf │ │ │ └── SegMDL2.1.18.ttf │ │ ├── GenericBoard.png │ │ ├── Images │ │ │ ├── MSC17_avatars_people_023a.png │ │ │ ├── music-icon.png │ │ │ ├── robot-transparent.png │ │ │ └── weather-icon.png │ │ ├── LockScreenLogo.scale-200.png │ │ ├── MBMBoard.png │ │ ├── Messages │ │ │ └── LogDescription.txt │ │ ├── RaspberryPiBoard.png │ │ ├── SplashScreen.scale-100.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 │ │ ├── logo_white.png │ │ └── rpi2-tutorials.png │ │ ├── Package.appxmanifest │ │ ├── Presenters │ │ ├── BluetoothDisplayHelpers.cs │ │ ├── ConnectedDevicePresenter.cs │ │ ├── DeviceInfoPresenter.cs │ │ ├── DevicePortalDisplayPresenters.cs │ │ ├── LanguageManager.cs │ │ ├── NetworkPresenter.cs │ │ └── WiFiListViewItemPresenter.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ │ ├── SensorServer │ │ ├── ITempHumiditySensor.cs │ │ ├── SI7021_TempHumiditySensor.cs │ │ └── SensorServer.cs │ │ ├── SmartDisplay.csproj │ │ ├── SmartDisplayStyles.xaml │ │ ├── SmartDisplay_TemporaryKey.pfx │ │ ├── Strings │ │ ├── de-DE │ │ │ └── Resources.resw │ │ ├── en-US │ │ │ └── Resources.resw │ │ ├── es-ES │ │ │ └── Resources.resw │ │ ├── fr-FR │ │ │ └── Resources.resw │ │ ├── it-IT │ │ │ └── Resources.resw │ │ ├── ja-JP │ │ │ └── Resources.resw │ │ ├── ko │ │ │ └── Resources.resw │ │ ├── pt-BR │ │ │ └── Resources.resw │ │ ├── ru-RU │ │ │ └── Resources.resw │ │ ├── zh-TW │ │ │ └── Resources.resw │ │ └── zh-hans │ │ │ └── Resources.resw │ │ ├── Telemetry │ │ └── MultiTelemetryService.cs │ │ ├── UIControls │ │ ├── BackdropBlurBrush.cs │ │ ├── DevicePortalLoginControl.xaml │ │ ├── DevicePortalLoginControl.xaml.cs │ │ ├── DevicePortalLoginControlVM.cs │ │ ├── DirectConnectionControl.xaml │ │ ├── DirectConnectionControl.xaml.cs │ │ ├── JumboNotification.xaml │ │ ├── JumboNotification.xaml.cs │ │ ├── JumboNotificationVM.cs │ │ ├── LoadingPanelControl.xaml │ │ ├── LoadingPanelControl.xaml.cs │ │ ├── LoadingPanelVM.cs │ │ ├── LoginPopupControl.xaml │ │ ├── LoginPopupControl.xaml.cs │ │ ├── MusicTransportControls.cs │ │ ├── NavBarDataItem.cs │ │ ├── NetworkListControl.xaml │ │ ├── NetworkListControl.xaml.cs │ │ ├── NetworkListControlTemplate.xaml │ │ ├── NetworkListControlTemplate.xaml.cs │ │ ├── NotificationControl.xaml │ │ ├── NotificationControl.xaml.cs │ │ ├── NotificationControlVM.cs │ │ ├── OOBEListViewItem.cs │ │ ├── OOBEPageTemplate.xaml │ │ ├── OOBEPageTemplate.xaml.cs │ │ ├── OOBEPageTemplateVM.cs │ │ ├── ScreenSaver.xaml │ │ ├── ScreenSaver.xaml.cs │ │ ├── ScreensaverVM.cs │ │ ├── Settings │ │ │ ├── BrowserSettingsControl.xaml │ │ │ ├── BrowserSettingsControl.xaml.cs │ │ │ ├── BrowserSettingsControlVM.cs │ │ │ ├── SlideshowSettingsControl.xaml │ │ │ ├── SlideshowSettingsControl.xaml.cs │ │ │ ├── SlideshowSettingsControlVM.cs │ │ │ ├── SmartDisplaySettingsBaseViewModel.cs │ │ │ ├── TileSettingsControl.xaml │ │ │ ├── TileSettingsControl.xaml.cs │ │ │ ├── TileSettingsControlVM.cs │ │ │ ├── WeatherSettingsControl.xaml │ │ │ ├── WeatherSettingsControl.xaml.cs │ │ │ └── WeatherSettingsControlVM.cs │ │ ├── TileButtonVM.cs │ │ ├── TileGridView.xaml │ │ ├── TileGridView.xaml.cs │ │ ├── UserDialog.xaml │ │ ├── UserDialog.xaml.cs │ │ └── UserDialogVM.cs │ │ ├── Utils │ │ ├── Authentication │ │ │ └── AuthenticationManager.cs │ │ ├── BluetoothServerHelper.cs │ │ ├── Constants.cs │ │ ├── DeviceTypeInformation.cs │ │ ├── InboundPairing.cs │ │ ├── LogUtil.cs │ │ ├── NativeMethods.cs │ │ ├── NetworkAdapterUtil.cs │ │ ├── PageUtil.cs │ │ ├── SettingsProvider.cs │ │ ├── UI │ │ │ ├── MultiViewManager.cs │ │ │ ├── UiManager.cs │ │ │ └── ViewLifetimeControl.cs │ │ ├── UpdateManager.cs │ │ └── Weather │ │ │ ├── InternationalWeather.cs │ │ │ ├── NWSWeather.cs │ │ │ └── WeatherProvider.cs │ │ ├── Views │ │ ├── DevicePortal │ │ │ ├── FlightingPage.xaml │ │ │ ├── FlightingPage.xaml.cs │ │ │ ├── FlightingPageVM.cs │ │ │ ├── InfoPage.xaml │ │ │ ├── InfoPage.xaml.cs │ │ │ ├── InfoPageVM.cs │ │ │ ├── PackagesPage.xaml │ │ │ ├── PackagesPage.xaml.cs │ │ │ ├── PackagesPageVM.cs │ │ │ ├── WindowsUpdatePage.xaml │ │ │ ├── WindowsUpdatePage.xaml.cs │ │ │ └── WindowsUpdatePageVM.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MainPageVM.cs │ │ ├── MainPages │ │ │ ├── AppInfo │ │ │ │ ├── GitHubPage.xaml │ │ │ │ ├── GitHubPage.xaml.cs │ │ │ │ ├── HelpPage.xaml │ │ │ │ ├── HelpPage.xaml.cs │ │ │ │ ├── HelpPageVM.cs │ │ │ │ ├── LogsPage.xaml │ │ │ │ ├── LogsPage.xaml.cs │ │ │ │ ├── LogsPageVM.cs │ │ │ │ ├── NotificationsPage.xaml │ │ │ │ ├── NotificationsPage.xaml.cs │ │ │ │ └── NotificationsPageVM.cs │ │ │ ├── AppLauncherPage.xaml │ │ │ ├── AppLauncherPage.xaml.cs │ │ │ ├── AppLauncherPageVM.cs │ │ │ ├── IWebViewElementController.cs │ │ │ ├── Media │ │ │ │ ├── DrawingPage.xaml │ │ │ │ ├── DrawingPage.xaml.cs │ │ │ │ ├── DrawingPageVM.cs │ │ │ │ ├── IMediaPlayerElementController.cs │ │ │ │ ├── MusicPlayerPage.xaml │ │ │ │ ├── MusicPlayerPage.xaml.cs │ │ │ │ ├── MusicPlayerPageVM.cs │ │ │ │ ├── PhotoPage.xaml │ │ │ │ ├── PhotoPage.xaml.cs │ │ │ │ ├── PhotoPageVM.cs │ │ │ │ ├── WeatherPage.xaml │ │ │ │ ├── WeatherPage.xaml.cs │ │ │ │ └── WeatherPageVM.cs │ │ │ ├── System │ │ │ │ ├── AuthenticationPage.xaml │ │ │ │ ├── AuthenticationPage.xaml.cs │ │ │ │ ├── AuthenticationPageVM.cs │ │ │ │ ├── CommandLinePage.xaml │ │ │ │ ├── CommandLinePage.xaml.cs │ │ │ │ ├── DeviceInfoPage.xaml │ │ │ │ ├── DeviceInfoPage.xaml.cs │ │ │ │ ├── DeviceInfoPageVM.cs │ │ │ │ ├── SessionLogPage.xaml │ │ │ │ ├── SessionLogPage.xaml.cs │ │ │ │ └── SessionLogPageVM.cs │ │ │ ├── TilePage.xaml │ │ │ ├── TilePage.xaml.cs │ │ │ ├── TilePageVM.cs │ │ │ ├── WebBrowserPage.xaml │ │ │ ├── WebBrowserPage.xaml.cs │ │ │ └── WebBrowserPageVM.cs │ │ ├── OOBE │ │ │ ├── IOOBEWindowService.cs │ │ │ ├── OOBENetworkPage.xaml │ │ │ ├── OOBENetworkPage.xaml.cs │ │ │ ├── OOBEPageBase.cs │ │ │ ├── OOBEPermissionsPage.xaml │ │ │ ├── OOBEPermissionsPage.xaml.cs │ │ │ ├── OOBEPermissionsPageVM.cs │ │ │ ├── OOBEPrivacyPage.xaml │ │ │ ├── OOBEPrivacyPage.xaml.cs │ │ │ ├── OOBEPrivacyPageVM.cs │ │ │ ├── OOBEWelcomePage.xaml │ │ │ ├── OOBEWelcomePage.xaml.cs │ │ │ └── OOBEWelcomePageVM.cs │ │ └── Settings │ │ │ ├── AppSettings.xaml │ │ │ ├── AppSettings.xaml.cs │ │ │ ├── AppSettingsVM.cs │ │ │ ├── AppUpdateSettings.xaml │ │ │ ├── AppUpdateSettings.xaml.cs │ │ │ ├── AppUpdateSettingsVM.cs │ │ │ ├── BluetoothSettings.xaml │ │ │ ├── BluetoothSettings.xaml.cs │ │ │ ├── BluetoothSettingsVM.cs │ │ │ ├── DiagnosticSettings.xaml │ │ │ ├── DiagnosticSettings.xaml.cs │ │ │ ├── DiagnosticSettingsVM.cs │ │ │ ├── LocationSettings.xaml │ │ │ ├── LocationSettings.xaml.cs │ │ │ ├── LocationSettingsVM.cs │ │ │ ├── NetworkPropertiesPage.xaml │ │ │ ├── NetworkPropertiesPage.xaml.cs │ │ │ ├── NetworkSettings.xaml │ │ │ ├── NetworkSettings.xaml.cs │ │ │ ├── NetworkSettingsVM.cs │ │ │ ├── PowerSettings.xaml │ │ │ ├── PowerSettings.xaml.cs │ │ │ ├── PowerSettingsVM.cs │ │ │ ├── SettingsPage.xaml │ │ │ ├── SettingsPage.xaml.cs │ │ │ ├── SystemSettings.xaml │ │ │ ├── SystemSettings.xaml.cs │ │ │ └── SystemSettingsVM.cs │ │ └── logging │ │ └── EtwLogService.cs └── README.md ├── IoTHubClients ├── CS │ ├── 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 │ │ └── test │ ├── IoTHubClients.sln │ ├── IoTHubForegroundClient.csproj │ ├── IoTHubForegroundClient_TemporaryKey.pfx │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── README.md └── README.md ├── MemoryStatus ├── README.md └── cpp │ ├── ConsoleApplication.cpp │ ├── MemoryStatus.sln │ ├── MemoryStatus.vcxproj │ ├── README.md │ ├── pch.cpp │ └── pch.h ├── NTServiceRpc ├── README.md └── cpp │ ├── App.xaml │ ├── App.xaml.cpp │ ├── App.xaml.h │ ├── MainPage.xaml │ ├── MainPage.xaml.cpp │ ├── MainPage.xaml.h │ ├── NTServiceRpc.sln │ ├── NTServiceRpc.vcxproj │ ├── NTServiceRpc.vcxproj.filters │ ├── Package.appxmanifest │ ├── README.md │ ├── RpcAsyncWrapper.cpp │ ├── RpcAsyncWrapper.h │ ├── RpcClient.cpp │ ├── RpcClient.h │ ├── RpcInterface.c │ ├── Service │ ├── Interface │ │ ├── RpcInterface.acf │ │ ├── RpcInterface.idl │ │ ├── RpcInterface.vcxproj │ │ └── RpcInterface.vcxproj.filters │ └── Server │ │ ├── RpcServer.cpp │ │ ├── RpcServer.h │ │ ├── RpcServer.vcxproj │ │ ├── RpcServer.vcxproj.filters │ │ ├── SampleService.cpp │ │ ├── SampleService.h │ │ ├── ServiceBase.cpp │ │ ├── ServiceBase.h │ │ ├── ServiceControl.cpp │ │ ├── ServiceControl.h │ │ ├── ServiceInstaller.cpp │ │ ├── ServiceInstaller.h │ │ ├── ServiceStatusService.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── Styles.xaml │ ├── docs │ ├── ACL.md │ ├── Client.md │ ├── IoT-PowerShell-session.png │ ├── IoT.md │ └── Server.md │ ├── pch.cpp │ └── pch.h ├── Potentiometer ├── CS │ ├── 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 │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── PotentiometerSensor.csproj │ ├── PotentiometerSensor.sln │ ├── PotentiometerSensor_TemporaryKey.pfx │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── README.md └── README.md ├── PushButtton ├── CS │ ├── 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 │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── PushButton.csproj │ ├── PushButton.sln │ ├── PushButton_TemporaryKey.pfx │ └── README.md └── README.md ├── RFIDForIoT ├── CS │ ├── Mfrc522Lib │ │ ├── Mfrc522.cs │ │ ├── Mfrc522Lib.csproj │ │ ├── PcdCommands.cs │ │ ├── PiccCommands.cs │ │ ├── PiccResponses.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Mfrc522Lib.rd.xml │ │ ├── Registers.cs │ │ └── Uid.cs │ ├── PiezoBuzzerLib │ │ ├── Buzzer.cs │ │ ├── PiezoBuzzerLib.csproj │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── PiezoBuzzerLib.rd.xml │ ├── README.md │ ├── RFIDForIoT.sln │ └── RFIDForIoT │ │ ├── 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 │ │ ├── IAsyncInitialization.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Models │ │ └── CardModel.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ │ ├── RFIDForIoT.csproj │ │ └── RFIDForIoT_TemporaryKey.pfx └── README.md ├── RGBLED ├── CS │ ├── 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 │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── README.md │ ├── RGBLED.csproj │ ├── RGBLED.sln │ └── RGBLED_TemporaryKey.pfx └── README.md ├── RemovablePackages ├── README.md └── RemoveOnIoTEnterpriseS.ps1 ├── RemoveOnIoTEnterpriseS.ps1 ├── SPIDisplay ├── CS │ ├── DisplayFont │ │ ├── DisplayFont.csproj │ │ ├── DisplayFontClass.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── README.md │ ├── SPIDisplay.sln │ └── SPIDisplay │ │ ├── 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 │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ │ ├── SPIDisplay.csproj │ │ └── SPIDisplay_TemporaryKey.pfx └── README.md ├── SerialNumber ├── CS │ ├── 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 │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── README.md │ ├── serialnumber.csproj │ └── serialnumber.sln └── README.md ├── SerialUART ├── CPP │ ├── App.xaml │ ├── App.xaml.cpp │ ├── App.xaml.h │ ├── 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 │ ├── MainPage.xaml │ ├── MainPage.xaml.cpp │ ├── MainPage.xaml.h │ ├── Package.appxmanifest │ ├── README.md │ ├── SerialSampleCpp.sln │ ├── SerialSampleCpp.vcxproj │ ├── SerialSampleCpp.vcxproj.filters │ ├── pch.cpp │ └── pch.h ├── CS │ ├── 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 │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── README.md │ ├── SerialSample.csproj │ └── SerialSample.sln └── README.md ├── ShellLauncher ├── README.md ├── SampleBridgeWmiScripts │ ├── README.md │ └── ShellLauncherBridgeWmiHelpers.ps1 ├── SampleConfigXmls │ ├── README.md │ ├── ShellLauncherAutoLogonUwp.xml │ ├── ShellLauncherAzureADMultiUser.xml │ ├── ShellLauncherConfiguration_Demo.syncml │ ├── ShellLauncherDefaultOnlyUwp.xml │ └── ShellLauncherSid.xml └── ShellLauncherV2 │ ├── AnotherUwpApp │ ├── AnotherUwpApp.csproj │ ├── AnotherUwpApp_TemporaryKey.pfx │ ├── 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 │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── README.md │ ├── Images │ ├── UwpSampleScreenCapture.png │ └── Win32SampleScreenCapture.png │ ├── ShellLauncherV2Demo.sln │ ├── ShellLauncherV2DemoUwp │ ├── 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 │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── README.md │ ├── SecondaryViewPage.xaml │ ├── SecondaryViewPage.xaml.cs │ ├── ShellLauncherV2DemoUwp.csproj │ └── ShellLauncherV2DemoUwp_TemporaryKey.pfx │ ├── ShellLauncherV2DemoWin32 │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── IApplicationActivationManager.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── ShellLauncherV2DemoWin32.csproj │ └── ShellLauncherV2DemoWin32Installer │ ├── README.md │ └── ShellLauncherV2DemoWin32Installer.vdproj ├── SpeechTranslator ├── CS │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── Logo44.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── AudioCapturePermissions.cs │ ├── AzureAuthentication.cs │ ├── ConstantParam.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── README.md │ ├── SpeechTranslator.csproj │ ├── SpeechTranslator.sln │ ├── SpeechTranslator_TemporaryKey.pfx │ └── TranslatorManager.cs └── README.md ├── TempForceSensor ├── CS │ ├── 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 │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── README.md │ ├── TempSensor.csproj │ ├── TempSensor.sln │ └── TempSensor_TemporaryKey.pfx └── README.md ├── VideoCaptureSample ├── CS │ ├── 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 │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── README.md │ ├── VideoCaptureSample.csproj │ ├── VideoCaptureSample.sln │ └── VideoCaptureSample_TemporaryKey.pfx └── README.md ├── VirtualMicrophoneArrayDriver ├── Cpp │ ├── README.md │ ├── VirtualAudioMicArray.sln │ └── VirtualAudioMicArray │ │ ├── KsPin.cpp │ │ ├── KsPin.h │ │ ├── RtAudioPin.cpp │ │ ├── RtAudioPin.h │ │ ├── UsbAudioPin.cpp │ │ ├── UsbAudioPin.h │ │ ├── VirtualAudioMicArray.h │ │ ├── VirtualAudioMicArray.inf │ │ ├── VirtualAudioMicArray.vcxproj │ │ ├── VirtualAudioMicArray.vcxproj.filters │ │ ├── VirtualPin.cpp │ │ ├── VirtualPin.h │ │ ├── adapter.cpp │ │ ├── basetopo.cpp │ │ ├── basetopo.h │ │ ├── common.cpp │ │ ├── common.h │ │ ├── kshelper.cpp │ │ ├── kshelper.h │ │ ├── micarray1toptable.h │ │ ├── micarraytopo.cpp │ │ ├── micarraytopo.h │ │ ├── micarraywavtable.h │ │ ├── minipairs.h │ │ ├── minwavert.cpp │ │ ├── minwavert.h │ │ ├── minwavertstream.cpp │ │ ├── minwavertstream.h │ │ └── simple.h └── README.md ├── WebcamApp ├── CS │ ├── 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 │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── README.md │ ├── WebCamSample.csproj │ ├── WebCamSample.sln │ └── WebCamSample_TemporaryKey.pfx └── README.md └── WifiConnector ├── CS ├── 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 │ ├── open_1bar.png │ ├── open_2bar.png │ ├── open_3bar.png │ ├── open_4bar.png │ ├── open_5bar.png │ ├── secure_1bar.png │ ├── secure_2bar.png │ ├── secure_3bar.png │ ├── secure_4bar.png │ ├── secure_5bar.png │ ├── smalltile-sdk.png │ ├── splash-sdk.png │ ├── squaretile-sdk.png │ ├── storelogo-sdk.png │ ├── tile-sdk.png │ └── wps-button40x40.png ├── DisplayHelpers.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── README.md ├── SampleConfiguration.cs ├── Styles │ └── Styles.xaml ├── WiFiConnect.csproj ├── WiFiConnect.sln ├── WiFiConnect_Scenario.xaml └── WiFiConnect_Scenario.xaml.cs └── README.md /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Microsoft Open Source Code of Conduct 2 | 3 | This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). 4 | 5 | Resources: 6 | 7 | - [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/) 8 | - [Microsoft Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) 9 | - Contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with questions or concerns 10 | -------------------------------------------------------------------------------- /Resources/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Resources/AppRunning-LEDOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/AppRunning-LEDOff.png -------------------------------------------------------------------------------- /Resources/AppRunning-LEDOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/AppRunning-LEDOn.png -------------------------------------------------------------------------------- /Resources/AppServiceSharedNotepad-Messages.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/AppServiceSharedNotepad-Messages.jpg -------------------------------------------------------------------------------- /Resources/AppServiceSharedNotepad-NoMessages.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/AppServiceSharedNotepad-NoMessages.jpg -------------------------------------------------------------------------------- /Resources/Assembled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/Assembled.jpg -------------------------------------------------------------------------------- /Resources/BreadBoardICPlacement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/BreadBoardICPlacement.png -------------------------------------------------------------------------------- /Resources/Breadboard-LEDOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/Breadboard-LEDOff.png -------------------------------------------------------------------------------- /Resources/Breadboard-LEDOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/Breadboard-LEDOn.png -------------------------------------------------------------------------------- /Resources/CP2102_Connections_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/CP2102_Connections_500.png -------------------------------------------------------------------------------- /Resources/CommandBar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/CommandBar.gif -------------------------------------------------------------------------------- /Resources/Deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/Deploy.png -------------------------------------------------------------------------------- /Resources/DeviceInfoPage-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/DeviceInfoPage-Screenshot.png -------------------------------------------------------------------------------- /Resources/FlowSensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/FlowSensor.jpg -------------------------------------------------------------------------------- /Resources/GpioOneWireFritz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/GpioOneWireFritz.png -------------------------------------------------------------------------------- /Resources/GpioOneWireSchematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/GpioOneWireSchematic.png -------------------------------------------------------------------------------- /Resources/GpioOneWireScreen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/GpioOneWireScreen1.png -------------------------------------------------------------------------------- /Resources/I2cPortExpanderDrawing_bb_750.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/I2cPortExpanderDrawing_bb_750.png -------------------------------------------------------------------------------- /Resources/I2cPortExpanderDrawing_schem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/I2cPortExpanderDrawing_schem.png -------------------------------------------------------------------------------- /Resources/MCP23008_Pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/MCP23008_Pinout.png -------------------------------------------------------------------------------- /Resources/MCP23008_PortExpander_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/MCP23008_PortExpander_bb.png -------------------------------------------------------------------------------- /Resources/MCP3002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/MCP3002.png -------------------------------------------------------------------------------- /Resources/MCP3208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/MCP3208.png -------------------------------------------------------------------------------- /Resources/OOBE3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/OOBE3.jpg -------------------------------------------------------------------------------- /Resources/OOBE4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/OOBE4.jpg -------------------------------------------------------------------------------- /Resources/OverallCon-3002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/OverallCon-3002.png -------------------------------------------------------------------------------- /Resources/OverallCon-3208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/OverallCon-3208.png -------------------------------------------------------------------------------- /Resources/OverallCon_mcp3208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/OverallCon_mcp3208.png -------------------------------------------------------------------------------- /Resources/PinMappingsUpBoard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/PinMappingsUpBoard.png -------------------------------------------------------------------------------- /Resources/PushButtonSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/PushButtonSample.png -------------------------------------------------------------------------------- /Resources/RGBLED-schematic_schem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/RGBLED-schematic_schem.png -------------------------------------------------------------------------------- /Resources/RGBLED_Pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/RGBLED_Pinout.png -------------------------------------------------------------------------------- /Resources/RGBLED_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/RGBLED_bb.png -------------------------------------------------------------------------------- /Resources/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/Screenshot.jpg -------------------------------------------------------------------------------- /Resources/SendMessageB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/SendMessageB.png -------------------------------------------------------------------------------- /Resources/SerialSampleRunningPC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/SerialSampleRunningPC.png -------------------------------------------------------------------------------- /Resources/SerialSampleRunningPC_ConnectDevice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/SerialSampleRunningPC_ConnectDevice.png -------------------------------------------------------------------------------- /Resources/SiLabs-UART.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/SiLabs-UART.png -------------------------------------------------------------------------------- /Resources/UpBoard_Pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/UpBoard_Pinout.png -------------------------------------------------------------------------------- /Resources/Upboard_Pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/Upboard_Pinout.png -------------------------------------------------------------------------------- /Resources/Upboard_PushButton_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/Upboard_PushButton_bb.png -------------------------------------------------------------------------------- /Resources/Upboard_PushButton_schem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/Upboard_PushButton_schem.png -------------------------------------------------------------------------------- /Resources/blinky-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/blinky-screenshot.png -------------------------------------------------------------------------------- /Resources/breadboard_assembled_UpBoard_kit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/breadboard_assembled_UpBoard_kit.png -------------------------------------------------------------------------------- /Resources/breadboard_assembled_upboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/breadboard_assembled_upboard.png -------------------------------------------------------------------------------- /Resources/breadboard_assembled_upboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/breadboard_assembled_upboard1.png -------------------------------------------------------------------------------- /Resources/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/components.png -------------------------------------------------------------------------------- /Resources/components1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/components1.png -------------------------------------------------------------------------------- /Resources/components2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/components2.png -------------------------------------------------------------------------------- /Resources/force_mcp3002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/force_mcp3002.png -------------------------------------------------------------------------------- /Resources/images/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Resources/images/Azure/IoTHubClients/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Resources/images/Azure/IoTHubClients/IoTHubClientScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/images/Azure/IoTHubClients/IoTHubClientScreenshot.png -------------------------------------------------------------------------------- /Resources/images/CustomDeviceAccessorUwp-AppContainerSid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/images/CustomDeviceAccessorUwp-AppContainerSid.png -------------------------------------------------------------------------------- /Resources/images/DeviceIoControlUwp-AppContainerSid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/images/DeviceIoControlUwp-AppContainerSid.png -------------------------------------------------------------------------------- /Resources/images/PMWebCamOptions.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/images/PMWebCamOptions.PNG -------------------------------------------------------------------------------- /Resources/images/ProcessLauncherSample/AddIoTExtensionReference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/images/ProcessLauncherSample/AddIoTExtensionReference.png -------------------------------------------------------------------------------- /Resources/images/ProcessLauncherSample/BuildDependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/images/ProcessLauncherSample/BuildDependencies.png -------------------------------------------------------------------------------- /Resources/images/ProcessLauncherSample/ConsoleApplicationProperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/images/ProcessLauncherSample/ConsoleApplicationProperties.png -------------------------------------------------------------------------------- /Resources/images/ProcessLauncherSample/ExeProperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/images/ProcessLauncherSample/ExeProperties.png -------------------------------------------------------------------------------- /Resources/images/ProcessLauncherSample/ProcessLauncher0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/images/ProcessLauncherSample/ProcessLauncher0.png -------------------------------------------------------------------------------- /Resources/images/ProcessLauncherSample/ProcessLauncher1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/images/ProcessLauncherSample/ProcessLauncher1.png -------------------------------------------------------------------------------- /Resources/images/ProcessLauncherSample/ProcessLauncher2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/images/ProcessLauncherSample/ProcessLauncher2.png -------------------------------------------------------------------------------- /Resources/images/WifiConnectSample/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Resources/images/WifiConnectSample/WiFiSample0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/images/WifiConnectSample/WiFiSample0.png -------------------------------------------------------------------------------- /Resources/images/WifiConnectSample/WiFiSample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/images/WifiConnectSample/WiFiSample1.png -------------------------------------------------------------------------------- /Resources/images/WifiConnectSample/WiFiSample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/images/WifiConnectSample/WiFiSample2.png -------------------------------------------------------------------------------- /Resources/images/WifiConnectSample/WifiSamplePasswordChecked.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/images/WifiConnectSample/WifiSamplePasswordChecked.PNG -------------------------------------------------------------------------------- /Resources/images/WifiConnectSample/WifiSamplePasswordUnchecked.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/images/WifiConnectSample/WifiSamplePasswordUnchecked.PNG -------------------------------------------------------------------------------- /Resources/images/WifiConnectSample/WifiSampleSelectedNetwork.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/images/WifiConnectSample/WifiSampleSelectedNetwork.PNG -------------------------------------------------------------------------------- /Resources/schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/schematic.png -------------------------------------------------------------------------------- /Resources/schematics_upboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/schematics_upboard.png -------------------------------------------------------------------------------- /Resources/schematics_upboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/schematics_upboard1.png -------------------------------------------------------------------------------- /Resources/spiaccelerometer_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/spiaccelerometer_screenshot.png -------------------------------------------------------------------------------- /Resources/spidisplay_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/spidisplay_screenshot.png -------------------------------------------------------------------------------- /Resources/step11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/step11.png -------------------------------------------------------------------------------- /Resources/step12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/step12.png -------------------------------------------------------------------------------- /Resources/step13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/step13.png -------------------------------------------------------------------------------- /Resources/step14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/step14.png -------------------------------------------------------------------------------- /Resources/step17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/step17.png -------------------------------------------------------------------------------- /Resources/step18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/step18.png -------------------------------------------------------------------------------- /Resources/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/step2.png -------------------------------------------------------------------------------- /Resources/step2a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/step2a.png -------------------------------------------------------------------------------- /Resources/step3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/step3.PNG -------------------------------------------------------------------------------- /Resources/step3a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/step3a.png -------------------------------------------------------------------------------- /Resources/step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/step4.png -------------------------------------------------------------------------------- /Resources/step5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/step5.png -------------------------------------------------------------------------------- /Resources/step5a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/step5a.png -------------------------------------------------------------------------------- /Resources/step6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/step6.PNG -------------------------------------------------------------------------------- /Resources/step6a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/step6a.png -------------------------------------------------------------------------------- /Resources/step7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/step7.png -------------------------------------------------------------------------------- /Resources/step8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/step8.png -------------------------------------------------------------------------------- /Resources/temp_mcp3002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/Resources/temp_mcp3002.png -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- 1 | # Support 2 | 3 | ## How to file issues and get help 4 | 5 | This project uses GitHub Issues to track bugs and feature requests. Please search the existing 6 | issues before filing new issues to avoid duplicates. For new issues, file your bug or 7 | feature request as a new Issue. 8 | -------------------------------------------------------------------------------- /samples/Accelerometer/CS/Accelerometer_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Accelerometer/CS/Accelerometer_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/Accelerometer/CS/App.xaml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /samples/Accelerometer/CS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Accelerometer/CS/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/Accelerometer/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Accelerometer/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/Accelerometer/CS/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Accelerometer/CS/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/Accelerometer/CS/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Accelerometer/CS/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/Accelerometer/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Accelerometer/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/Accelerometer/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Accelerometer/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/Accelerometer/CS/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Accelerometer/CS/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyClient/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CPP/BlinkyClient/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyClient/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CPP/BlinkyClient/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyClient/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CPP/BlinkyClient/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyClient/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CPP/BlinkyClient/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyClient/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CPP/BlinkyClient/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyClient/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CPP/BlinkyClient/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyClient/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CPP/BlinkyClient/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyClient/BlinkyClient_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CPP/BlinkyClient/BlinkyClient_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyClient/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // pch.cpp 3 | // Include the standard header and generate the precompiled header. 4 | // 5 | 6 | #include "pch.h" 7 | -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyClient/pch.h: -------------------------------------------------------------------------------- 1 | // 2 | // pch.h 3 | // Header for standard system include files. 4 | // 5 | 6 | #pragma once 7 | 8 | #include 9 | #include 10 | #include 11 | -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyService/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CPP/BlinkyService/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyService/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CPP/BlinkyService/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyService/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CPP/BlinkyService/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyService/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CPP/BlinkyService/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyService/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CPP/BlinkyService/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyService/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CPP/BlinkyService/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyService/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CPP/BlinkyService/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyService/BlinkyService_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CPP/BlinkyService/BlinkyService_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyService/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // pch.cpp 3 | // Include the standard header and generate the precompiled header. 4 | // 5 | 6 | #include "pch.h" 7 | -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyService/pch.h: -------------------------------------------------------------------------------- 1 | // 2 | // pch.h 3 | // Header for standard system include files. 4 | // 5 | 6 | #pragma once 7 | 8 | #include 9 | #include 10 | #include 11 | -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CS/BlinkyClient/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CS/BlinkyClient/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CS/BlinkyClient/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CS/BlinkyClient/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CS/BlinkyClient/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CS/BlinkyClient/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CS/BlinkyClient/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CS/BlinkyClient/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CS/BlinkyClient/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CS/BlinkyClient/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CS/BlinkyClient/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CS/BlinkyClient/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CS/BlinkyClient/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CS/BlinkyClient/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CS/BlinkyClient/BlinkyClient_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CS/BlinkyClient/BlinkyClient_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CS/BlinkyService/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CS/BlinkyService/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CS/BlinkyService/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CS/BlinkyService/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CS/BlinkyService/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CS/BlinkyService/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CS/BlinkyService/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CS/BlinkyService/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CS/BlinkyService/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CS/BlinkyService/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CS/BlinkyService/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CS/BlinkyService/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CS/BlinkyService/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CS/BlinkyService/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CS/BlinkyService/BlinkyService_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceBlinky/CS/BlinkyService/BlinkyService_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadClientBackgroundApplication/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceSharedNotepad/CS/NotepadClientBackgroundApplication/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadClientBackgroundApplication/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceSharedNotepad/CS/NotepadClientBackgroundApplication/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadClientBackgroundApplication/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceSharedNotepad/CS/NotepadClientBackgroundApplication/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadClientBackgroundApplication/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceSharedNotepad/CS/NotepadClientBackgroundApplication/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadClientBackgroundApplication/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceSharedNotepad/CS/NotepadClientBackgroundApplication/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadClientBackgroundApplication/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceSharedNotepad/CS/NotepadClientBackgroundApplication/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadClientBackgroundApplication/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceSharedNotepad/CS/NotepadClientBackgroundApplication/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadClientBackgroundApplication/NotepadClientBackgroundApplication_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceSharedNotepad/CS/NotepadClientBackgroundApplication/NotepadClientBackgroundApplication_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadService/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceSharedNotepad/CS/NotepadService/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadService/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceSharedNotepad/CS/NotepadService/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadService/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceSharedNotepad/CS/NotepadService/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadService/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceSharedNotepad/CS/NotepadService/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadService/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceSharedNotepad/CS/NotepadService/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadService/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceSharedNotepad/CS/NotepadService/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadService/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceSharedNotepad/CS/NotepadService/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadService/NotepadService_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceSharedNotepad/CS/NotepadService/NotepadService_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadServiceClientApp/App.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | 9 | -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadServiceClientApp/ApplicationInsights.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadServiceClientApp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceSharedNotepad/CS/NotepadServiceClientApp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadServiceClientApp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceSharedNotepad/CS/NotepadServiceClientApp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadServiceClientApp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceSharedNotepad/CS/NotepadServiceClientApp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadServiceClientApp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceSharedNotepad/CS/NotepadServiceClientApp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadServiceClientApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceSharedNotepad/CS/NotepadServiceClientApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadServiceClientApp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceSharedNotepad/CS/NotepadServiceClientApp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadServiceClientApp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceSharedNotepad/CS/NotepadServiceClientApp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadServiceClientApp/NotepadServiceClientApp_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/AppServiceSharedNotepad/CS/NotepadServiceClientApp/NotepadServiceClientApp_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/CustomDeviceAccessor/CPP/App.xaml: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /samples/CustomDeviceAccessor/CPP/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/CustomDeviceAccessor/CPP/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/CustomDeviceAccessor/CPP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/CustomDeviceAccessor/CPP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/CustomDeviceAccessor/CPP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/CustomDeviceAccessor/CPP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/CustomDeviceAccessor/CPP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/CustomDeviceAccessor/CPP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/CustomDeviceAccessor/CPP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/CustomDeviceAccessor/CPP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/CustomDeviceAccessor/CPP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/CustomDeviceAccessor/CPP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/CustomDeviceAccessor/CPP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/CustomDeviceAccessor/CPP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/CustomDeviceAccessor/CPP/CustomDeviceAccessorUWP_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/CustomDeviceAccessor/CPP/CustomDeviceAccessorUWP_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/CustomDeviceAccessor/CPP/MainPage.xaml.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft. All rights reserved. 2 | 3 | // 4 | // MainPage.xaml.h 5 | // Declaration of the MainPage class. 6 | // 7 | 8 | #pragma once 9 | 10 | #include "MainPage.g.h" 11 | 12 | namespace CustomDeviceAccessorUWP 13 | { 14 | /// 15 | /// An empty page that can be used on its own or navigated to within a Frame. 16 | /// 17 | public ref class MainPage sealed 18 | { 19 | public: 20 | MainPage(); 21 | 22 | }; 23 | } 24 | -------------------------------------------------------------------------------- /samples/CustomDeviceAccessor/CPP/pch.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft. All rights reserved. 2 | 3 | // 4 | // pch.cpp 5 | // Include the standard header and generate the precompiled header. 6 | // 7 | 8 | #include "pch.h" 9 | -------------------------------------------------------------------------------- /samples/DMMocKPortal/App.xaml.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | // Licensed under the MIT License. 3 | 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Configuration; 7 | using System.Data; 8 | using System.Linq; 9 | using System.Threading.Tasks; 10 | using System.Windows; 11 | 12 | namespace DMMockPortal 13 | { 14 | /// 15 | /// Interaction logic for App.xaml 16 | /// 17 | public partial class App : Application 18 | { 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /samples/DMMocKPortal/DMConstants.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | // Licensed under the MIT License. 3 | 4 | namespace DMMockPortal 5 | { 6 | static class DMConstants 7 | { 8 | public static readonly string AllDevicesConfigName = "*All*"; 9 | public static readonly string RegistryStore = "Software\\Microsoft\\DMMockPortal"; 10 | public static readonly string RegistryConnectionString = "ConnectionString"; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /samples/DMMocKPortal/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/DMMocKPortal/dm-mock-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/DMMocKPortal/dm-mock-portal.png -------------------------------------------------------------------------------- /samples/DMMocKPortal/windows_telemetry_x64_v1.json.txt: -------------------------------------------------------------------------------- 1 | "windowsTelemetry": { 2 | "__meta": { 3 | "deploymentId": "windows_telemetry_x64_v1", 4 | "serviceInterfaceVersion": "1.0.0" 5 | }, 6 | "level": "security" 7 | } -------------------------------------------------------------------------------- /samples/DeviceIOContoller/CPP/App.xaml: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /samples/DeviceIOContoller/CPP/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/DeviceIOContoller/CPP/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/DeviceIOContoller/CPP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/DeviceIOContoller/CPP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/DeviceIOContoller/CPP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/DeviceIOContoller/CPP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/DeviceIOContoller/CPP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/DeviceIOContoller/CPP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/DeviceIOContoller/CPP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/DeviceIOContoller/CPP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/DeviceIOContoller/CPP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/DeviceIOContoller/CPP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/DeviceIOContoller/CPP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/DeviceIOContoller/CPP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/DeviceIOContoller/CPP/DeviceIoControlUwp_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/DeviceIOContoller/CPP/DeviceIoControlUwp_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/DeviceIOContoller/CPP/MainPage.xaml.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft. All rights reserved. 2 | 3 | // 4 | // MainPage.xaml.h 5 | // Declaration of the MainPage class. 6 | // 7 | 8 | #pragma once 9 | 10 | #include "MainPage.g.h" 11 | 12 | namespace DeviceIoControlUwp 13 | { 14 | /// 15 | /// An empty page that can be used on its own or navigated to within a Frame. 16 | /// 17 | public ref class MainPage sealed 18 | { 19 | public: 20 | MainPage(); 21 | 22 | }; 23 | } 24 | -------------------------------------------------------------------------------- /samples/DeviceIOContoller/CPP/pch.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft. All rights reserved. 2 | 3 | // 4 | // pch.cpp 5 | // Include the standard header and generate the precompiled header. 6 | // 7 | 8 | #include "pch.h" 9 | -------------------------------------------------------------------------------- /samples/DualOperator/Dual Operator objects.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/DualOperator/Dual Operator objects.jpg -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/DualOperator.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Form 6 | 7 | 8 | Form 9 | 10 | 11 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Enumerations/BroadcastDeviceType.cs: -------------------------------------------------------------------------------- 1 | namespace DualOperator.Enumerations 2 | { 3 | enum BroadcastDeviceType 4 | { 5 | DBT_DEVTYP_OEM = 0, 6 | DBT_DEVTYP_DEVNODE = 1, 7 | DBT_DEVTYP_VOLUME = 2, 8 | DBT_DEVTYP_PORT = 3, 9 | DBT_DEVTYP_NET = 4, 10 | DBT_DEVTYP_DEVICEINTERFACE = 5, 11 | DBT_DEVTYP_HANDLE = 6, 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Enumerations/DataCommand.cs: -------------------------------------------------------------------------------- 1 | namespace DualOperator.Enumerations 2 | { 3 | public enum DataCommand : uint 4 | { 5 | RID_HEADER = 0x10000005, // Get the header information from the RAWINPUT structure. 6 | RID_INPUT = 0x10000003 // Get the raw data from the RAWINPUT structure. 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Enumerations/HIDUsagePage.cs: -------------------------------------------------------------------------------- 1 | namespace DualOperator.Enumerations 2 | { 3 | public enum HIDUsagePage : ushort 4 | { 5 | UNDEFINED = 0x00, // Unknown usage page 6 | GENERIC = 0x01, // Generic desktop controls 7 | SIMULATION = 0x02, // Simulation controls 8 | VR = 0x03, // Virtual reality controls 9 | SPORT = 0x04, // Sports controls 10 | GAME = 0x05, // Games controls 11 | KEYBOARD = 0x07, // Keyboard controls 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Enumerations/KeyEventF.cs: -------------------------------------------------------------------------------- 1 | namespace DualOperator.Enumerations 2 | { 3 | [Flags] 4 | public enum KeyEventF 5 | { 6 | KeyDown = 0x0000, 7 | ExtendedKey = 0x0001, 8 | KeyUp = 0x0002, 9 | Unicode = 0x0004, 10 | Scancode = 0x0008 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Enumerations/MouseEventF.cs: -------------------------------------------------------------------------------- 1 | namespace DualOperator.Enumerations 2 | { 3 | [Flags] 4 | public enum MouseEventF 5 | { 6 | Absolute = 0x8000, 7 | HWheel = 0x01000, 8 | Move = 0x0001, 9 | MoveNoCoalesce = 0x2000, 10 | LeftDown = 0x0002, 11 | LeftUp = 0x0004, 12 | RightDown = 0x0008, 13 | RightUp = 0x0010, 14 | MiddleDown = 0x0020, 15 | MiddleUp = 0x0040, 16 | VirtualDesk = 0x4000, 17 | Wheel = 0x0800, 18 | XDown = 0x0080, 19 | XUp = 0x0100 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Enumerations/OutputType.cs: -------------------------------------------------------------------------------- 1 | namespace DualOperator.Enumerations 2 | { 3 | [Flags] 4 | public enum OutputType 5 | { 6 | Mouse = 0, 7 | Keyboard = 1, 8 | Hardware = 2 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Enumerations/RawInputDeviceInfo.cs: -------------------------------------------------------------------------------- 1 | namespace DualOperator.Enumerations 2 | { 3 | internal enum RawInputDeviceInfo : uint 4 | { 5 | RIDI_DEVICENAME = 0x20000007, 6 | RIDI_DEVICEINFO = 0x2000000b, 7 | PREPARSEDDATA = 0x20000005 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Helpers/DeviceType.cs: -------------------------------------------------------------------------------- 1 | namespace DualOperator.Helpers 2 | { 3 | public static class DeviceType 4 | { 5 | public const int RimTypemouse = 0; 6 | public const int RimTypekeyboard = 1; 7 | public const int RimTypeHid = 2; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Helpers/Extensions.cs: -------------------------------------------------------------------------------- 1 | namespace DualOperator.Helpers 2 | { 3 | public static class Extensions 4 | { 5 | public static IEnumerable SetValue(this IEnumerable items, Action updateMethod) 6 | { 7 | foreach (T item in items) 8 | { 9 | updateMethod(item); 10 | } 11 | return items; 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Helpers/PreMessageFilter.cs: -------------------------------------------------------------------------------- 1 | namespace DualOperator.Helpers 2 | { 3 | public class PreMessageFilter : IMessageFilter 4 | { 5 | // true to filter the message and stop it from being dispatched 6 | // false to allow the message to continue to the next filter or control. 7 | public bool PreFilterMessage(ref Message m) 8 | { 9 | return m.Msg == Win32.WM_KEYDOWN; 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Helpers/RawInputEventArg.cs: -------------------------------------------------------------------------------- 1 | namespace DualOperator.Helpers 2 | { 3 | public class RawInputEventArg : EventArgs 4 | { 5 | public RawInputEventArg(KeyPressEvent arg) 6 | { 7 | KeyPressEvent = arg; 8 | } 9 | 10 | public KeyPressEvent KeyPressEvent { get; private set; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Models/KeyboardItem.cs: -------------------------------------------------------------------------------- 1 | namespace DualOperator.Models 2 | { 3 | public class KeyboardItem 4 | { 5 | public string KeyboardName { get; set; } 6 | public string KeyboardDescription { get; set; } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Models/OperatorApp.cs: -------------------------------------------------------------------------------- 1 | namespace DualOperator.Models 2 | { 3 | internal class OperatorApp 4 | { 5 | public string ApplicationTitle { get; set; } 6 | public string Keyboard { get; set; } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Models/RunningApp.cs: -------------------------------------------------------------------------------- 1 | namespace DualOperator.Models 2 | { 3 | public class RunningApp 4 | { 5 | public string ApplicationPath { get; set; } 6 | public string Keyboard { get; set; } 7 | public IntPtr? WindowHandle { get; set; } 8 | public string WindowTitle { get; set; } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Models/WinStruct.cs: -------------------------------------------------------------------------------- 1 | namespace DualOperator.Models 2 | { 3 | public class WinStruct 4 | { 5 | public string WinTitle { get; set; } 6 | public int MainWindowHandle { get; set; } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "DualOperator": { 4 | "commandName": "Project" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Structures/BroadcastDeviceInterface.cs: -------------------------------------------------------------------------------- 1 | using DualOperator.Enumerations; 2 | 3 | namespace DualOperator.Structures 4 | { 5 | struct BroadcastDeviceInterface 6 | { 7 | public Int32 DbccSize; 8 | public BroadcastDeviceType BroadcastDeviceType; 9 | public Int32 DbccReserved; 10 | public Guid DbccClassguid; 11 | public char DbccName; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Structures/HardwareOutput.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.InteropServices; 2 | 3 | namespace DualOperator.Structures 4 | { 5 | [StructLayout(LayoutKind.Sequential)] 6 | public struct HardwareOutput 7 | { 8 | public uint uMsg; 9 | public ushort wParamL; 10 | public ushort wParamH; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Structures/InputData.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.InteropServices; 2 | 3 | namespace DualOperator.Structures 4 | { 5 | [StructLayout(LayoutKind.Sequential)] 6 | public struct InputData 7 | { 8 | public RawInputHeader header; // 64 bit header size: 24 32 bit the header size: 16 9 | public RawData data; // Creating the rest in a struct allows the header size to align correctly for 32/64 bit 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Structures/KeyboardOutput.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.InteropServices; 2 | 3 | namespace DualOperator.Structures 4 | { 5 | [StructLayout(LayoutKind.Sequential)] 6 | public struct KeyboardOutput 7 | { 8 | public ushort wVk; 9 | public ushort wScan; 10 | public uint dwFlags; 11 | public uint time; 12 | public IntPtr dwExtraInfo; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Structures/MouseOutput.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.InteropServices; 2 | 3 | namespace DualOperator.Structures 4 | { 5 | [StructLayout(LayoutKind.Sequential)] 6 | public struct MouseOutput 7 | { 8 | public int dx; 9 | public int dy; 10 | public uint mouseData; 11 | public uint dwFlags; 12 | public uint time; 13 | public IntPtr dwExtraInfo; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Structures/OperatorKeyState.cs: -------------------------------------------------------------------------------- 1 | namespace DualOperator.Structures 2 | { 3 | struct OperatorKeyState 4 | { 5 | public string Device; 6 | public bool AltPressed; 7 | public bool ControlPressed; 8 | public bool ShiftPressed; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Structures/Output.cs: -------------------------------------------------------------------------------- 1 | namespace DualOperator.Structures 2 | { 3 | public struct Output 4 | { 5 | public int type; 6 | public OutputUnion u; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Structures/OutputUnion.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.InteropServices; 2 | 3 | namespace DualOperator.Structures 4 | { 5 | [StructLayout(LayoutKind.Explicit)] 6 | public struct OutputUnion 7 | { 8 | [FieldOffset(0)] public MouseOutput mi; 9 | [FieldOffset(0)] public KeyboardOutput ki; 10 | [FieldOffset(0)] public HardwareOutput hi; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Structures/RawData.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.InteropServices; 2 | 3 | namespace DualOperator.Structures 4 | { 5 | [StructLayout(LayoutKind.Explicit)] 6 | public struct RawData 7 | { 8 | [FieldOffset(0)] 9 | internal RawMouse mouse; 10 | [FieldOffset(0)] 11 | internal RawKeyboard keyboard; 12 | [FieldOffset(0)] 13 | internal RawHID hid; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Structures/RawHID.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.InteropServices; 2 | 3 | namespace DualOperator.Structures 4 | { 5 | [StructLayout(LayoutKind.Sequential)] 6 | internal struct RawHID 7 | { 8 | public uint dwSizHid; 9 | public uint dwCount; 10 | public byte bRawData; 11 | 12 | public override string ToString() 13 | { 14 | return $"Rawhib\n dwSizeHid : {dwSizHid}\n dwCount : {dwCount}\n bRawData : {bRawData}\n"; 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Structures/RawInputDeviceList.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.InteropServices; 2 | 3 | namespace DualOperator.Structures 4 | { 5 | [StructLayout(LayoutKind.Sequential)] 6 | internal struct RawInputDeviceList 7 | { 8 | public IntPtr hDevice; 9 | public uint dwType; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/operators.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "ApplicationTitle": "Document1 - Word", 4 | "Keyboard": "\\\\?\\HID#VID_046D&PID_C541&MI_01&Col01#b&865bce8&0&0000#{884b96c3-56ef-11d1-bc8c-00a0c91405dd}" 5 | }, 6 | { 7 | "ApplicationTitle": "Untitled - Notepad", 8 | "Keyboard": "\\\\?\\HID#{00001812-0000-1000-8000-00805f9b34fb}_Dev_VID&02045e_PID&0832_REV&0138_eb5864041ec3&Col01#9&19514786&0&0000#{884b96c3-56ef-11d1-bc8c-00a0c91405dd}" 9 | } 10 | ] 11 | -------------------------------------------------------------------------------- /samples/DualOperator/TestApp/Models/AppTitle.cs: -------------------------------------------------------------------------------- 1 | namespace TestApp.Models 2 | { 3 | internal class AppTitle 4 | { 5 | public string ApplicationTitle { get; set; } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /samples/DualOperator/TestApp/Program.cs: -------------------------------------------------------------------------------- 1 | namespace TestApp 2 | { 3 | internal static class Program 4 | { 5 | /// 6 | /// The main entry point for the application. 7 | /// 8 | [STAThread] 9 | static void Main() 10 | { 11 | // To customize application configuration such as set high DPI settings or default font, 12 | // see https://aka.ms/applicationconfiguration. 13 | ApplicationConfiguration.Initialize(); 14 | Application.Run(new Form1()); 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /samples/DualOperator/TestApp/TestApp.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | net6.0-windows 6 | enable 7 | true 8 | enable 9 | 10 | 11 | 12 | 13 | PreserveNewest 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /samples/DualOperator/TestApp/TestApp.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Form 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /samples/DualOperator/TestApp/apptitle.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "ApplicationTitle": "Zippety" 4 | } 5 | ] 6 | -------------------------------------------------------------------------------- /samples/ExternalProcessLauncher/CS/ProcessLauncherSample/App.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | 9 | -------------------------------------------------------------------------------- /samples/ExternalProcessLauncher/CS/ProcessLauncherSample/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ExternalProcessLauncher/CS/ProcessLauncherSample/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/ExternalProcessLauncher/CS/ProcessLauncherSample/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ExternalProcessLauncher/CS/ProcessLauncherSample/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/ExternalProcessLauncher/CS/ProcessLauncherSample/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ExternalProcessLauncher/CS/ProcessLauncherSample/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/ExternalProcessLauncher/CS/ProcessLauncherSample/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ExternalProcessLauncher/CS/ProcessLauncherSample/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/ExternalProcessLauncher/CS/ProcessLauncherSample/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ExternalProcessLauncher/CS/ProcessLauncherSample/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/ExternalProcessLauncher/CS/ProcessLauncherSample/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ExternalProcessLauncher/CS/ProcessLauncherSample/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/ExternalProcessLauncher/CS/ProcessLauncherSample/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ExternalProcessLauncher/CS/ProcessLauncherSample/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/ExternalProcessLauncher/CS/ProcessLauncherSample/TestProcessLauncher_CS_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ExternalProcessLauncher/CS/ProcessLauncherSample/TestProcessLauncher_CS_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/ExternalProcessLauncher/CS/SampleConsoleApplication/SampleConsoleApplication.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /samples/ExternalProcessLauncher/CS/SampleConsoleApplication/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // pch.cpp 3 | // Include the standard header and generate the precompiled header. 4 | // 5 | 6 | #include "pch.h" 7 | -------------------------------------------------------------------------------- /samples/ExternalProcessLauncher/CS/SampleConsoleApplication/pch.h: -------------------------------------------------------------------------------- 1 | // 2 | // pch.h 3 | // Header for standard system include files. 4 | // 5 | 6 | #pragma once 7 | 8 | #include -------------------------------------------------------------------------------- /samples/FlowVolume/CS/FlowVolume/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | -------------------------------------------------------------------------------- /samples/FlowVolume/CS/FlowVolume/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/FlowVolume/CS/FlowVolume/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/FlowVolume/CS/FlowVolume/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/FlowVolume/CS/FlowVolume/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/FlowVolume/CS/FlowVolume/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/FlowVolume/CS/FlowVolume/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/FlowVolume/CS/FlowVolume/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/FlowVolume/CS/FlowVolume/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/FlowVolume/CS/FlowVolume/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/FlowVolume/CS/FlowVolume/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/FlowVolume/CS/FlowVolume/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/FlowVolume/CS/FlowVolume/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/FlowVolume/CS/FlowVolume/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/FlowVolume/CS/FlowVolume/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/FlowVolume/CS/FlowVolume/FlowVolume_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/FlowVolume/CS/FlowVolume/FlowVolume_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/FlowVolume/CS/FlowVolume/MeasurementChangedEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Keg.DAL 4 | { 5 | public class MeasurementChangedEventArgs : EventArgs 6 | { 7 | public Models.Measurement Measurement { get; set; } 8 | public MeasurementChangedEventArgs(Models.Measurement measurement) 9 | { 10 | this.Measurement = measurement; 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CPP/MyBackgroundApplicationCpp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CPP/MyBackgroundApplicationCpp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CPP/MyBackgroundApplicationCpp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CPP/MyBackgroundApplicationCpp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CPP/MyBackgroundApplicationCpp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CPP/MyBackgroundApplicationCpp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CPP/MyBackgroundApplicationCpp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CPP/MyBackgroundApplicationCpp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CPP/MyBackgroundApplicationCpp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CPP/MyBackgroundApplicationCpp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CPP/MyBackgroundApplicationCpp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CPP/MyBackgroundApplicationCpp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CPP/MyBackgroundApplicationCpp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CPP/MyBackgroundApplicationCpp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CPP/MyBackgroundApplicationCpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // pch.cpp 3 | // Include the standard header and generate the precompiled header. 4 | // 5 | 6 | #include "pch.h" 7 | -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CPP/MyBackgroundApplicationCpp/pch.h: -------------------------------------------------------------------------------- 1 | // 2 | // pch.h 3 | // Header for standard system include files. 4 | // 5 | 6 | #pragma once 7 | 8 | #include 9 | #include 10 | #include 11 | -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CPP/MyForegroundAppCpp/App.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | 9 | -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CPP/MyForegroundAppCpp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CPP/MyForegroundAppCpp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CPP/MyForegroundAppCpp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CPP/MyForegroundAppCpp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CPP/MyForegroundAppCpp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CPP/MyForegroundAppCpp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CPP/MyForegroundAppCpp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CPP/MyForegroundAppCpp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CPP/MyForegroundAppCpp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CPP/MyForegroundAppCpp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CPP/MyForegroundAppCpp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CPP/MyForegroundAppCpp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CPP/MyForegroundAppCpp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CPP/MyForegroundAppCpp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CPP/MyForegroundAppCpp/MainPage.xaml.h: -------------------------------------------------------------------------------- 1 | // 2 | // MainPage.xaml.h 3 | // Declaration of the MainPage class. 4 | // 5 | 6 | #pragma once 7 | 8 | #include "MainPage.g.h" 9 | 10 | namespace MyForegroundAppCpp 11 | { 12 | /// 13 | /// An empty page that can be used on its own or navigated to within a Frame. 14 | /// 15 | public ref class MainPage sealed 16 | { 17 | public: 18 | MainPage(); 19 | 20 | }; 21 | } 22 | -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CPP/MyForegroundAppCpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // pch.cpp 3 | // Include the standard header and generate the precompiled header. 4 | // 5 | 6 | #include "pch.h" 7 | -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CPP/MyForegroundAppCpp/pch.h: -------------------------------------------------------------------------------- 1 | // 2 | // pch.h 3 | // Header for standard system include files. 4 | // 5 | 6 | #pragma once 7 | 8 | #include 9 | #include 10 | 11 | #include "App.xaml.h" 12 | -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CS/MyBackgroundApplication/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CS/MyBackgroundApplication/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CS/MyBackgroundApplication/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CS/MyBackgroundApplication/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CS/MyBackgroundApplication/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CS/MyBackgroundApplication/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CS/MyBackgroundApplication/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CS/MyBackgroundApplication/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CS/MyBackgroundApplication/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CS/MyBackgroundApplication/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CS/MyBackgroundApplication/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CS/MyBackgroundApplication/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CS/MyBackgroundApplication/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CS/MyBackgroundApplication/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CS/MyForegroundApp/App.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | 9 | -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CS/MyForegroundApp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CS/MyForegroundApp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CS/MyForegroundApp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CS/MyForegroundApp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CS/MyForegroundApp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CS/MyForegroundApp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CS/MyForegroundApp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CS/MyForegroundApp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CS/MyForegroundApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CS/MyForegroundApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CS/MyForegroundApp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CS/MyForegroundApp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CS/MyForegroundApp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CS/MyForegroundApp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CS/MyForegroundApp/MyForegroundApp_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ForegroundAppWithBackgroundApp/CS/MyForegroundApp/MyForegroundApp_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/GPIOKmdfDemo/acpitable/MBM_ACPITABL/ACPITABL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/GPIOKmdfDemo/acpitable/MBM_ACPITABL/ACPITABL.dat -------------------------------------------------------------------------------- /samples/GPIOKmdfDemo/acpitable/RPi2_ACPITABL/ACPITABL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/GPIOKmdfDemo/acpitable/RPi2_ACPITABL/ACPITABL.dat -------------------------------------------------------------------------------- /samples/GPIOKmdfDemo/acpitable/SBC_ACPITABL/ACPITABL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/GPIOKmdfDemo/acpitable/SBC_ACPITABL/ACPITABL.dat -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/App.xaml: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/GPIOOneWire/CPP/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/GPIOOneWire/CPP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/GPIOOneWire/CPP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/GPIOOneWire/CPP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/GPIOOneWire/CPP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/GPIOOneWire/CPP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/GPIOOneWire/CPP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/Assets/schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/GPIOOneWire/CPP/Assets/schematic.png -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/pch.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft. All rights reserved. 2 | // 3 | // pch.cpp 4 | // Include the standard header and generate the precompiled header. 5 | // 6 | 7 | #include "pch.h" 8 | -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/pch.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft. All rights reserved. 2 | // 3 | // pch.h 4 | // Header for standard system include files. 5 | // 6 | 7 | #pragma once 8 | 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | -------------------------------------------------------------------------------- /samples/HIDInjector/HidinjectorPackage/HidInjectorPackage.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {8E41214B-6785-4CFE-B992-037D68949A14} 6 | inf;inv;inx;mof;mc; 7 | 8 | 9 | -------------------------------------------------------------------------------- /samples/HIDInjector/app/HidDevice.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #ifdef __cplusplus 4 | extern "C" { 5 | #endif 6 | 7 | BOOL OpenHidInjectorDevice(); 8 | void CloseHidInjectorDevice(); 9 | 10 | extern HANDLE g_hFile; 11 | 12 | #ifdef __cplusplus 13 | } // extern "C" 14 | #endif 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /samples/HIDInjector/app/HidInject.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "common.h" 4 | 5 | UCHAR VKeyToKeyboardUsage(UCHAR vk); 6 | UCHAR ScanCodeToKeyboardUsage(UCHAR code); 7 | UCHAR UnicodeToKeyboardUsage(WCHAR ch); 8 | 9 | // No usage is defined for this VKEY 10 | #define USAGE_NONE 0 11 | 12 | // A usage may be defined, but we haven't bothered to find it yet. 13 | #define USAGE_TODO 0 14 | 15 | BOOL SetKeyboardUsage(HIDINJECTOR_INPUT_REPORT *Rep, UCHAR Usage); 16 | 17 | BOOL ClearKeyboardUsage(HIDINJECTOR_INPUT_REPORT *Rep, UCHAR Usage); 18 | -------------------------------------------------------------------------------- /samples/HIDInjector/app/HidInjectorTest.rc: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #include 4 | 5 | #define VER_FILETYPE VFT_APP 6 | #define VER_FILESUBTYPE VFT2_UNKNOWN 7 | #define VER_FILEDESCRIPTION_STR "Test Program for hid injector Driver" 8 | #define VER_INTERNALNAME_STR "HidInjectorTest.exe" 9 | #define VER_ORIGINALFILENAME_STR "HidInjectorTest.exe" 10 | 11 | #include 12 | 13 | -------------------------------------------------------------------------------- /samples/Hello Blinky/CS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Hello Blinky/CS/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/Hello Blinky/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Hello Blinky/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/Hello Blinky/CS/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Hello Blinky/CS/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/Hello Blinky/CS/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Hello Blinky/CS/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/Hello Blinky/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Hello Blinky/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/Hello Blinky/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Hello Blinky/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/Hello Blinky/CS/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Hello Blinky/CS/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/Hello Blinky/Cpp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Hello Blinky/Cpp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/Hello Blinky/Cpp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Hello Blinky/Cpp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/Hello Blinky/Cpp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Hello Blinky/Cpp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/Hello Blinky/Cpp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Hello Blinky/Cpp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/Hello Blinky/Cpp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Hello Blinky/Cpp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/Hello Blinky/Cpp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Hello Blinky/Cpp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/Hello Blinky/Cpp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Hello Blinky/Cpp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/Hello Blinky/Cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft. All rights reserved. 2 | 3 | 4 | // 5 | // pch.cpp 6 | // Include the standard header and generate the precompiled header. 7 | // 8 | 9 | #include "pch.h" 10 | -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CPP/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/HelloBlinkyBackground/CPP/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CPP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/HelloBlinkyBackground/CPP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CPP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/HelloBlinkyBackground/CPP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CPP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/HelloBlinkyBackground/CPP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CPP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/HelloBlinkyBackground/CPP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CPP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/HelloBlinkyBackground/CPP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CPP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/HelloBlinkyBackground/CPP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CPP/BlinkyHeadlessCpp_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/HelloBlinkyBackground/CPP/BlinkyHeadlessCpp_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CPP/pch.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft. All rights reserved. 2 | 3 | // pch.cpp 4 | // Include the standard header and generate the precompiled header. 5 | // 6 | 7 | #include "pch.h" 8 | -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/HelloBlinkyBackground/CS/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/HelloBlinkyBackground/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CS/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/HelloBlinkyBackground/CS/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CS/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/HelloBlinkyBackground/CS/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/HelloBlinkyBackground/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/HelloBlinkyBackground/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CS/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/HelloBlinkyBackground/CS/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CS/BlinkyHeadlessCS_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/HelloBlinkyBackground/CS/BlinkyHeadlessCS_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/VB/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/HelloBlinkyBackground/VB/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/VB/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/HelloBlinkyBackground/VB/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/VB/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/HelloBlinkyBackground/VB/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/VB/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/HelloBlinkyBackground/VB/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/VB/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/HelloBlinkyBackground/VB/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/VB/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/HelloBlinkyBackground/VB/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/VB/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/HelloBlinkyBackground/VB/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/VB/BlinkyHeadlessVB_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/HelloBlinkyBackground/VB/BlinkyHeadlessVB_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/I2CCompass/AN203_Compass_Heading_Using_Magnetometers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/I2CCompass/AN203_Compass_Heading_Using_Magnetometers.pdf -------------------------------------------------------------------------------- /samples/I2CCompass/CS/App.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | 9 | -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/I2CCompass/CS/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/I2CCompass/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/I2CCompass/CS/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/I2CCompass/CS/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/I2CCompass/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/I2CCompass/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/I2CCompass/CS/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Exceptions/I2CControllerAddressException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace I2CCompass 4 | { 5 | public class I2CControllerAddressException : Exception 6 | { 7 | public I2CControllerAddressException(int address, string deviceId) 8 | : base(string.Format("The address {0} on I2C Controller {1} is currently in use.", address, deviceId)) 9 | { } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Exceptions/I2CControllerFoundException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace I2CCompass 4 | { 5 | public class I2CControllerFoundException : Exception 6 | { 7 | public I2CControllerFoundException() 8 | : base("Could not find the I2C controller") 9 | { } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /samples/I2CCompass/CS/I2CCompass_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/I2CCompass/CS/I2CCompass_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Sensors/CompassReading.cs: -------------------------------------------------------------------------------- 1 | namespace I2CCompass.Sensors 2 | { 3 | public struct CompassReading 4 | { 5 | public CompassReading(double heading) 6 | { 7 | Heading = heading; 8 | } 9 | 10 | public double Heading { get; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Sensors/ICompass.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Threading.Tasks; 3 | 4 | namespace I2CCompass.Sensors 5 | { 6 | public interface ICompass : IDisposable 7 | { 8 | event EventHandler CompassReadingChangedEvent; 9 | 10 | bool IsInitialized { get; } 11 | 12 | MagnetometerMeasurementMode MeasurementMode { get; } 13 | 14 | Task SetModeAsync(MagnetometerMeasurementMode measurementMode); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /samples/I2CCompass/HMC5883L_3-Axis_Digital_Compass_IC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/I2CCompass/HMC5883L_3-Axis_Digital_Compass_IC.pdf -------------------------------------------------------------------------------- /samples/I2CPortExpander/CS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/I2CPortExpander/CS/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/I2CPortExpander/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/I2CPortExpander/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/I2CPortExpander/CS/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/I2CPortExpander/CS/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/I2CPortExpander/CS/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/I2CPortExpander/CS/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/I2CPortExpander/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/I2CPortExpander/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/I2CPortExpander/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/I2CPortExpander/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/I2CPortExpander/CS/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/I2CPortExpander/CS/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/I2CPortExpander/CS/I2cPortExpander_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/I2CPortExpander/CS/I2cPortExpander_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay.Contracts/Controls/CommandBarButton.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | 3 | using Windows.UI.Xaml; 4 | using Windows.UI.Xaml.Controls; 5 | 6 | namespace SmartDisplay.Controls 7 | { 8 | public class CommandBarButton 9 | { 10 | public static CommandBarButton Separator = new CommandBarButton(); 11 | 12 | public IconElement Icon { get; set; } 13 | public string Label { get; set; } 14 | public RoutedEventHandler Handler { get; set; } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay.Contracts/Controls/Notification.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | 3 | using System; 4 | 5 | namespace SmartDisplay.Controls 6 | { 7 | public class Notification 8 | { 9 | public string Text; 10 | public DateTime Timestamp; 11 | public string Symbol; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay.Contracts/Interfaces/ICustomContentService.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | 3 | namespace SmartDisplay.Contracts 4 | { 5 | public interface ICustomContentService : ISmartDisplayService 6 | { 7 | T GetContent(string key); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay.Contracts/Interfaces/IIoTDmService.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | 3 | using System; 4 | using System.Threading.Tasks; 5 | 6 | namespace SmartDisplay.Contracts 7 | { 8 | public interface IIoTDmService : ISmartDisplayService 9 | { 10 | bool IsDmClientConnected { get; } 11 | 12 | Task SetMethodHandlerAsync(string methodName, Func> methodHandler); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay.Contracts/Interfaces/INotificationControl.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | 3 | using System; 4 | 5 | namespace SmartDisplay.Contracts.Interfaces 6 | { 7 | public interface INotificationControl 8 | { 9 | event EventHandler NotificationPressed; 10 | 11 | void Show(string text, int timeoutMs, string icon); 12 | 13 | void Hide(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay.Contracts/Interfaces/ISmartDisplayService.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | 3 | namespace SmartDisplay.Contracts 4 | { 5 | /// 6 | /// Only services that implement this interface can be registered with the AppService 7 | /// 8 | public interface ISmartDisplayService 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay.Features/WinML/Interfaces/IVideoFrameInputController.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | 3 | using Windows.Foundation; 4 | using Windows.Media; 5 | 6 | namespace SmartDisplay.Features.WinML 7 | { 8 | public interface IVideoFrameInputController 9 | { 10 | event TypedEventHandler InputReady; 11 | 12 | void Reset(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay.Features/WinML/Models/mnist.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay.Features/WinML/Models/mnist.onnx -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/BingMapsQRCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/BingMapsQRCode.png -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/DB410-tutorials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/DB410-tutorials.png -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/DB410Board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/DB410Board.png -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/Fonts/IOTMDL2.1.35.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/Fonts/IOTMDL2.1.35.ttf -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/Fonts/MSNMDL2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/Fonts/MSNMDL2.ttf -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/Fonts/OOBMDL2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/Fonts/OOBMDL2.ttf -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/Fonts/SegMDL2.1.18.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/Fonts/SegMDL2.1.18.ttf -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/GenericBoard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/GenericBoard.png -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/Images/MSC17_avatars_people_023a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/Images/MSC17_avatars_people_023a.png -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/Images/music-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/Images/music-icon.png -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/Images/robot-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/Images/robot-transparent.png -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/Images/weather-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/Images/weather-icon.png -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/MBMBoard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/MBMBoard.png -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/Messages/LogDescription.txt: -------------------------------------------------------------------------------- 1 | Logs are auto-generated when the app crashes due to an unhandled exception. However, you can also manually generate a log by tapping on the command bar below and selecting "Quick-Save Log". 2 | -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/RaspberryPiBoard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/RaspberryPiBoard.png -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/logo_white.png -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/rpi2-tutorials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay/Assets/rpi2-tutorials.png -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Presenters/DevicePortalDisplayPresenters.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | 3 | 4 | namespace SmartDisplay.Presenters 5 | { 6 | public class InfoDisplayData 7 | { 8 | public string Header; 9 | public string Data; 10 | 11 | public InfoDisplayData(string header, string data) 12 | { 13 | Header = header; 14 | Data = data; 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/SmartDisplay_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTEnterpriseDefault/CS/SmartDisplay/SmartDisplay_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/UIControls/OOBEListViewItem.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | 3 | namespace SmartDisplay.Controls 4 | { 5 | public class OOBEListViewItem 6 | { 7 | public string Title; 8 | public string Description; 9 | public string Icon; 10 | } 11 | 12 | public class TelemetryLevelDisplay : OOBEListViewItem 13 | { 14 | public int Level; 15 | } 16 | 17 | public class LocationDisplayListViewItem : OOBEListViewItem 18 | { 19 | public bool IsAllowed; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/UIControls/Settings/BrowserSettingsControl.xaml.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | 3 | namespace SmartDisplay.Controls 4 | { 5 | public sealed partial class BrowserSettingsControl : SettingsUserControlBase 6 | { 7 | public BrowserSettingsControlVM ViewModel { get; } = new BrowserSettingsControlVM(); 8 | protected override SettingsBaseViewModel ViewModelImpl => ViewModel; 9 | 10 | public BrowserSettingsControl() 11 | { 12 | InitializeComponent(); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/UIControls/Settings/SmartDisplaySettingsBaseViewModel.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | 3 | using SmartDisplay.Utils; 4 | 5 | namespace SmartDisplay.Controls 6 | { 7 | public class SmartDisplaySettingsBaseViewModel : SettingsBaseViewModel 8 | { 9 | protected SettingsProvider Settings => SettingsProvider as SettingsProvider; 10 | 11 | public SmartDisplaySettingsBaseViewModel() : base(SmartDisplay.AppService.GetForCurrentContext()) 12 | { 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/UIControls/Settings/TileSettingsControl.xaml.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | 3 | namespace SmartDisplay.Controls 4 | { 5 | public sealed partial class TileSettingsControl : SettingsUserControlBase 6 | { 7 | public TileSettingsControlVM ViewModel { get; } = new TileSettingsControlVM(); 8 | protected override SettingsBaseViewModel ViewModelImpl => ViewModel; 9 | 10 | public TileSettingsControl() : base() 11 | { 12 | InitializeComponent(); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/UIControls/Settings/WeatherSettingsControl.xaml.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | 3 | namespace SmartDisplay.Controls 4 | { 5 | public sealed partial class WeatherSettingsControl : SettingsUserControlBase 6 | { 7 | public WeatherSettingsControlVM ViewModel { get; } = new WeatherSettingsControlVM(); 8 | protected override SettingsBaseViewModel ViewModelImpl => ViewModel; 9 | 10 | public WeatherSettingsControl() 11 | { 12 | InitializeComponent(); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Views/OOBE/IOOBEWindowService.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | 3 | using System; 4 | 5 | namespace SmartDisplay.Views 6 | { 7 | /// 8 | /// This interface handles the navigation events in the OOBE, before 9 | /// the AppService/PageService are available 10 | /// 11 | public interface IOOBEWindowService 12 | { 13 | void Navigate(Type pageType, object parameter = null); 14 | 15 | void ReloadCurrentPage(); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/App.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | 9 | -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTHubClients/CS/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTHubClients/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTHubClients/CS/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTHubClients/CS/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTHubClients/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTHubClients/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTHubClients/CS/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/Assets/test: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/IoTHubForegroundClient_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/IoTHubClients/CS/IoTHubForegroundClient_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/MemoryStatus/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft. All rights reserved. 2 | 3 | 4 | // 5 | // pch.cpp 6 | // Include the standard header and generate the precompiled header. 7 | // 8 | 9 | #include "pch.h" 10 | -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/RpcInterface.c: -------------------------------------------------------------------------------- 1 | // RpcInterface_c.c expects _ARM_ to be set when building for ARM. 2 | #ifdef _M_ARM 3 | #define _ARM_ 1 4 | #endif 5 | 6 | #include "RpcInterface_c.c" 7 | -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/Service/Server/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // RpcServer.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | // TODO: reference any additional headers you need in STDAFX.H 8 | // and not in this file 9 | -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/Service/Server/stdafx.h: -------------------------------------------------------------------------------- 1 | // stdafx.h : include file for standard system include files, 2 | // or project specific include files that are used frequently, but 3 | // are changed infrequently 4 | // 5 | 6 | #pragma once 7 | 8 | #include "targetver.h" 9 | 10 | #include 11 | #include 12 | 13 | #define NOMINMAX // disable min and max macros in windows.h 14 | -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/Service/Server/targetver.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | // Including SDKDDKVer.h defines the highest available Windows platform. 4 | 5 | // If you wish to build your application for a previous Windows platform, include WinSDKVer.h and 6 | // set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h. 7 | 8 | #include 9 | -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/docs/IoT-PowerShell-session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/NTServiceRpc/cpp/docs/IoT-PowerShell-session.png -------------------------------------------------------------------------------- /samples/Potentiometer/CS/App.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /samples/Potentiometer/CS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Potentiometer/CS/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/Potentiometer/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Potentiometer/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/Potentiometer/CS/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Potentiometer/CS/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/Potentiometer/CS/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Potentiometer/CS/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/Potentiometer/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Potentiometer/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/Potentiometer/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Potentiometer/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/Potentiometer/CS/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Potentiometer/CS/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/Potentiometer/CS/PotentiometerSensor_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/Potentiometer/CS/PotentiometerSensor_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/PushButtton/CS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/PushButtton/CS/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/PushButtton/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/PushButtton/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/PushButtton/CS/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/PushButtton/CS/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/PushButtton/CS/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/PushButtton/CS/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/PushButtton/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/PushButtton/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/PushButtton/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/PushButtton/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/PushButtton/CS/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/PushButtton/CS/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/PushButtton/CS/PushButton_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/PushButtton/CS/PushButton_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/RFIDForIoT/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/RFIDForIoT/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/RFIDForIoT/CS/RFIDForIoT/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/RFIDForIoT/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/RFIDForIoT/CS/RFIDForIoT/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/RFIDForIoT/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/RFIDForIoT/CS/RFIDForIoT/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/RFIDForIoT/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/RFIDForIoT/CS/RFIDForIoT/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/RFIDForIoT/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/RFIDForIoT/CS/RFIDForIoT/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/RFIDForIoT/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/RFIDForIoT/CS/RFIDForIoT/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/RFIDForIoT/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/RFIDForIoT/CS/RFIDForIoT/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/RFIDForIoT/IAsyncInitialization.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace RFIDForIoT 8 | { 9 | public interface IAsyncInitialization 10 | { 11 | Task Initialization { get; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/RFIDForIoT/RFIDForIoT_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/RFIDForIoT/CS/RFIDForIoT/RFIDForIoT_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/RGBLED/CS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/RGBLED/CS/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/RGBLED/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/RGBLED/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/RGBLED/CS/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/RGBLED/CS/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/RGBLED/CS/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/RGBLED/CS/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/RGBLED/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/RGBLED/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/RGBLED/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/RGBLED/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/RGBLED/CS/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/RGBLED/CS/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/RGBLED/CS/RGBLED_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/RGBLED/CS/RGBLED_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/SPIDisplay/CS/SPIDisplay/App.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /samples/SPIDisplay/CS/SPIDisplay/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SPIDisplay/CS/SPIDisplay/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/SPIDisplay/CS/SPIDisplay/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SPIDisplay/CS/SPIDisplay/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/SPIDisplay/CS/SPIDisplay/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SPIDisplay/CS/SPIDisplay/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/SPIDisplay/CS/SPIDisplay/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SPIDisplay/CS/SPIDisplay/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/SPIDisplay/CS/SPIDisplay/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SPIDisplay/CS/SPIDisplay/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/SPIDisplay/CS/SPIDisplay/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SPIDisplay/CS/SPIDisplay/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/SPIDisplay/CS/SPIDisplay/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SPIDisplay/CS/SPIDisplay/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/SPIDisplay/CS/SPIDisplay/SPIDisplay_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SPIDisplay/CS/SPIDisplay/SPIDisplay_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/SerialNumber/CS/App.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | 9 | -------------------------------------------------------------------------------- /samples/SerialNumber/CS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SerialNumber/CS/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/SerialNumber/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SerialNumber/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/SerialNumber/CS/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SerialNumber/CS/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/SerialNumber/CS/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SerialNumber/CS/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/SerialNumber/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SerialNumber/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/SerialNumber/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SerialNumber/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/SerialNumber/CS/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SerialNumber/CS/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/SerialUART/CPP/App.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | 9 | -------------------------------------------------------------------------------- /samples/SerialUART/CPP/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SerialUART/CPP/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/SerialUART/CPP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SerialUART/CPP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/SerialUART/CPP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SerialUART/CPP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/SerialUART/CPP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SerialUART/CPP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/SerialUART/CPP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SerialUART/CPP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/SerialUART/CPP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SerialUART/CPP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/SerialUART/CPP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SerialUART/CPP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/SerialUART/CPP/pch.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft. All rights reserved. 2 | 3 | // 4 | // pch.cpp 5 | // Include the standard header and generate the precompiled header. 6 | // 7 | 8 | #include "pch.h" 9 | -------------------------------------------------------------------------------- /samples/SerialUART/CPP/pch.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft. All rights reserved. 2 | 3 | // 4 | // pch.h 5 | // Header for standard system include files. 6 | // 7 | 8 | #pragma once 9 | 10 | #include 11 | #include 12 | 13 | #include "App.xaml.h" 14 | -------------------------------------------------------------------------------- /samples/SerialUART/CS/App.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | 9 | -------------------------------------------------------------------------------- /samples/SerialUART/CS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SerialUART/CS/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/SerialUART/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SerialUART/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/SerialUART/CS/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SerialUART/CS/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/SerialUART/CS/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SerialUART/CS/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/SerialUART/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SerialUART/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/SerialUART/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SerialUART/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/SerialUART/CS/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SerialUART/CS/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/ShellLauncher/SampleConfigXmls/ShellLauncherDefaultOnlyUwp.xml: -------------------------------------------------------------------------------- 1 |  2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /samples/ShellLauncher/ShellLauncherV2/AnotherUwpApp/AnotherUwpApp_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ShellLauncher/ShellLauncherV2/AnotherUwpApp/AnotherUwpApp_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/ShellLauncher/ShellLauncherV2/AnotherUwpApp/App.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | 9 | -------------------------------------------------------------------------------- /samples/ShellLauncher/ShellLauncherV2/AnotherUwpApp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ShellLauncher/ShellLauncherV2/AnotherUwpApp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/ShellLauncher/ShellLauncherV2/AnotherUwpApp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ShellLauncher/ShellLauncherV2/AnotherUwpApp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/ShellLauncher/ShellLauncherV2/AnotherUwpApp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ShellLauncher/ShellLauncherV2/AnotherUwpApp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/ShellLauncher/ShellLauncherV2/AnotherUwpApp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ShellLauncher/ShellLauncherV2/AnotherUwpApp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/ShellLauncher/ShellLauncherV2/AnotherUwpApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ShellLauncher/ShellLauncherV2/AnotherUwpApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/ShellLauncher/ShellLauncherV2/AnotherUwpApp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ShellLauncher/ShellLauncherV2/AnotherUwpApp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/ShellLauncher/ShellLauncherV2/AnotherUwpApp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ShellLauncher/ShellLauncherV2/AnotherUwpApp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/ShellLauncher/ShellLauncherV2/Images/UwpSampleScreenCapture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ShellLauncher/ShellLauncherV2/Images/UwpSampleScreenCapture.png -------------------------------------------------------------------------------- /samples/ShellLauncher/ShellLauncherV2/Images/Win32SampleScreenCapture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ShellLauncher/ShellLauncherV2/Images/Win32SampleScreenCapture.png -------------------------------------------------------------------------------- /samples/ShellLauncher/ShellLauncherV2/ShellLauncherV2DemoUwp/App.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | 9 | -------------------------------------------------------------------------------- /samples/ShellLauncher/ShellLauncherV2/ShellLauncherV2DemoUwp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ShellLauncher/ShellLauncherV2/ShellLauncherV2DemoUwp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/ShellLauncher/ShellLauncherV2/ShellLauncherV2DemoUwp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ShellLauncher/ShellLauncherV2/ShellLauncherV2DemoUwp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/ShellLauncher/ShellLauncherV2/ShellLauncherV2DemoUwp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ShellLauncher/ShellLauncherV2/ShellLauncherV2DemoUwp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/ShellLauncher/ShellLauncherV2/ShellLauncherV2DemoUwp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ShellLauncher/ShellLauncherV2/ShellLauncherV2DemoUwp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/ShellLauncher/ShellLauncherV2/ShellLauncherV2DemoUwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ShellLauncher/ShellLauncherV2/ShellLauncherV2DemoUwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/ShellLauncher/ShellLauncherV2/ShellLauncherV2DemoUwp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ShellLauncher/ShellLauncherV2/ShellLauncherV2DemoUwp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/ShellLauncher/ShellLauncherV2/ShellLauncherV2DemoUwp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ShellLauncher/ShellLauncherV2/ShellLauncherV2DemoUwp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/ShellLauncher/ShellLauncherV2/ShellLauncherV2DemoUwp/ShellLauncherV2DemoUwp_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/ShellLauncher/ShellLauncherV2/ShellLauncherV2DemoUwp/ShellLauncherV2DemoUwp_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/ShellLauncher/ShellLauncherV2/ShellLauncherV2DemoWin32/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /samples/ShellLauncher/ShellLauncherV2/ShellLauncherV2DemoWin32/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /samples/ShellLauncher/ShellLauncherV2/ShellLauncherV2DemoWin32/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/ApplicationInsights.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SpeechTranslator/CS/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/Assets/Logo44.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SpeechTranslator/CS/Assets/Logo44.scale-100.png -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SpeechTranslator/CS/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SpeechTranslator/CS/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SpeechTranslator/CS/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SpeechTranslator/CS/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/ConstantParam.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft. All rights reserved. 2 | 3 | namespace SpeechTranslator 4 | { 5 | class ConstantParam 6 | { 7 | //Token Property 8 | public static string subscriptionKey = "REPLACE THIS WITH YOUR AZURE COGNITIVE SERVICES SUBSCRIPTION KEY"; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/SpeechTranslator_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/SpeechTranslator/CS/SpeechTranslator_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/TempForceSensor/CS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/TempForceSensor/CS/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/TempForceSensor/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/TempForceSensor/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/TempForceSensor/CS/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/TempForceSensor/CS/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/TempForceSensor/CS/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/TempForceSensor/CS/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/TempForceSensor/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/TempForceSensor/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/TempForceSensor/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/TempForceSensor/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/TempForceSensor/CS/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/TempForceSensor/CS/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/TempForceSensor/CS/TempSensor_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/TempForceSensor/CS/TempSensor_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/VideoCaptureSample/CS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/VideoCaptureSample/CS/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/VideoCaptureSample/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/VideoCaptureSample/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/VideoCaptureSample/CS/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/VideoCaptureSample/CS/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/VideoCaptureSample/CS/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/VideoCaptureSample/CS/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/VideoCaptureSample/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/VideoCaptureSample/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/VideoCaptureSample/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/VideoCaptureSample/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/VideoCaptureSample/CS/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/VideoCaptureSample/CS/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/VideoCaptureSample/CS/VideoCaptureSample_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/VideoCaptureSample/CS/VideoCaptureSample_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/WebcamApp/CS/App.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | 9 | -------------------------------------------------------------------------------- /samples/WebcamApp/CS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WebcamApp/CS/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/WebcamApp/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WebcamApp/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/WebcamApp/CS/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WebcamApp/CS/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/WebcamApp/CS/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WebcamApp/CS/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/WebcamApp/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WebcamApp/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/WebcamApp/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WebcamApp/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/WebcamApp/CS/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WebcamApp/CS/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/WebcamApp/CS/WebCamSample_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WebcamApp/CS/WebCamSample_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WifiConnector/CS/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WifiConnector/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WifiConnector/CS/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WifiConnector/CS/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WifiConnector/CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WifiConnector/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WifiConnector/CS/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/open_1bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WifiConnector/CS/Assets/open_1bar.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/open_2bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WifiConnector/CS/Assets/open_2bar.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/open_3bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WifiConnector/CS/Assets/open_3bar.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/open_4bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WifiConnector/CS/Assets/open_4bar.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/open_5bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WifiConnector/CS/Assets/open_5bar.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/secure_1bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WifiConnector/CS/Assets/secure_1bar.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/secure_2bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WifiConnector/CS/Assets/secure_2bar.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/secure_3bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WifiConnector/CS/Assets/secure_3bar.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/secure_4bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WifiConnector/CS/Assets/secure_4bar.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/secure_5bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WifiConnector/CS/Assets/secure_5bar.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/smalltile-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WifiConnector/CS/Assets/smalltile-sdk.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/splash-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WifiConnector/CS/Assets/splash-sdk.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/squaretile-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WifiConnector/CS/Assets/squaretile-sdk.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/storelogo-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WifiConnector/CS/Assets/storelogo-sdk.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/tile-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WifiConnector/CS/Assets/tile-sdk.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/wps-button40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/4fd4102416c4885613a73befd65ae516502ae443/samples/WifiConnector/CS/Assets/wps-button40x40.png --------------------------------------------------------------------------------