├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── Samples ├── DotNet │ ├── OZWDotNet │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── DeployConfigFiles.targets │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── OZWDotNet.csproj │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ └── OZWForm │ │ ├── ConfigurationWakeUpDlg.Designer.cs │ │ ├── ConfigurationWakeUpDlg.cs │ │ ├── ConfigurationWakeUpDlg.resx │ │ ├── ControllerCommandDlg.Designer.cs │ │ ├── ControllerCommandDlg.cs │ │ ├── ControllerCommandDlg.resx │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Node.cs │ │ ├── NodeForm.Designer.cs │ │ ├── NodeForm.cs │ │ ├── NodeForm.resx │ │ ├── OZWForm.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── ValuePanel.Designer.cs │ │ ├── ValuePanel.cs │ │ ├── ValuePanel.resx │ │ ├── ValuePanelBool.cs │ │ ├── ValuePanelBool.resx │ │ ├── ValuePanelButton.cs │ │ ├── ValuePanelButton.resx │ │ ├── ValuePanelByte.cs │ │ ├── ValuePanelByte.resx │ │ ├── ValuePanelDecimal.cs │ │ ├── ValuePanelDecimal.resx │ │ ├── ValuePanelInt.cs │ │ ├── ValuePanelInt.resx │ │ ├── ValuePanelList.cs │ │ ├── ValuePanelList.resx │ │ ├── ValuePanelShort.cs │ │ ├── ValuePanelShort.resx │ │ ├── ValuePanelString.cs │ │ ├── ValuePanelString.resx │ │ └── app.config └── UWP │ ├── OZWAppx │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationState.cs │ ├── Assets │ │ ├── BadgeLogo.scale-100.png │ │ ├── BadgeLogo.scale-125.png │ │ ├── BadgeLogo.scale-150.png │ │ ├── BadgeLogo.scale-200.png │ │ ├── BadgeLogo.scale-400.png │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-200.png │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ └── Wide310x150Logo.scale-200.png │ ├── DeployConfigFiles.targets │ ├── DeviceIcons │ │ ├── 1.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 2.png │ │ ├── 33.png │ │ └── 7.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── NetworkManager │ │ ├── Controller.cs │ │ ├── Node.cs │ │ └── Watcher.cs │ ├── OZWAppx.csproj │ ├── OZWAppx_TemporaryKey.pfx │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── ValueConverters.cs │ └── Views │ │ ├── AboutView.xaml │ │ ├── AboutView.xaml.cs │ │ ├── ControllerView.xaml │ │ ├── ControllerView.xaml.cs │ │ ├── ControllersView.xaml │ │ ├── ControllersView.xaml.cs │ │ ├── DeviceView.xaml │ │ ├── DeviceView.xaml.cs │ │ ├── DevicesView.xaml │ │ ├── DevicesView.xaml.cs │ │ ├── SettingsView.xaml │ │ ├── SettingsView.xaml.cs │ │ └── ZWValueControl.cs │ └── OZWAppxScreenshot.png ├── Sandcastle ├── Content │ ├── CompilingOpenZWave.aml │ ├── VersionHistory │ │ ├── VersionHistory.aml │ │ └── v2.0.0-beta2.aml │ └── Welcome.aml ├── ContentLayout.content ├── Documention.shfbproj └── icons │ └── Help.png ├── nuget ├── BuildPackage.cmd ├── OpenZWave.net452.targets ├── OpenZWave.nuspec └── OpenZWave.uap10.0.targets └── src ├── OpenZWave ├── AssemblyInfo.cpp ├── OpenZWaveDotNet.vcxproj ├── OpenZWaveUWP.vcxproj ├── Platform.h ├── ZWEnums.h ├── ZWManager.cpp ├── ZWManager.h ├── ZWNotification.cpp ├── ZWNotification.h ├── ZWOptions.cpp ├── ZWOptions.h ├── ZWValueID.cpp ├── ZWValueID.h ├── app.ico ├── app.rc ├── pch.cpp ├── pch.h └── resource.h ├── OpenZWaveDotNet.sln └── OpenZWaveUWP.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/README.md -------------------------------------------------------------------------------- /Samples/DotNet/OZWDotNet/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWDotNet/App.config -------------------------------------------------------------------------------- /Samples/DotNet/OZWDotNet/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWDotNet/App.xaml -------------------------------------------------------------------------------- /Samples/DotNet/OZWDotNet/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWDotNet/App.xaml.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWDotNet/DeployConfigFiles.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWDotNet/DeployConfigFiles.targets -------------------------------------------------------------------------------- /Samples/DotNet/OZWDotNet/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWDotNet/MainWindow.xaml -------------------------------------------------------------------------------- /Samples/DotNet/OZWDotNet/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWDotNet/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWDotNet/OZWDotNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWDotNet/OZWDotNet.csproj -------------------------------------------------------------------------------- /Samples/DotNet/OZWDotNet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWDotNet/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWDotNet/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWDotNet/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWDotNet/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWDotNet/Properties/Resources.resx -------------------------------------------------------------------------------- /Samples/DotNet/OZWDotNet/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWDotNet/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWDotNet/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWDotNet/Properties/Settings.settings -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/ConfigurationWakeUpDlg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/ConfigurationWakeUpDlg.Designer.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/ConfigurationWakeUpDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/ConfigurationWakeUpDlg.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/ConfigurationWakeUpDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/ConfigurationWakeUpDlg.resx -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/ControllerCommandDlg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/ControllerCommandDlg.Designer.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/ControllerCommandDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/ControllerCommandDlg.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/ControllerCommandDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/ControllerCommandDlg.resx -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/MainForm.Designer.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/MainForm.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/MainForm.resx -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/Node.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/NodeForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/NodeForm.Designer.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/NodeForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/NodeForm.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/NodeForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/NodeForm.resx -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/OZWForm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/OZWForm.csproj -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/Program.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/Properties/Resources.resx -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/Properties/Settings.settings -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/ValuePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/ValuePanel.Designer.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/ValuePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/ValuePanel.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/ValuePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/ValuePanel.resx -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/ValuePanelBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/ValuePanelBool.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/ValuePanelBool.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/ValuePanelBool.resx -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/ValuePanelButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/ValuePanelButton.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/ValuePanelButton.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/ValuePanelButton.resx -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/ValuePanelByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/ValuePanelByte.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/ValuePanelByte.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/ValuePanelByte.resx -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/ValuePanelDecimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/ValuePanelDecimal.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/ValuePanelDecimal.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/ValuePanelDecimal.resx -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/ValuePanelInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/ValuePanelInt.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/ValuePanelInt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/ValuePanelInt.resx -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/ValuePanelList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/ValuePanelList.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/ValuePanelList.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/ValuePanelList.resx -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/ValuePanelShort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/ValuePanelShort.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/ValuePanelShort.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/ValuePanelShort.resx -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/ValuePanelString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/ValuePanelString.cs -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/ValuePanelString.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/ValuePanelString.resx -------------------------------------------------------------------------------- /Samples/DotNet/OZWForm/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/DotNet/OZWForm/app.config -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/App.xaml -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/App.xaml.cs -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/ApplicationState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/ApplicationState.cs -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/BadgeLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/BadgeLogo.scale-100.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/BadgeLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/BadgeLogo.scale-125.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/BadgeLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/BadgeLogo.scale-150.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/BadgeLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/BadgeLogo.scale-200.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/BadgeLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/BadgeLogo.scale-400.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/DeployConfigFiles.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/DeployConfigFiles.targets -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/DeviceIcons/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/DeviceIcons/1.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/DeviceIcons/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/DeviceIcons/15.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/DeviceIcons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/DeviceIcons/16.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/DeviceIcons/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/DeviceIcons/2.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/DeviceIcons/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/DeviceIcons/33.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/DeviceIcons/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/DeviceIcons/7.png -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/MainPage.xaml -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/MainPage.xaml.cs -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/NetworkManager/Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/NetworkManager/Controller.cs -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/NetworkManager/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/NetworkManager/Node.cs -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/NetworkManager/Watcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/NetworkManager/Watcher.cs -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/OZWAppx.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/OZWAppx.csproj -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/OZWAppx_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/OZWAppx_TemporaryKey.pfx -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Package.appxmanifest -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/ValueConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/ValueConverters.cs -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Views/AboutView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Views/AboutView.xaml -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Views/AboutView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Views/AboutView.xaml.cs -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Views/ControllerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Views/ControllerView.xaml -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Views/ControllerView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Views/ControllerView.xaml.cs -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Views/ControllersView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Views/ControllersView.xaml -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Views/ControllersView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Views/ControllersView.xaml.cs -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Views/DeviceView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Views/DeviceView.xaml -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Views/DeviceView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Views/DeviceView.xaml.cs -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Views/DevicesView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Views/DevicesView.xaml -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Views/DevicesView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Views/DevicesView.xaml.cs -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Views/SettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Views/SettingsView.xaml -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Views/SettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Views/SettingsView.xaml.cs -------------------------------------------------------------------------------- /Samples/UWP/OZWAppx/Views/ZWValueControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppx/Views/ZWValueControl.cs -------------------------------------------------------------------------------- /Samples/UWP/OZWAppxScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Samples/UWP/OZWAppxScreenshot.png -------------------------------------------------------------------------------- /Sandcastle/Content/CompilingOpenZWave.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Sandcastle/Content/CompilingOpenZWave.aml -------------------------------------------------------------------------------- /Sandcastle/Content/VersionHistory/VersionHistory.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Sandcastle/Content/VersionHistory/VersionHistory.aml -------------------------------------------------------------------------------- /Sandcastle/Content/VersionHistory/v2.0.0-beta2.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Sandcastle/Content/VersionHistory/v2.0.0-beta2.aml -------------------------------------------------------------------------------- /Sandcastle/Content/Welcome.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Sandcastle/Content/Welcome.aml -------------------------------------------------------------------------------- /Sandcastle/ContentLayout.content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Sandcastle/ContentLayout.content -------------------------------------------------------------------------------- /Sandcastle/Documention.shfbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Sandcastle/Documention.shfbproj -------------------------------------------------------------------------------- /Sandcastle/icons/Help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/Sandcastle/icons/Help.png -------------------------------------------------------------------------------- /nuget/BuildPackage.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/nuget/BuildPackage.cmd -------------------------------------------------------------------------------- /nuget/OpenZWave.net452.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/nuget/OpenZWave.net452.targets -------------------------------------------------------------------------------- /nuget/OpenZWave.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/nuget/OpenZWave.nuspec -------------------------------------------------------------------------------- /nuget/OpenZWave.uap10.0.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/nuget/OpenZWave.uap10.0.targets -------------------------------------------------------------------------------- /src/OpenZWave/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/src/OpenZWave/AssemblyInfo.cpp -------------------------------------------------------------------------------- /src/OpenZWave/OpenZWaveDotNet.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/src/OpenZWave/OpenZWaveDotNet.vcxproj -------------------------------------------------------------------------------- /src/OpenZWave/OpenZWaveUWP.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/src/OpenZWave/OpenZWaveUWP.vcxproj -------------------------------------------------------------------------------- /src/OpenZWave/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/src/OpenZWave/Platform.h -------------------------------------------------------------------------------- /src/OpenZWave/ZWEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/src/OpenZWave/ZWEnums.h -------------------------------------------------------------------------------- /src/OpenZWave/ZWManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/src/OpenZWave/ZWManager.cpp -------------------------------------------------------------------------------- /src/OpenZWave/ZWManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/src/OpenZWave/ZWManager.h -------------------------------------------------------------------------------- /src/OpenZWave/ZWNotification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/src/OpenZWave/ZWNotification.cpp -------------------------------------------------------------------------------- /src/OpenZWave/ZWNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/src/OpenZWave/ZWNotification.h -------------------------------------------------------------------------------- /src/OpenZWave/ZWOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/src/OpenZWave/ZWOptions.cpp -------------------------------------------------------------------------------- /src/OpenZWave/ZWOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/src/OpenZWave/ZWOptions.h -------------------------------------------------------------------------------- /src/OpenZWave/ZWValueID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/src/OpenZWave/ZWValueID.cpp -------------------------------------------------------------------------------- /src/OpenZWave/ZWValueID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/src/OpenZWave/ZWValueID.h -------------------------------------------------------------------------------- /src/OpenZWave/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/src/OpenZWave/app.ico -------------------------------------------------------------------------------- /src/OpenZWave/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/src/OpenZWave/app.rc -------------------------------------------------------------------------------- /src/OpenZWave/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/OpenZWave/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/src/OpenZWave/pch.h -------------------------------------------------------------------------------- /src/OpenZWave/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/src/OpenZWave/resource.h -------------------------------------------------------------------------------- /src/OpenZWaveDotNet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/src/OpenZWaveDotNet.sln -------------------------------------------------------------------------------- /src/OpenZWaveUWP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZWave/openzwave-dotnet-uwp/HEAD/src/OpenZWaveUWP.sln --------------------------------------------------------------------------------