├── .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 ├── PosPrinterNetFx ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── PosPrinterNetFx.csproj ├── PosPrinterNetFx.sln ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── README.md ├── 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 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/.gitignore -------------------------------------------------------------------------------- /BusTools/GPIOTestTool/GpioTestTool.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/BusTools/GPIOTestTool/GpioTestTool.vcxproj -------------------------------------------------------------------------------- /BusTools/GPIOTestTool/GpioTestTool.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/BusTools/GPIOTestTool/GpioTestTool.vcxproj.filters -------------------------------------------------------------------------------- /BusTools/GPIOTestTool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/BusTools/GPIOTestTool/main.cpp -------------------------------------------------------------------------------- /BusTools/I2CTestTools/I2cTestTool.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/BusTools/I2CTestTools/I2cTestTool.vcxproj -------------------------------------------------------------------------------- /BusTools/I2CTestTools/I2cTestTool.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/BusTools/I2CTestTools/I2cTestTool.vcxproj.filters -------------------------------------------------------------------------------- /BusTools/I2CTestTools/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/BusTools/I2CTestTools/main.cpp -------------------------------------------------------------------------------- /BusTools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/BusTools/LICENSE -------------------------------------------------------------------------------- /BusTools/Mincomm/MinComm.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/BusTools/Mincomm/MinComm.vcxproj -------------------------------------------------------------------------------- /BusTools/Mincomm/MinComm.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/BusTools/Mincomm/MinComm.vcxproj.filters -------------------------------------------------------------------------------- /BusTools/Mincomm/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/BusTools/Mincomm/main.cpp -------------------------------------------------------------------------------- /BusTools/PwmTestTool/PwmTestTool.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/BusTools/PwmTestTool/PwmTestTool.vcxproj -------------------------------------------------------------------------------- /BusTools/PwmTestTool/PwmTestTool.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/BusTools/PwmTestTool/PwmTestTool.vcxproj.filters -------------------------------------------------------------------------------- /BusTools/PwmTestTool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/BusTools/PwmTestTool/main.cpp -------------------------------------------------------------------------------- /BusTools/SPITestTools/SpiTestTool.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/BusTools/SPITestTools/SpiTestTool.vcxproj -------------------------------------------------------------------------------- /BusTools/SPITestTools/SpiTestTool.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/BusTools/SPITestTools/SpiTestTool.vcxproj.filters -------------------------------------------------------------------------------- /BusTools/SPITestTools/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/BusTools/SPITestTools/main.cpp -------------------------------------------------------------------------------- /BusTools/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/BusTools/readme.md -------------------------------------------------------------------------------- /BusTools/windows-iot-bus-tools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/BusTools/windows-iot-bus-tools.sln -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/README.md -------------------------------------------------------------------------------- /Resources/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Resources/AppRunning-LEDOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/AppRunning-LEDOff.png -------------------------------------------------------------------------------- /Resources/AppRunning-LEDOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/AppRunning-LEDOn.png -------------------------------------------------------------------------------- /Resources/AppServiceSharedNotepad-Messages.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/AppServiceSharedNotepad-Messages.jpg -------------------------------------------------------------------------------- /Resources/AppServiceSharedNotepad-NoMessages.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/AppServiceSharedNotepad-NoMessages.jpg -------------------------------------------------------------------------------- /Resources/Assembled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/Assembled.jpg -------------------------------------------------------------------------------- /Resources/BreadBoardICPlacement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/BreadBoardICPlacement.png -------------------------------------------------------------------------------- /Resources/Breadboard-LEDOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/Breadboard-LEDOff.png -------------------------------------------------------------------------------- /Resources/Breadboard-LEDOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/Breadboard-LEDOn.png -------------------------------------------------------------------------------- /Resources/CP2102_Connections_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/CP2102_Connections_500.png -------------------------------------------------------------------------------- /Resources/CommandBar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/CommandBar.gif -------------------------------------------------------------------------------- /Resources/Deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/Deploy.png -------------------------------------------------------------------------------- /Resources/DeviceInfoPage-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/DeviceInfoPage-Screenshot.png -------------------------------------------------------------------------------- /Resources/FlowSensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/FlowSensor.jpg -------------------------------------------------------------------------------- /Resources/GpioOneWireFritz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/GpioOneWireFritz.png -------------------------------------------------------------------------------- /Resources/GpioOneWireSchematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/GpioOneWireSchematic.png -------------------------------------------------------------------------------- /Resources/GpioOneWireScreen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/GpioOneWireScreen1.png -------------------------------------------------------------------------------- /Resources/I2cPortExpanderDrawing_bb_750.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/I2cPortExpanderDrawing_bb_750.png -------------------------------------------------------------------------------- /Resources/I2cPortExpanderDrawing_schem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/I2cPortExpanderDrawing_schem.png -------------------------------------------------------------------------------- /Resources/MCP23008_Pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/MCP23008_Pinout.png -------------------------------------------------------------------------------- /Resources/MCP23008_PortExpander_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/MCP23008_PortExpander_bb.png -------------------------------------------------------------------------------- /Resources/MCP3002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/MCP3002.png -------------------------------------------------------------------------------- /Resources/MCP3208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/MCP3208.png -------------------------------------------------------------------------------- /Resources/OOBE3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/OOBE3.jpg -------------------------------------------------------------------------------- /Resources/OOBE4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/OOBE4.jpg -------------------------------------------------------------------------------- /Resources/OverallCon-3002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/OverallCon-3002.png -------------------------------------------------------------------------------- /Resources/OverallCon-3208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/OverallCon-3208.png -------------------------------------------------------------------------------- /Resources/OverallCon_mcp3208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/OverallCon_mcp3208.png -------------------------------------------------------------------------------- /Resources/PinMappingsUpBoard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/PinMappingsUpBoard.png -------------------------------------------------------------------------------- /Resources/PushButtonSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/PushButtonSample.png -------------------------------------------------------------------------------- /Resources/RGBLED-schematic_schem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/RGBLED-schematic_schem.png -------------------------------------------------------------------------------- /Resources/RGBLED_Pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/RGBLED_Pinout.png -------------------------------------------------------------------------------- /Resources/RGBLED_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/RGBLED_bb.png -------------------------------------------------------------------------------- /Resources/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/Screenshot.jpg -------------------------------------------------------------------------------- /Resources/SendMessageB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/SendMessageB.png -------------------------------------------------------------------------------- /Resources/SerialSampleRunningPC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/SerialSampleRunningPC.png -------------------------------------------------------------------------------- /Resources/SerialSampleRunningPC_ConnectDevice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/SerialSampleRunningPC_ConnectDevice.png -------------------------------------------------------------------------------- /Resources/SiLabs-UART.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/SiLabs-UART.png -------------------------------------------------------------------------------- /Resources/UpBoard_Pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/UpBoard_Pinout.png -------------------------------------------------------------------------------- /Resources/Upboard_Pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/Upboard_Pinout.png -------------------------------------------------------------------------------- /Resources/Upboard_PushButton_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/Upboard_PushButton_bb.png -------------------------------------------------------------------------------- /Resources/Upboard_PushButton_schem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/Upboard_PushButton_schem.png -------------------------------------------------------------------------------- /Resources/blinky-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/blinky-screenshot.png -------------------------------------------------------------------------------- /Resources/breadboard_assembled_UpBoard_kit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/breadboard_assembled_UpBoard_kit.png -------------------------------------------------------------------------------- /Resources/breadboard_assembled_upboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/breadboard_assembled_upboard.png -------------------------------------------------------------------------------- /Resources/breadboard_assembled_upboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/breadboard_assembled_upboard1.png -------------------------------------------------------------------------------- /Resources/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/components.png -------------------------------------------------------------------------------- /Resources/components1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/components1.png -------------------------------------------------------------------------------- /Resources/components2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/components2.png -------------------------------------------------------------------------------- /Resources/force_mcp3002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/force_mcp3002.png -------------------------------------------------------------------------------- /Resources/images/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Resources/images/Azure/IoTHubClients/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Resources/images/CustomDeviceAccessorUwp-AppContainerSid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/images/CustomDeviceAccessorUwp-AppContainerSid.png -------------------------------------------------------------------------------- /Resources/images/DeviceIoControlUwp-AppContainerSid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/images/DeviceIoControlUwp-AppContainerSid.png -------------------------------------------------------------------------------- /Resources/images/PMWebCamOptions.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/images/PMWebCamOptions.PNG -------------------------------------------------------------------------------- /Resources/images/ProcessLauncherSample/BuildDependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/images/ProcessLauncherSample/BuildDependencies.png -------------------------------------------------------------------------------- /Resources/images/ProcessLauncherSample/ExeProperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/images/ProcessLauncherSample/ExeProperties.png -------------------------------------------------------------------------------- /Resources/images/ProcessLauncherSample/ProcessLauncher0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/images/ProcessLauncherSample/ProcessLauncher0.png -------------------------------------------------------------------------------- /Resources/images/ProcessLauncherSample/ProcessLauncher1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/images/ProcessLauncherSample/ProcessLauncher1.png -------------------------------------------------------------------------------- /Resources/images/ProcessLauncherSample/ProcessLauncher2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/images/ProcessLauncherSample/ProcessLauncher2.png -------------------------------------------------------------------------------- /Resources/images/WifiConnectSample/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Resources/images/WifiConnectSample/WiFiSample0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/images/WifiConnectSample/WiFiSample0.png -------------------------------------------------------------------------------- /Resources/images/WifiConnectSample/WiFiSample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/images/WifiConnectSample/WiFiSample1.png -------------------------------------------------------------------------------- /Resources/images/WifiConnectSample/WiFiSample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/images/WifiConnectSample/WiFiSample2.png -------------------------------------------------------------------------------- /Resources/schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/schematic.png -------------------------------------------------------------------------------- /Resources/schematics_upboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/schematics_upboard.png -------------------------------------------------------------------------------- /Resources/schematics_upboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/schematics_upboard1.png -------------------------------------------------------------------------------- /Resources/spiaccelerometer_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/spiaccelerometer_screenshot.png -------------------------------------------------------------------------------- /Resources/spidisplay_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/spidisplay_screenshot.png -------------------------------------------------------------------------------- /Resources/step11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/step11.png -------------------------------------------------------------------------------- /Resources/step12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/step12.png -------------------------------------------------------------------------------- /Resources/step13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/step13.png -------------------------------------------------------------------------------- /Resources/step14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/step14.png -------------------------------------------------------------------------------- /Resources/step17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/step17.png -------------------------------------------------------------------------------- /Resources/step18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/step18.png -------------------------------------------------------------------------------- /Resources/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/step2.png -------------------------------------------------------------------------------- /Resources/step2a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/step2a.png -------------------------------------------------------------------------------- /Resources/step3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/step3.PNG -------------------------------------------------------------------------------- /Resources/step3a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/step3a.png -------------------------------------------------------------------------------- /Resources/step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/step4.png -------------------------------------------------------------------------------- /Resources/step5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/step5.png -------------------------------------------------------------------------------- /Resources/step5a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/step5a.png -------------------------------------------------------------------------------- /Resources/step6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/step6.PNG -------------------------------------------------------------------------------- /Resources/step6a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/step6a.png -------------------------------------------------------------------------------- /Resources/step7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/step7.png -------------------------------------------------------------------------------- /Resources/step8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/step8.png -------------------------------------------------------------------------------- /Resources/temp_mcp3002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/Resources/temp_mcp3002.png -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /samples/Accelerometer/CS/Accelerometer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Accelerometer/CS/Accelerometer.csproj -------------------------------------------------------------------------------- /samples/Accelerometer/CS/Accelerometer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Accelerometer/CS/Accelerometer.sln -------------------------------------------------------------------------------- /samples/Accelerometer/CS/Accelerometer_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Accelerometer/CS/Accelerometer_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/Accelerometer/CS/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Accelerometer/CS/App.xaml -------------------------------------------------------------------------------- /samples/Accelerometer/CS/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Accelerometer/CS/App.xaml.cs -------------------------------------------------------------------------------- /samples/Accelerometer/CS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Accelerometer/CS/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/Accelerometer/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Accelerometer/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/Accelerometer/CS/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Accelerometer/CS/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/Accelerometer/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Accelerometer/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/Accelerometer/CS/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Accelerometer/CS/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/Accelerometer/CS/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Accelerometer/CS/MainPage.xaml -------------------------------------------------------------------------------- /samples/Accelerometer/CS/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Accelerometer/CS/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/Accelerometer/CS/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Accelerometer/CS/Package.appxmanifest -------------------------------------------------------------------------------- /samples/Accelerometer/CS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Accelerometer/CS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/Accelerometer/CS/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Accelerometer/CS/Properties/Default.rd.xml -------------------------------------------------------------------------------- /samples/Accelerometer/CS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Accelerometer/CS/README.md -------------------------------------------------------------------------------- /samples/Accelerometer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Accelerometer/README.md -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/AppServiceBlinky/CPP/BlinkyClient.sln -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyClient/StartupTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/AppServiceBlinky/CPP/BlinkyClient/StartupTask.cpp -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyClient/StartupTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/AppServiceBlinky/CPP/BlinkyClient/StartupTask.h -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyClient/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/AppServiceBlinky/CPP/BlinkyClient/pch.cpp -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyClient/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/AppServiceBlinky/CPP/BlinkyClient/pch.h -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyService.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/AppServiceBlinky/CPP/BlinkyService.sln -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyService/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/AppServiceBlinky/CPP/BlinkyService/pch.cpp -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/BlinkyService/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/AppServiceBlinky/CPP/BlinkyService/pch.h -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CPP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/AppServiceBlinky/CPP/README.md -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CS/BlinkyClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/AppServiceBlinky/CS/BlinkyClient.sln -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CS/BlinkyClient/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/AppServiceBlinky/CS/BlinkyClient/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CS/BlinkyClient/BlinkyClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/AppServiceBlinky/CS/BlinkyClient/BlinkyClient.csproj -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CS/BlinkyClient/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/AppServiceBlinky/CS/BlinkyClient/Package.appxmanifest -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CS/BlinkyClient/StartupTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/AppServiceBlinky/CS/BlinkyClient/StartupTask.cs -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CS/BlinkyService.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/AppServiceBlinky/CS/BlinkyService.sln -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CS/BlinkyService/StartupTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/AppServiceBlinky/CS/BlinkyService/StartupTask.cs -------------------------------------------------------------------------------- /samples/AppServiceBlinky/CS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/AppServiceBlinky/CS/README.md -------------------------------------------------------------------------------- /samples/AppServiceBlinky/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/AppServiceBlinky/README.md -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadService.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/AppServiceSharedNotepad/CS/NotepadService.sln -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/NotepadService/Notepad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/AppServiceSharedNotepad/CS/NotepadService/Notepad.cs -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/CS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/AppServiceSharedNotepad/CS/README.md -------------------------------------------------------------------------------- /samples/AppServiceSharedNotepad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/AppServiceSharedNotepad/README.md -------------------------------------------------------------------------------- /samples/CustomDeviceAccessor/CPP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/CustomDeviceAccessor/CPP/App.xaml -------------------------------------------------------------------------------- /samples/CustomDeviceAccessor/CPP/App.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/CustomDeviceAccessor/CPP/App.xaml.cpp -------------------------------------------------------------------------------- /samples/CustomDeviceAccessor/CPP/App.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/CustomDeviceAccessor/CPP/App.xaml.h -------------------------------------------------------------------------------- /samples/CustomDeviceAccessor/CPP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/CustomDeviceAccessor/CPP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/CustomDeviceAccessor/CPP/CustomDeviceAccessorUWP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/CustomDeviceAccessor/CPP/CustomDeviceAccessorUWP.sln -------------------------------------------------------------------------------- /samples/CustomDeviceAccessor/CPP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/CustomDeviceAccessor/CPP/MainPage.xaml -------------------------------------------------------------------------------- /samples/CustomDeviceAccessor/CPP/MainPage.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/CustomDeviceAccessor/CPP/MainPage.xaml.cpp -------------------------------------------------------------------------------- /samples/CustomDeviceAccessor/CPP/MainPage.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/CustomDeviceAccessor/CPP/MainPage.xaml.h -------------------------------------------------------------------------------- /samples/CustomDeviceAccessor/CPP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/CustomDeviceAccessor/CPP/Package.appxmanifest -------------------------------------------------------------------------------- /samples/CustomDeviceAccessor/CPP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/CustomDeviceAccessor/CPP/README.md -------------------------------------------------------------------------------- /samples/CustomDeviceAccessor/CPP/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/CustomDeviceAccessor/CPP/pch.cpp -------------------------------------------------------------------------------- /samples/CustomDeviceAccessor/CPP/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/CustomDeviceAccessor/CPP/pch.h -------------------------------------------------------------------------------- /samples/CustomDeviceAccessor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/CustomDeviceAccessor/README.md -------------------------------------------------------------------------------- /samples/DMMocKPortal/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/App.config -------------------------------------------------------------------------------- /samples/DMMocKPortal/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/App.xaml -------------------------------------------------------------------------------- /samples/DMMocKPortal/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/App.xaml.cs -------------------------------------------------------------------------------- /samples/DMMocKPortal/DMConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/DMConstants.cs -------------------------------------------------------------------------------- /samples/DMMocKPortal/DMMockPortal.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/DMMockPortal.csproj -------------------------------------------------------------------------------- /samples/DMMocKPortal/DMMockPortal.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/DMMockPortal.sln -------------------------------------------------------------------------------- /samples/DMMocKPortal/DeploymentControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/DeploymentControl.xaml -------------------------------------------------------------------------------- /samples/DMMocKPortal/DeploymentControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/DeploymentControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMMocKPortal/DeploymentListControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/DeploymentListControl.xaml -------------------------------------------------------------------------------- /samples/DMMocKPortal/DeploymentListControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/DeploymentListControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMMocKPortal/DeviceListControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/DeviceListControl.xaml -------------------------------------------------------------------------------- /samples/DMMocKPortal/DeviceListControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/DeviceListControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMMocKPortal/DeviceTwinControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/DeviceTwinControl.xaml -------------------------------------------------------------------------------- /samples/DMMocKPortal/DeviceTwinControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/DeviceTwinControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMMocKPortal/DevicesQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/DevicesQuery.cs -------------------------------------------------------------------------------- /samples/DMMocKPortal/Dialogs/SamplesDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/Dialogs/SamplesDialog.xaml -------------------------------------------------------------------------------- /samples/DMMocKPortal/Dialogs/SamplesDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/Dialogs/SamplesDialog.xaml.cs -------------------------------------------------------------------------------- /samples/DMMocKPortal/IotHubManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/IotHubManager.cs -------------------------------------------------------------------------------- /samples/DMMocKPortal/JsonTemplates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/JsonTemplates.cs -------------------------------------------------------------------------------- /samples/DMMocKPortal/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/MainWindow.xaml -------------------------------------------------------------------------------- /samples/DMMocKPortal/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/MainWindow.xaml.cs -------------------------------------------------------------------------------- /samples/DMMocKPortal/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/DMMocKPortal/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /samples/DMMocKPortal/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/Properties/Resources.resx -------------------------------------------------------------------------------- /samples/DMMocKPortal/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /samples/DMMocKPortal/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/Properties/Settings.settings -------------------------------------------------------------------------------- /samples/DMMocKPortal/PropertyControls/RebootInfoControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/PropertyControls/RebootInfoControl.xaml -------------------------------------------------------------------------------- /samples/DMMocKPortal/TabControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/TabControl.xaml -------------------------------------------------------------------------------- /samples/DMMocKPortal/TabControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/TabControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMMocKPortal/adm.windows_telemetry_arm_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/adm.windows_telemetry_arm_v1.json -------------------------------------------------------------------------------- /samples/DMMocKPortal/adm.windows_telemetry_x64_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/adm.windows_telemetry_x64_v1.json -------------------------------------------------------------------------------- /samples/DMMocKPortal/dm-mock-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/dm-mock-portal.png -------------------------------------------------------------------------------- /samples/DMMocKPortal/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/packages.config -------------------------------------------------------------------------------- /samples/DMMocKPortal/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/readme.md -------------------------------------------------------------------------------- /samples/DMMocKPortal/windows_telemetry_x64_v1.json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DMMocKPortal/windows_telemetry_x64_v1.json.txt -------------------------------------------------------------------------------- /samples/DeviceIOContoller/CPP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DeviceIOContoller/CPP/App.xaml -------------------------------------------------------------------------------- /samples/DeviceIOContoller/CPP/App.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DeviceIOContoller/CPP/App.xaml.cpp -------------------------------------------------------------------------------- /samples/DeviceIOContoller/CPP/App.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DeviceIOContoller/CPP/App.xaml.h -------------------------------------------------------------------------------- /samples/DeviceIOContoller/CPP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DeviceIOContoller/CPP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/DeviceIOContoller/CPP/DeviceIoControlUwp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DeviceIOContoller/CPP/DeviceIoControlUwp.sln -------------------------------------------------------------------------------- /samples/DeviceIOContoller/CPP/DeviceIoControlUwp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DeviceIOContoller/CPP/DeviceIoControlUwp.vcxproj -------------------------------------------------------------------------------- /samples/DeviceIOContoller/CPP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DeviceIOContoller/CPP/MainPage.xaml -------------------------------------------------------------------------------- /samples/DeviceIOContoller/CPP/MainPage.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DeviceIOContoller/CPP/MainPage.xaml.cpp -------------------------------------------------------------------------------- /samples/DeviceIOContoller/CPP/MainPage.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DeviceIOContoller/CPP/MainPage.xaml.h -------------------------------------------------------------------------------- /samples/DeviceIOContoller/CPP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DeviceIOContoller/CPP/Package.appxmanifest -------------------------------------------------------------------------------- /samples/DeviceIOContoller/CPP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DeviceIOContoller/CPP/README.md -------------------------------------------------------------------------------- /samples/DeviceIOContoller/CPP/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DeviceIOContoller/CPP/pch.cpp -------------------------------------------------------------------------------- /samples/DeviceIOContoller/CPP/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DeviceIOContoller/CPP/pch.h -------------------------------------------------------------------------------- /samples/DeviceIOContoller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DeviceIOContoller/README.md -------------------------------------------------------------------------------- /samples/DualOperator/Dual Operator objects.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/Dual Operator objects.jpg -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator.sln -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/DualOperator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/DualOperator.csproj -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/DualOperator.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/DualOperator.csproj.user -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Enumerations/DataCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Enumerations/DataCommand.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Enumerations/HIDUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Enumerations/HIDUsage.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Enumerations/KeyEventF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Enumerations/KeyEventF.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Enumerations/MouseEventF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Enumerations/MouseEventF.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Enumerations/OutputType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Enumerations/OutputType.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Helpers/DeviceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Helpers/DeviceType.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Helpers/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Helpers/Extensions.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Helpers/KeyMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Helpers/KeyMapper.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Helpers/KeyPressEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Helpers/KeyPressEvent.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Helpers/LoadOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Helpers/LoadOperator.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Helpers/PreMessageFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Helpers/PreMessageFilter.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Helpers/RawInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Helpers/RawInput.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Helpers/RawInputEventArg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Helpers/RawInputEventArg.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Helpers/RawKeyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Helpers/RawKeyboard.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Helpers/RegistryAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Helpers/RegistryAccess.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Helpers/SendKeyMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Helpers/SendKeyMapper.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Helpers/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Helpers/Win32.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Models/KeyboardItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Models/KeyboardItem.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Models/OperatorApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Models/OperatorApp.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Models/RunningApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Models/RunningApp.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Models/WinStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Models/WinStruct.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/OperatorManager.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/OperatorManager.Designer.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/OperatorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/OperatorManager.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/OperatorManager.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/OperatorManager.resx -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Program.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/ScanOperator.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/ScanOperator.Designer.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/ScanOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/ScanOperator.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/ScanOperator.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/ScanOperator.resx -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Structures/DeviceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Structures/DeviceInfo.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Structures/DeviceInfoHID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Structures/DeviceInfoHID.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Structures/InputData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Structures/InputData.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Structures/MouseOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Structures/MouseOutput.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Structures/Output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Structures/Output.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Structures/OutputUnion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Structures/OutputUnion.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Structures/RawData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Structures/RawData.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Structures/RawHID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Structures/RawHID.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Structures/RawKeyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Structures/RawKeyboard.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/Structures/RawMouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/Structures/RawMouse.cs -------------------------------------------------------------------------------- /samples/DualOperator/DualOperator/operators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/DualOperator/operators.json -------------------------------------------------------------------------------- /samples/DualOperator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/README.md -------------------------------------------------------------------------------- /samples/DualOperator/TestApp/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/TestApp/Form1.Designer.cs -------------------------------------------------------------------------------- /samples/DualOperator/TestApp/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/TestApp/Form1.cs -------------------------------------------------------------------------------- /samples/DualOperator/TestApp/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/TestApp/Form1.resx -------------------------------------------------------------------------------- /samples/DualOperator/TestApp/Models/AppTitle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/TestApp/Models/AppTitle.cs -------------------------------------------------------------------------------- /samples/DualOperator/TestApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/TestApp/Program.cs -------------------------------------------------------------------------------- /samples/DualOperator/TestApp/TestApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/TestApp/TestApp.csproj -------------------------------------------------------------------------------- /samples/DualOperator/TestApp/TestApp.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/TestApp/TestApp.csproj.user -------------------------------------------------------------------------------- /samples/DualOperator/TestApp/apptitle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/DualOperator/TestApp/apptitle.json -------------------------------------------------------------------------------- /samples/ExternalProcessLauncher/CS/ProcessLauncherSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/ExternalProcessLauncher/CS/ProcessLauncherSample.sln -------------------------------------------------------------------------------- /samples/ExternalProcessLauncher/CS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/ExternalProcessLauncher/CS/README.md -------------------------------------------------------------------------------- /samples/ExternalProcessLauncher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/ExternalProcessLauncher/README.md -------------------------------------------------------------------------------- /samples/FlowVolume/CS/FlowVolume.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/FlowVolume/CS/FlowVolume.sln -------------------------------------------------------------------------------- /samples/FlowVolume/CS/FlowVolume/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/FlowVolume/CS/FlowVolume/App.xaml -------------------------------------------------------------------------------- /samples/FlowVolume/CS/FlowVolume/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/FlowVolume/CS/FlowVolume/App.xaml.cs -------------------------------------------------------------------------------- /samples/FlowVolume/CS/FlowVolume/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/FlowVolume/CS/FlowVolume/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/FlowVolume/CS/FlowVolume/Flow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/FlowVolume/CS/FlowVolume/Flow.cs -------------------------------------------------------------------------------- /samples/FlowVolume/CS/FlowVolume/FlowVolume.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/FlowVolume/CS/FlowVolume/FlowVolume.csproj -------------------------------------------------------------------------------- /samples/FlowVolume/CS/FlowVolume/FlowVolume_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/FlowVolume/CS/FlowVolume/FlowVolume_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/FlowVolume/CS/FlowVolume/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/FlowVolume/CS/FlowVolume/MainPage.xaml -------------------------------------------------------------------------------- /samples/FlowVolume/CS/FlowVolume/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/FlowVolume/CS/FlowVolume/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/FlowVolume/CS/FlowVolume/Models/Measurement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/FlowVolume/CS/FlowVolume/Models/Measurement.cs -------------------------------------------------------------------------------- /samples/FlowVolume/CS/FlowVolume/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/FlowVolume/CS/FlowVolume/Package.appxmanifest -------------------------------------------------------------------------------- /samples/FlowVolume/CS/FlowVolume/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/FlowVolume/CS/FlowVolume/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/FlowVolume/CS/FlowVolume/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/FlowVolume/CS/FlowVolume/Properties/Default.rd.xml -------------------------------------------------------------------------------- /samples/FlowVolume/CS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/FlowVolume/CS/README.md -------------------------------------------------------------------------------- /samples/FlowVolume/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/FlowVolume/README.md -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CPP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/ForegroundAppWithBackgroundApp/CPP/README.md -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/CS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/ForegroundAppWithBackgroundApp/CS/README.md -------------------------------------------------------------------------------- /samples/ForegroundAppWithBackgroundApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/ForegroundAppWithBackgroundApp/README.md -------------------------------------------------------------------------------- /samples/GPIOKmdfDemo/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOKmdfDemo/LICENSE.txt -------------------------------------------------------------------------------- /samples/GPIOKmdfDemo/acpitable/MBM_ACPITABL/ACPITABL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOKmdfDemo/acpitable/MBM_ACPITABL/ACPITABL.dat -------------------------------------------------------------------------------- /samples/GPIOKmdfDemo/acpitable/RPi2_ACPITABL/ACPITABL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOKmdfDemo/acpitable/RPi2_ACPITABL/ACPITABL.dat -------------------------------------------------------------------------------- /samples/GPIOKmdfDemo/acpitable/SBC_ACPITABL/ACPITABL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOKmdfDemo/acpitable/SBC_ACPITABL/ACPITABL.dat -------------------------------------------------------------------------------- /samples/GPIOKmdfDemo/asl/dragon.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOKmdfDemo/asl/dragon.asl -------------------------------------------------------------------------------- /samples/GPIOKmdfDemo/asl/gpiokmdfdemo.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOKmdfDemo/asl/gpiokmdfdemo.asl -------------------------------------------------------------------------------- /samples/GPIOKmdfDemo/asl/rpi2.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOKmdfDemo/asl/rpi2.asl -------------------------------------------------------------------------------- /samples/GPIOKmdfDemo/gpiokmdfdemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOKmdfDemo/gpiokmdfdemo.sln -------------------------------------------------------------------------------- /samples/GPIOKmdfDemo/gpiokmdfdemo/gpiokmdfdemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOKmdfDemo/gpiokmdfdemo/gpiokmdfdemo.cpp -------------------------------------------------------------------------------- /samples/GPIOKmdfDemo/gpiokmdfdemo/gpiokmdfdemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOKmdfDemo/gpiokmdfdemo/gpiokmdfdemo.h -------------------------------------------------------------------------------- /samples/GPIOKmdfDemo/gpiokmdfdemo/gpiokmdfdemo.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOKmdfDemo/gpiokmdfdemo/gpiokmdfdemo.inf -------------------------------------------------------------------------------- /samples/GPIOKmdfDemo/gpiokmdfdemo/gpiokmdfdemo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOKmdfDemo/gpiokmdfdemo/gpiokmdfdemo.vcxproj -------------------------------------------------------------------------------- /samples/GPIOKmdfDemo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOKmdfDemo/readme.md -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOOneWire/CPP/App.xaml -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/App.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOOneWire/CPP/App.xaml.cpp -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/App.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOOneWire/CPP/App.xaml.h -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOOneWire/CPP/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOOneWire/CPP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOOneWire/CPP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOOneWire/CPP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOOneWire/CPP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/Assets/schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOOneWire/CPP/Assets/schematic.png -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/GpioOneWire.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOOneWire/CPP/GpioOneWire.vcxproj -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/GpioOneWire.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOOneWire/CPP/GpioOneWire.vcxproj.filters -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOOneWire/CPP/MainPage.xaml -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/MainPage.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOOneWire/CPP/MainPage.xaml.cpp -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/MainPage.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOOneWire/CPP/MainPage.xaml.h -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOOneWire/CPP/Package.appxmanifest -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOOneWire/CPP/ReadMe.md -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOOneWire/CPP/pch.cpp -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOOneWire/CPP/pch.h -------------------------------------------------------------------------------- /samples/GPIOOneWire/CPP/schematic.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOOneWire/CPP/schematic.sch -------------------------------------------------------------------------------- /samples/GPIOOneWire/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/GPIOOneWire/ReadMe.md -------------------------------------------------------------------------------- /samples/HIDInjector/HidInjector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HIDInjector/HidInjector.sln -------------------------------------------------------------------------------- /samples/HIDInjector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HIDInjector/README.md -------------------------------------------------------------------------------- /samples/HIDInjector/app/HidDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HIDInjector/app/HidDevice.cpp -------------------------------------------------------------------------------- /samples/HIDInjector/app/HidDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HIDInjector/app/HidDevice.h -------------------------------------------------------------------------------- /samples/HIDInjector/app/HidInject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HIDInjector/app/HidInject.cpp -------------------------------------------------------------------------------- /samples/HIDInjector/app/HidInject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HIDInjector/app/HidInject.h -------------------------------------------------------------------------------- /samples/HIDInjector/app/HidInjectorTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HIDInjector/app/HidInjectorTest.c -------------------------------------------------------------------------------- /samples/HIDInjector/app/HidInjectorTest.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HIDInjector/app/HidInjectorTest.rc -------------------------------------------------------------------------------- /samples/HIDInjector/app/HidInjectorTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HIDInjector/app/HidInjectorTest.vcxproj -------------------------------------------------------------------------------- /samples/HIDInjector/app/HidInjectorTest.vcxproj.Filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HIDInjector/app/HidInjectorTest.vcxproj.Filters -------------------------------------------------------------------------------- /samples/HIDInjector/app/SendInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HIDInjector/app/SendInput.cpp -------------------------------------------------------------------------------- /samples/HIDInjector/app/SendInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HIDInjector/app/SendInput.h -------------------------------------------------------------------------------- /samples/HIDInjector/driver/CreateDriverPackage.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HIDInjector/driver/CreateDriverPackage.cmd -------------------------------------------------------------------------------- /samples/HIDInjector/driver/HidDriver.arm.pkg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HIDInjector/driver/HidDriver.arm.pkg.xml -------------------------------------------------------------------------------- /samples/HIDInjector/driver/HidInjectorKd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HIDInjector/driver/HidInjectorKd.c -------------------------------------------------------------------------------- /samples/HIDInjector/driver/HidInjectorKd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HIDInjector/driver/HidInjectorKd.h -------------------------------------------------------------------------------- /samples/HIDInjector/driver/HidInjectorKd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HIDInjector/driver/HidInjectorKd.rc -------------------------------------------------------------------------------- /samples/HIDInjector/driver/HidInjectorKd.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HIDInjector/driver/HidInjectorKd.vcxproj -------------------------------------------------------------------------------- /samples/HIDInjector/driver/HidInjectorKd.vcxproj.Filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HIDInjector/driver/HidInjectorKd.vcxproj.Filters -------------------------------------------------------------------------------- /samples/HIDInjector/driver/HidInjectorSample.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HIDInjector/driver/HidInjectorSample.inx -------------------------------------------------------------------------------- /samples/HIDInjector/driver/rawpdo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HIDInjector/driver/rawpdo.c -------------------------------------------------------------------------------- /samples/HIDInjector/driver/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HIDInjector/driver/util.c -------------------------------------------------------------------------------- /samples/HIDInjector/inc/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HIDInjector/inc/common.h -------------------------------------------------------------------------------- /samples/Hello Blinky/CS/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/CS/App.xaml -------------------------------------------------------------------------------- /samples/Hello Blinky/CS/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/CS/App.xaml.cs -------------------------------------------------------------------------------- /samples/Hello Blinky/CS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/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/HEAD/samples/Hello Blinky/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/Hello Blinky/CS/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/CS/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/Hello Blinky/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/Hello Blinky/CS/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/CS/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/Hello Blinky/CS/Blinky.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/CS/Blinky.csproj -------------------------------------------------------------------------------- /samples/Hello Blinky/CS/Blinky.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/CS/Blinky.sln -------------------------------------------------------------------------------- /samples/Hello Blinky/CS/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/CS/MainPage.xaml -------------------------------------------------------------------------------- /samples/Hello Blinky/CS/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/CS/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/Hello Blinky/CS/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/CS/Package.appxmanifest -------------------------------------------------------------------------------- /samples/Hello Blinky/CS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/CS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/Hello Blinky/CS/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/CS/Properties/Default.rd.xml -------------------------------------------------------------------------------- /samples/Hello Blinky/CS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/CS/README.md -------------------------------------------------------------------------------- /samples/Hello Blinky/Cpp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/Cpp/App.xaml -------------------------------------------------------------------------------- /samples/Hello Blinky/Cpp/App.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/Cpp/App.xaml.cpp -------------------------------------------------------------------------------- /samples/Hello Blinky/Cpp/App.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/Cpp/App.xaml.h -------------------------------------------------------------------------------- /samples/Hello Blinky/Cpp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/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/HEAD/samples/Hello Blinky/Cpp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/Hello Blinky/Cpp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/Cpp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/Hello Blinky/Cpp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/Cpp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/Hello Blinky/Cpp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/Cpp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/Hello Blinky/Cpp/BlinkyCpp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/Cpp/BlinkyCpp.sln -------------------------------------------------------------------------------- /samples/Hello Blinky/Cpp/BlinkyCpp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/Cpp/BlinkyCpp.vcxproj -------------------------------------------------------------------------------- /samples/Hello Blinky/Cpp/BlinkyCpp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/Cpp/BlinkyCpp.vcxproj.filters -------------------------------------------------------------------------------- /samples/Hello Blinky/Cpp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/Cpp/MainPage.xaml -------------------------------------------------------------------------------- /samples/Hello Blinky/Cpp/MainPage.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/Cpp/MainPage.xaml.cpp -------------------------------------------------------------------------------- /samples/Hello Blinky/Cpp/MainPage.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/Cpp/MainPage.xaml.h -------------------------------------------------------------------------------- /samples/Hello Blinky/Cpp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/Cpp/Package.appxmanifest -------------------------------------------------------------------------------- /samples/Hello Blinky/Cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/Cpp/README.md -------------------------------------------------------------------------------- /samples/Hello Blinky/Cpp/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/Cpp/pch.cpp -------------------------------------------------------------------------------- /samples/Hello Blinky/Cpp/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/Cpp/pch.h -------------------------------------------------------------------------------- /samples/Hello Blinky/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Hello Blinky/README.md -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CPP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/CPP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CPP/BlinkyHeadlessCpp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/CPP/BlinkyHeadlessCpp.sln -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CPP/BlinkyHeadlessCpp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/CPP/BlinkyHeadlessCpp.vcxproj -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CPP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/CPP/Package.appxmanifest -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CPP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/CPP/README.md -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CPP/StartupTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/CPP/StartupTask.cpp -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CPP/StartupTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/CPP/StartupTask.h -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CPP/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/CPP/pch.cpp -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CPP/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/CPP/pch.h -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CS/BlinkyHeadlessCS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/CS/BlinkyHeadlessCS.csproj -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CS/BlinkyHeadlessCS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/CS/BlinkyHeadlessCS.sln -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CS/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/CS/Package.appxmanifest -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/CS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CS/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/CS/Properties/Default.rd.xml -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/CS/README.md -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/CS/StartupTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/CS/StartupTask.cs -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/README.md -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/VB/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/VB/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/VB/BlinkyHeadlessVB.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/VB/BlinkyHeadlessVB.sln -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/VB/BlinkyHeadlessVB.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/VB/BlinkyHeadlessVB.vbproj -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/VB/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/VB/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/VB/My Project/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/VB/My Project/Default.rd.xml -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/VB/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/VB/Package.appxmanifest -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/VB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/VB/README.md -------------------------------------------------------------------------------- /samples/HelloBlinkyBackground/VB/StartupTask.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/HelloBlinkyBackground/VB/StartupTask.vb -------------------------------------------------------------------------------- /samples/I2CCompass/CS/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CCompass/CS/App.xaml -------------------------------------------------------------------------------- /samples/I2CCompass/CS/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CCompass/CS/App.xaml.cs -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CCompass/CS/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CCompass/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CCompass/CS/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CCompass/CS/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CCompass/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CCompass/CS/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Converters/HeadingConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CCompass/CS/Converters/HeadingConverter.cs -------------------------------------------------------------------------------- /samples/I2CCompass/CS/I2CCompass.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CCompass/CS/I2CCompass.csproj -------------------------------------------------------------------------------- /samples/I2CCompass/CS/I2CCompass.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CCompass/CS/I2CCompass.sln -------------------------------------------------------------------------------- /samples/I2CCompass/CS/I2CCompass_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CCompass/CS/I2CCompass_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CCompass/CS/Package.appxmanifest -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CCompass/CS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CCompass/CS/Properties/Default.rd.xml -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Sensors/CompassReading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CCompass/CS/Sensors/CompassReading.cs -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Sensors/HMC5883L.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CCompass/CS/Sensors/HMC5883L.cs -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Sensors/ICompass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CCompass/CS/Sensors/ICompass.cs -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Sensors/MagnetometerMeasurementMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CCompass/CS/Sensors/MagnetometerMeasurementMode.cs -------------------------------------------------------------------------------- /samples/I2CCompass/CS/ViewModels/MainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CCompass/CS/ViewModels/MainPageViewModel.cs -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Views/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CCompass/CS/Views/MainPage.xaml -------------------------------------------------------------------------------- /samples/I2CCompass/CS/Views/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CCompass/CS/Views/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/I2CCompass/HMC5883L_3-Axis_Digital_Compass_IC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CCompass/HMC5883L_3-Axis_Digital_Compass_IC.pdf -------------------------------------------------------------------------------- /samples/I2CCompass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CCompass/README.md -------------------------------------------------------------------------------- /samples/I2CPortExpander/CS/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CPortExpander/CS/App.xaml -------------------------------------------------------------------------------- /samples/I2CPortExpander/CS/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CPortExpander/CS/App.xaml.cs -------------------------------------------------------------------------------- /samples/I2CPortExpander/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CPortExpander/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/I2CPortExpander/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CPortExpander/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/I2CPortExpander/CS/I2cPortExpander.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CPortExpander/CS/I2cPortExpander.csproj -------------------------------------------------------------------------------- /samples/I2CPortExpander/CS/I2cPortExpander.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CPortExpander/CS/I2cPortExpander.sln -------------------------------------------------------------------------------- /samples/I2CPortExpander/CS/I2cPortExpander_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CPortExpander/CS/I2cPortExpander_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/I2CPortExpander/CS/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CPortExpander/CS/MainPage.xaml -------------------------------------------------------------------------------- /samples/I2CPortExpander/CS/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CPortExpander/CS/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/I2CPortExpander/CS/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CPortExpander/CS/Package.appxmanifest -------------------------------------------------------------------------------- /samples/I2CPortExpander/CS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CPortExpander/CS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/I2CPortExpander/CS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CPortExpander/CS/README.md -------------------------------------------------------------------------------- /samples/I2CPortExpander/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/I2CPortExpander/README.md -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/IoTEnterpriseDefaultApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTEnterpriseDefault/CS/IoTEnterpriseDefaultApp.sln -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTEnterpriseDefault/CS/README.md -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay.Utils/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTEnterpriseDefault/CS/SmartDisplay.Utils/Common.cs -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay.Utils/Keys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTEnterpriseDefault/CS/SmartDisplay.Utils/Keys.cs -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay.Utils/WebUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTEnterpriseDefault/CS/SmartDisplay.Utils/WebUtil.cs -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTEnterpriseDefault/CS/SmartDisplay/App.xaml -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTEnterpriseDefault/CS/SmartDisplay/App.xaml.cs -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/AppComposer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTEnterpriseDefault/CS/SmartDisplay/AppComposer.cs -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/AppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTEnterpriseDefault/CS/SmartDisplay/AppService.cs -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/CS/SmartDisplay/Utils/LogUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTEnterpriseDefault/CS/SmartDisplay/Utils/LogUtil.cs -------------------------------------------------------------------------------- /samples/IoTEnterpriseDefault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTEnterpriseDefault/README.md -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTHubClients/CS/App.xaml -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTHubClients/CS/App.xaml.cs -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTHubClients/CS/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTHubClients/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTHubClients/CS/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTHubClients/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTHubClients/CS/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/Assets/test: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/IoTHubClients.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTHubClients/CS/IoTHubClients.sln -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/IoTHubForegroundClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTHubClients/CS/IoTHubForegroundClient.csproj -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTHubClients/CS/MainPage.xaml -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTHubClients/CS/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTHubClients/CS/Package.appxmanifest -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTHubClients/CS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTHubClients/CS/Properties/Default.rd.xml -------------------------------------------------------------------------------- /samples/IoTHubClients/CS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTHubClients/CS/README.md -------------------------------------------------------------------------------- /samples/IoTHubClients/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/IoTHubClients/README.md -------------------------------------------------------------------------------- /samples/MemoryStatus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/MemoryStatus/README.md -------------------------------------------------------------------------------- /samples/MemoryStatus/cpp/ConsoleApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/MemoryStatus/cpp/ConsoleApplication.cpp -------------------------------------------------------------------------------- /samples/MemoryStatus/cpp/MemoryStatus.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/MemoryStatus/cpp/MemoryStatus.sln -------------------------------------------------------------------------------- /samples/MemoryStatus/cpp/MemoryStatus.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/MemoryStatus/cpp/MemoryStatus.vcxproj -------------------------------------------------------------------------------- /samples/MemoryStatus/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/MemoryStatus/cpp/README.md -------------------------------------------------------------------------------- /samples/MemoryStatus/cpp/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/MemoryStatus/cpp/pch.cpp -------------------------------------------------------------------------------- /samples/MemoryStatus/cpp/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/MemoryStatus/cpp/pch.h -------------------------------------------------------------------------------- /samples/NTServiceRpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/README.md -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/App.xaml -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/App.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/App.xaml.cpp -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/App.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/App.xaml.h -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/MainPage.xaml -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/MainPage.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/MainPage.xaml.cpp -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/MainPage.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/MainPage.xaml.h -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/NTServiceRpc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/NTServiceRpc.sln -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/NTServiceRpc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/NTServiceRpc.vcxproj -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/NTServiceRpc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/NTServiceRpc.vcxproj.filters -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/Package.appxmanifest -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/README.md -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/RpcAsyncWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/RpcAsyncWrapper.cpp -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/RpcAsyncWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/RpcAsyncWrapper.h -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/RpcClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/RpcClient.cpp -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/RpcClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/RpcClient.h -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/RpcInterface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/RpcInterface.c -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/Service/Interface/RpcInterface.acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/Service/Interface/RpcInterface.acf -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/Service/Interface/RpcInterface.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/Service/Interface/RpcInterface.idl -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/Service/Server/RpcServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/Service/Server/RpcServer.cpp -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/Service/Server/RpcServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/Service/Server/RpcServer.h -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/Service/Server/RpcServer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/Service/Server/RpcServer.vcxproj -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/Service/Server/SampleService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/Service/Server/SampleService.cpp -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/Service/Server/SampleService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/Service/Server/SampleService.h -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/Service/Server/ServiceBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/Service/Server/ServiceBase.cpp -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/Service/Server/ServiceBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/Service/Server/ServiceBase.h -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/Service/Server/ServiceControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/Service/Server/ServiceControl.cpp -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/Service/Server/ServiceControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/Service/Server/ServiceControl.h -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/Service/Server/ServiceInstaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/Service/Server/ServiceInstaller.cpp -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/Service/Server/ServiceInstaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/Service/Server/ServiceInstaller.h -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/Service/Server/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/Service/Server/stdafx.cpp -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/Service/Server/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/Service/Server/stdafx.h -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/Service/Server/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/Service/Server/targetver.h -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/Styles.xaml -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/docs/ACL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/docs/ACL.md -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/docs/Client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/docs/Client.md -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/docs/IoT-PowerShell-session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/docs/IoT-PowerShell-session.png -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/docs/IoT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/docs/IoT.md -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/docs/Server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/docs/Server.md -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/pch.cpp -------------------------------------------------------------------------------- /samples/NTServiceRpc/cpp/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/NTServiceRpc/cpp/pch.h -------------------------------------------------------------------------------- /samples/PosPrinterNetFx/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PosPrinterNetFx/App.config -------------------------------------------------------------------------------- /samples/PosPrinterNetFx/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PosPrinterNetFx/App.xaml -------------------------------------------------------------------------------- /samples/PosPrinterNetFx/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PosPrinterNetFx/App.xaml.cs -------------------------------------------------------------------------------- /samples/PosPrinterNetFx/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PosPrinterNetFx/MainWindow.xaml -------------------------------------------------------------------------------- /samples/PosPrinterNetFx/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PosPrinterNetFx/MainWindow.xaml.cs -------------------------------------------------------------------------------- /samples/PosPrinterNetFx/PosPrinterNetFx.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PosPrinterNetFx/PosPrinterNetFx.csproj -------------------------------------------------------------------------------- /samples/PosPrinterNetFx/PosPrinterNetFx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PosPrinterNetFx/PosPrinterNetFx.sln -------------------------------------------------------------------------------- /samples/PosPrinterNetFx/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PosPrinterNetFx/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/PosPrinterNetFx/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PosPrinterNetFx/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /samples/PosPrinterNetFx/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PosPrinterNetFx/Properties/Resources.resx -------------------------------------------------------------------------------- /samples/PosPrinterNetFx/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PosPrinterNetFx/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /samples/PosPrinterNetFx/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PosPrinterNetFx/Properties/Settings.settings -------------------------------------------------------------------------------- /samples/PosPrinterNetFx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PosPrinterNetFx/README.md -------------------------------------------------------------------------------- /samples/Potentiometer/CS/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Potentiometer/CS/App.xaml -------------------------------------------------------------------------------- /samples/Potentiometer/CS/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Potentiometer/CS/App.xaml.cs -------------------------------------------------------------------------------- /samples/Potentiometer/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Potentiometer/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/Potentiometer/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Potentiometer/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/Potentiometer/CS/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Potentiometer/CS/MainPage.xaml -------------------------------------------------------------------------------- /samples/Potentiometer/CS/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Potentiometer/CS/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/Potentiometer/CS/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Potentiometer/CS/Package.appxmanifest -------------------------------------------------------------------------------- /samples/Potentiometer/CS/PotentiometerSensor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Potentiometer/CS/PotentiometerSensor.csproj -------------------------------------------------------------------------------- /samples/Potentiometer/CS/PotentiometerSensor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Potentiometer/CS/PotentiometerSensor.sln -------------------------------------------------------------------------------- /samples/Potentiometer/CS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Potentiometer/CS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/Potentiometer/CS/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Potentiometer/CS/Properties/Default.rd.xml -------------------------------------------------------------------------------- /samples/Potentiometer/CS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Potentiometer/CS/README.md -------------------------------------------------------------------------------- /samples/Potentiometer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/Potentiometer/README.md -------------------------------------------------------------------------------- /samples/PushButtton/CS/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PushButtton/CS/App.xaml -------------------------------------------------------------------------------- /samples/PushButtton/CS/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PushButtton/CS/App.xaml.cs -------------------------------------------------------------------------------- /samples/PushButtton/CS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PushButtton/CS/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/PushButtton/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PushButtton/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/PushButtton/CS/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PushButtton/CS/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/PushButtton/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PushButtton/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/PushButtton/CS/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PushButtton/CS/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/PushButtton/CS/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PushButtton/CS/MainPage.xaml -------------------------------------------------------------------------------- /samples/PushButtton/CS/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PushButtton/CS/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/PushButtton/CS/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PushButtton/CS/Package.appxmanifest -------------------------------------------------------------------------------- /samples/PushButtton/CS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PushButtton/CS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/PushButtton/CS/PushButton.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PushButtton/CS/PushButton.csproj -------------------------------------------------------------------------------- /samples/PushButtton/CS/PushButton.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PushButtton/CS/PushButton.sln -------------------------------------------------------------------------------- /samples/PushButtton/CS/PushButton_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PushButtton/CS/PushButton_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/PushButtton/CS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PushButtton/CS/README.md -------------------------------------------------------------------------------- /samples/PushButtton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/PushButtton/README.md -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/Mfrc522Lib/Mfrc522.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RFIDForIoT/CS/Mfrc522Lib/Mfrc522.cs -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/Mfrc522Lib/Mfrc522Lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RFIDForIoT/CS/Mfrc522Lib/Mfrc522Lib.csproj -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/Mfrc522Lib/PcdCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RFIDForIoT/CS/Mfrc522Lib/PcdCommands.cs -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/Mfrc522Lib/PiccCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RFIDForIoT/CS/Mfrc522Lib/PiccCommands.cs -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/Mfrc522Lib/PiccResponses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RFIDForIoT/CS/Mfrc522Lib/PiccResponses.cs -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/Mfrc522Lib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RFIDForIoT/CS/Mfrc522Lib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/Mfrc522Lib/Registers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RFIDForIoT/CS/Mfrc522Lib/Registers.cs -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/Mfrc522Lib/Uid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RFIDForIoT/CS/Mfrc522Lib/Uid.cs -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/PiezoBuzzerLib/Buzzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RFIDForIoT/CS/PiezoBuzzerLib/Buzzer.cs -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/PiezoBuzzerLib/PiezoBuzzerLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RFIDForIoT/CS/PiezoBuzzerLib/PiezoBuzzerLib.csproj -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RFIDForIoT/CS/README.md -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/RFIDForIoT.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RFIDForIoT/CS/RFIDForIoT.sln -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/RFIDForIoT/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RFIDForIoT/CS/RFIDForIoT/App.xaml -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/RFIDForIoT/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RFIDForIoT/CS/RFIDForIoT/App.xaml.cs -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/RFIDForIoT/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RFIDForIoT/CS/RFIDForIoT/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/RFIDForIoT/IAsyncInitialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RFIDForIoT/CS/RFIDForIoT/IAsyncInitialization.cs -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/RFIDForIoT/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RFIDForIoT/CS/RFIDForIoT/MainPage.xaml -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/RFIDForIoT/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RFIDForIoT/CS/RFIDForIoT/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/RFIDForIoT/Models/CardModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RFIDForIoT/CS/RFIDForIoT/Models/CardModel.cs -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/RFIDForIoT/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RFIDForIoT/CS/RFIDForIoT/Package.appxmanifest -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/RFIDForIoT/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RFIDForIoT/CS/RFIDForIoT/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/RFIDForIoT/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RFIDForIoT/CS/RFIDForIoT/Properties/Default.rd.xml -------------------------------------------------------------------------------- /samples/RFIDForIoT/CS/RFIDForIoT/RFIDForIoT.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RFIDForIoT/CS/RFIDForIoT/RFIDForIoT.csproj -------------------------------------------------------------------------------- /samples/RFIDForIoT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RFIDForIoT/README.md -------------------------------------------------------------------------------- /samples/RGBLED/CS/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RGBLED/CS/App.xaml -------------------------------------------------------------------------------- /samples/RGBLED/CS/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RGBLED/CS/App.xaml.cs -------------------------------------------------------------------------------- /samples/RGBLED/CS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RGBLED/CS/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/RGBLED/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RGBLED/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/RGBLED/CS/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RGBLED/CS/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/RGBLED/CS/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RGBLED/CS/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/RGBLED/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RGBLED/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/RGBLED/CS/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RGBLED/CS/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/RGBLED/CS/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RGBLED/CS/MainPage.xaml -------------------------------------------------------------------------------- /samples/RGBLED/CS/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RGBLED/CS/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/RGBLED/CS/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RGBLED/CS/Package.appxmanifest -------------------------------------------------------------------------------- /samples/RGBLED/CS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RGBLED/CS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/RGBLED/CS/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RGBLED/CS/Properties/Default.rd.xml -------------------------------------------------------------------------------- /samples/RGBLED/CS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RGBLED/CS/README.md -------------------------------------------------------------------------------- /samples/RGBLED/CS/RGBLED.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RGBLED/CS/RGBLED.csproj -------------------------------------------------------------------------------- /samples/RGBLED/CS/RGBLED.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RGBLED/CS/RGBLED.sln -------------------------------------------------------------------------------- /samples/RGBLED/CS/RGBLED_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RGBLED/CS/RGBLED_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/RGBLED/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RGBLED/README.md -------------------------------------------------------------------------------- /samples/RemovablePackages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RemovablePackages/README.md -------------------------------------------------------------------------------- /samples/RemovablePackages/RemoveOnIoTEnterpriseS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RemovablePackages/RemoveOnIoTEnterpriseS.ps1 -------------------------------------------------------------------------------- /samples/RemoveOnIoTEnterpriseS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/RemoveOnIoTEnterpriseS.ps1 -------------------------------------------------------------------------------- /samples/SPIDisplay/CS/DisplayFont/DisplayFont.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SPIDisplay/CS/DisplayFont/DisplayFont.csproj -------------------------------------------------------------------------------- /samples/SPIDisplay/CS/DisplayFont/DisplayFontClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SPIDisplay/CS/DisplayFont/DisplayFontClass.cs -------------------------------------------------------------------------------- /samples/SPIDisplay/CS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SPIDisplay/CS/README.md -------------------------------------------------------------------------------- /samples/SPIDisplay/CS/SPIDisplay.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SPIDisplay/CS/SPIDisplay.sln -------------------------------------------------------------------------------- /samples/SPIDisplay/CS/SPIDisplay/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SPIDisplay/CS/SPIDisplay/App.xaml -------------------------------------------------------------------------------- /samples/SPIDisplay/CS/SPIDisplay/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SPIDisplay/CS/SPIDisplay/App.xaml.cs -------------------------------------------------------------------------------- /samples/SPIDisplay/CS/SPIDisplay/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SPIDisplay/CS/SPIDisplay/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/SPIDisplay/CS/SPIDisplay/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SPIDisplay/CS/SPIDisplay/MainPage.xaml -------------------------------------------------------------------------------- /samples/SPIDisplay/CS/SPIDisplay/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SPIDisplay/CS/SPIDisplay/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/SPIDisplay/CS/SPIDisplay/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SPIDisplay/CS/SPIDisplay/Package.appxmanifest -------------------------------------------------------------------------------- /samples/SPIDisplay/CS/SPIDisplay/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SPIDisplay/CS/SPIDisplay/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/SPIDisplay/CS/SPIDisplay/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SPIDisplay/CS/SPIDisplay/Properties/Default.rd.xml -------------------------------------------------------------------------------- /samples/SPIDisplay/CS/SPIDisplay/SPIDisplay.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SPIDisplay/CS/SPIDisplay/SPIDisplay.csproj -------------------------------------------------------------------------------- /samples/SPIDisplay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SPIDisplay/README.md -------------------------------------------------------------------------------- /samples/SerialNumber/CS/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialNumber/CS/App.xaml -------------------------------------------------------------------------------- /samples/SerialNumber/CS/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialNumber/CS/App.xaml.cs -------------------------------------------------------------------------------- /samples/SerialNumber/CS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialNumber/CS/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/SerialNumber/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialNumber/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/SerialNumber/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialNumber/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/SerialNumber/CS/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialNumber/CS/MainPage.xaml -------------------------------------------------------------------------------- /samples/SerialNumber/CS/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialNumber/CS/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/SerialNumber/CS/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialNumber/CS/Package.appxmanifest -------------------------------------------------------------------------------- /samples/SerialNumber/CS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialNumber/CS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/SerialNumber/CS/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialNumber/CS/Properties/Default.rd.xml -------------------------------------------------------------------------------- /samples/SerialNumber/CS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialNumber/CS/README.md -------------------------------------------------------------------------------- /samples/SerialNumber/CS/serialnumber.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialNumber/CS/serialnumber.csproj -------------------------------------------------------------------------------- /samples/SerialNumber/CS/serialnumber.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialNumber/CS/serialnumber.sln -------------------------------------------------------------------------------- /samples/SerialNumber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialNumber/README.md -------------------------------------------------------------------------------- /samples/SerialUART/CPP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CPP/App.xaml -------------------------------------------------------------------------------- /samples/SerialUART/CPP/App.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CPP/App.xaml.cpp -------------------------------------------------------------------------------- /samples/SerialUART/CPP/App.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CPP/App.xaml.h -------------------------------------------------------------------------------- /samples/SerialUART/CPP/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CPP/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/SerialUART/CPP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CPP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/SerialUART/CPP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CPP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/SerialUART/CPP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CPP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/SerialUART/CPP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CPP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/SerialUART/CPP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CPP/MainPage.xaml -------------------------------------------------------------------------------- /samples/SerialUART/CPP/MainPage.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CPP/MainPage.xaml.cpp -------------------------------------------------------------------------------- /samples/SerialUART/CPP/MainPage.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CPP/MainPage.xaml.h -------------------------------------------------------------------------------- /samples/SerialUART/CPP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CPP/Package.appxmanifest -------------------------------------------------------------------------------- /samples/SerialUART/CPP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CPP/README.md -------------------------------------------------------------------------------- /samples/SerialUART/CPP/SerialSampleCpp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CPP/SerialSampleCpp.sln -------------------------------------------------------------------------------- /samples/SerialUART/CPP/SerialSampleCpp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CPP/SerialSampleCpp.vcxproj -------------------------------------------------------------------------------- /samples/SerialUART/CPP/SerialSampleCpp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CPP/SerialSampleCpp.vcxproj.filters -------------------------------------------------------------------------------- /samples/SerialUART/CPP/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CPP/pch.cpp -------------------------------------------------------------------------------- /samples/SerialUART/CPP/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CPP/pch.h -------------------------------------------------------------------------------- /samples/SerialUART/CS/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CS/App.xaml -------------------------------------------------------------------------------- /samples/SerialUART/CS/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CS/App.xaml.cs -------------------------------------------------------------------------------- /samples/SerialUART/CS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CS/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/SerialUART/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/SerialUART/CS/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CS/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/SerialUART/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/SerialUART/CS/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CS/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/SerialUART/CS/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CS/MainPage.xaml -------------------------------------------------------------------------------- /samples/SerialUART/CS/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CS/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/SerialUART/CS/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CS/Package.appxmanifest -------------------------------------------------------------------------------- /samples/SerialUART/CS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/SerialUART/CS/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CS/Properties/Default.rd.xml -------------------------------------------------------------------------------- /samples/SerialUART/CS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CS/README.md -------------------------------------------------------------------------------- /samples/SerialUART/CS/SerialSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CS/SerialSample.csproj -------------------------------------------------------------------------------- /samples/SerialUART/CS/SerialSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/CS/SerialSample.sln -------------------------------------------------------------------------------- /samples/SerialUART/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SerialUART/README.md -------------------------------------------------------------------------------- /samples/ShellLauncher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/ShellLauncher/README.md -------------------------------------------------------------------------------- /samples/ShellLauncher/SampleBridgeWmiScripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/ShellLauncher/SampleBridgeWmiScripts/README.md -------------------------------------------------------------------------------- /samples/ShellLauncher/SampleConfigXmls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/ShellLauncher/SampleConfigXmls/README.md -------------------------------------------------------------------------------- /samples/ShellLauncher/SampleConfigXmls/ShellLauncherSid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/ShellLauncher/SampleConfigXmls/ShellLauncherSid.xml -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SpeechTranslator/CS/App.xaml -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SpeechTranslator/CS/App.xaml.cs -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SpeechTranslator/CS/ApplicationInsights.config -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SpeechTranslator/CS/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/Assets/Logo44.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SpeechTranslator/CS/Assets/Logo44.scale-100.png -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SpeechTranslator/CS/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SpeechTranslator/CS/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SpeechTranslator/CS/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/AudioCapturePermissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SpeechTranslator/CS/AudioCapturePermissions.cs -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/AzureAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SpeechTranslator/CS/AzureAuthentication.cs -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/ConstantParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SpeechTranslator/CS/ConstantParam.cs -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SpeechTranslator/CS/MainPage.xaml -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SpeechTranslator/CS/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SpeechTranslator/CS/Package.appxmanifest -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SpeechTranslator/CS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SpeechTranslator/CS/Properties/Default.rd.xml -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SpeechTranslator/CS/README.md -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/SpeechTranslator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SpeechTranslator/CS/SpeechTranslator.csproj -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/SpeechTranslator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SpeechTranslator/CS/SpeechTranslator.sln -------------------------------------------------------------------------------- /samples/SpeechTranslator/CS/TranslatorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SpeechTranslator/CS/TranslatorManager.cs -------------------------------------------------------------------------------- /samples/SpeechTranslator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/SpeechTranslator/README.md -------------------------------------------------------------------------------- /samples/TempForceSensor/CS/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/TempForceSensor/CS/App.xaml -------------------------------------------------------------------------------- /samples/TempForceSensor/CS/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/TempForceSensor/CS/App.xaml.cs -------------------------------------------------------------------------------- /samples/TempForceSensor/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/TempForceSensor/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/TempForceSensor/CS/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/TempForceSensor/CS/MainPage.xaml -------------------------------------------------------------------------------- /samples/TempForceSensor/CS/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/TempForceSensor/CS/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/TempForceSensor/CS/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/TempForceSensor/CS/Package.appxmanifest -------------------------------------------------------------------------------- /samples/TempForceSensor/CS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/TempForceSensor/CS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/TempForceSensor/CS/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/TempForceSensor/CS/Properties/Default.rd.xml -------------------------------------------------------------------------------- /samples/TempForceSensor/CS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/TempForceSensor/CS/README.md -------------------------------------------------------------------------------- /samples/TempForceSensor/CS/TempSensor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/TempForceSensor/CS/TempSensor.csproj -------------------------------------------------------------------------------- /samples/TempForceSensor/CS/TempSensor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/TempForceSensor/CS/TempSensor.sln -------------------------------------------------------------------------------- /samples/TempForceSensor/CS/TempSensor_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/TempForceSensor/CS/TempSensor_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/TempForceSensor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/TempForceSensor/README.md -------------------------------------------------------------------------------- /samples/VideoCaptureSample/CS/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/VideoCaptureSample/CS/App.xaml -------------------------------------------------------------------------------- /samples/VideoCaptureSample/CS/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/VideoCaptureSample/CS/App.xaml.cs -------------------------------------------------------------------------------- /samples/VideoCaptureSample/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/VideoCaptureSample/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/VideoCaptureSample/CS/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/VideoCaptureSample/CS/MainPage.xaml -------------------------------------------------------------------------------- /samples/VideoCaptureSample/CS/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/VideoCaptureSample/CS/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/VideoCaptureSample/CS/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/VideoCaptureSample/CS/Package.appxmanifest -------------------------------------------------------------------------------- /samples/VideoCaptureSample/CS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/VideoCaptureSample/CS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/VideoCaptureSample/CS/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/VideoCaptureSample/CS/Properties/Default.rd.xml -------------------------------------------------------------------------------- /samples/VideoCaptureSample/CS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/VideoCaptureSample/CS/README.md -------------------------------------------------------------------------------- /samples/VideoCaptureSample/CS/VideoCaptureSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/VideoCaptureSample/CS/VideoCaptureSample.csproj -------------------------------------------------------------------------------- /samples/VideoCaptureSample/CS/VideoCaptureSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/VideoCaptureSample/CS/VideoCaptureSample.sln -------------------------------------------------------------------------------- /samples/VideoCaptureSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/VideoCaptureSample/README.md -------------------------------------------------------------------------------- /samples/VirtualMicrophoneArrayDriver/Cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/VirtualMicrophoneArrayDriver/Cpp/README.md -------------------------------------------------------------------------------- /samples/VirtualMicrophoneArrayDriver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/VirtualMicrophoneArrayDriver/README.md -------------------------------------------------------------------------------- /samples/WebcamApp/CS/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WebcamApp/CS/App.xaml -------------------------------------------------------------------------------- /samples/WebcamApp/CS/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WebcamApp/CS/App.xaml.cs -------------------------------------------------------------------------------- /samples/WebcamApp/CS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WebcamApp/CS/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/WebcamApp/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WebcamApp/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/WebcamApp/CS/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WebcamApp/CS/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/WebcamApp/CS/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WebcamApp/CS/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/WebcamApp/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WebcamApp/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/WebcamApp/CS/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WebcamApp/CS/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/WebcamApp/CS/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WebcamApp/CS/MainPage.xaml -------------------------------------------------------------------------------- /samples/WebcamApp/CS/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WebcamApp/CS/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/WebcamApp/CS/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WebcamApp/CS/Package.appxmanifest -------------------------------------------------------------------------------- /samples/WebcamApp/CS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WebcamApp/CS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/WebcamApp/CS/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WebcamApp/CS/Properties/Default.rd.xml -------------------------------------------------------------------------------- /samples/WebcamApp/CS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WebcamApp/CS/README.md -------------------------------------------------------------------------------- /samples/WebcamApp/CS/WebCamSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WebcamApp/CS/WebCamSample.csproj -------------------------------------------------------------------------------- /samples/WebcamApp/CS/WebCamSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WebcamApp/CS/WebCamSample.sln -------------------------------------------------------------------------------- /samples/WebcamApp/CS/WebCamSample_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WebcamApp/CS/WebCamSample_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/WebcamApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WebcamApp/README.md -------------------------------------------------------------------------------- /samples/WifiConnector/CS/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/App.xaml -------------------------------------------------------------------------------- /samples/WifiConnector/CS/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/App.xaml.cs -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/open_1bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/Assets/open_1bar.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/open_2bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/Assets/open_2bar.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/open_3bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/Assets/open_3bar.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/open_4bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/Assets/open_4bar.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/open_5bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/Assets/open_5bar.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/secure_1bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/Assets/secure_1bar.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/secure_2bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/Assets/secure_2bar.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/secure_3bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/Assets/secure_3bar.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/secure_4bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/Assets/secure_4bar.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/secure_5bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/Assets/secure_5bar.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/smalltile-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/Assets/smalltile-sdk.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/splash-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/Assets/splash-sdk.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/squaretile-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/Assets/squaretile-sdk.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/storelogo-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/Assets/storelogo-sdk.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/tile-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/Assets/tile-sdk.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Assets/wps-button40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/Assets/wps-button40x40.png -------------------------------------------------------------------------------- /samples/WifiConnector/CS/DisplayHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/DisplayHelpers.cs -------------------------------------------------------------------------------- /samples/WifiConnector/CS/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/MainPage.xaml -------------------------------------------------------------------------------- /samples/WifiConnector/CS/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/Package.appxmanifest -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/Properties/Default.rd.xml -------------------------------------------------------------------------------- /samples/WifiConnector/CS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/README.md -------------------------------------------------------------------------------- /samples/WifiConnector/CS/SampleConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/SampleConfiguration.cs -------------------------------------------------------------------------------- /samples/WifiConnector/CS/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/Styles/Styles.xaml -------------------------------------------------------------------------------- /samples/WifiConnector/CS/WiFiConnect.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/WiFiConnect.csproj -------------------------------------------------------------------------------- /samples/WifiConnector/CS/WiFiConnect.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/WiFiConnect.sln -------------------------------------------------------------------------------- /samples/WifiConnector/CS/WiFiConnect_Scenario.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/WiFiConnect_Scenario.xaml -------------------------------------------------------------------------------- /samples/WifiConnector/CS/WiFiConnect_Scenario.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/CS/WiFiConnect_Scenario.xaml.cs -------------------------------------------------------------------------------- /samples/WifiConnector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-IoT-Samples/HEAD/samples/WifiConnector/README.md --------------------------------------------------------------------------------