├── .gitignore ├── CONTRIBUTING.md ├── HueApp ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ ├── Wide310x150Logo.scale-200.png │ ├── push-link.png │ └── splash.png ├── HueApp.csproj ├── Initializer.xaml ├── Initializer.xaml.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── Utilities.cs └── VoiceCommands.xml ├── HueBackground ├── Bluetooth.cs ├── Cortana.cs ├── HueBackground.csproj └── Properties │ ├── AssemblyInfo.cs │ └── HueBackground.rd.xml ├── HueLibrary ├── Bridge.cs ├── HsbColor.cs ├── HueLibrary.csproj ├── Light.cs └── Properties │ ├── AssemblyInfo.cs │ └── HueLibrary.rd.xml ├── HueLightController.sln ├── LICENSE ├── README.md ├── SECURITY.md ├── Screenshots ├── Connecting.png ├── HueApp.png ├── Loading.png └── Using Cortana and Bluetooth LE with Hue Lights Video.png └── ThirdPartyNotices.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HueApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueApp/App.xaml -------------------------------------------------------------------------------- /HueApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueApp/App.xaml.cs -------------------------------------------------------------------------------- /HueApp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueApp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /HueApp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueApp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /HueApp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueApp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /HueApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /HueApp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueApp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /HueApp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueApp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /HueApp/Assets/push-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueApp/Assets/push-link.png -------------------------------------------------------------------------------- /HueApp/Assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueApp/Assets/splash.png -------------------------------------------------------------------------------- /HueApp/HueApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueApp/HueApp.csproj -------------------------------------------------------------------------------- /HueApp/Initializer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueApp/Initializer.xaml -------------------------------------------------------------------------------- /HueApp/Initializer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueApp/Initializer.xaml.cs -------------------------------------------------------------------------------- /HueApp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueApp/MainPage.xaml -------------------------------------------------------------------------------- /HueApp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueApp/MainPage.xaml.cs -------------------------------------------------------------------------------- /HueApp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueApp/Package.appxmanifest -------------------------------------------------------------------------------- /HueApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HueApp/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueApp/Properties/Default.rd.xml -------------------------------------------------------------------------------- /HueApp/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueApp/Utilities.cs -------------------------------------------------------------------------------- /HueApp/VoiceCommands.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueApp/VoiceCommands.xml -------------------------------------------------------------------------------- /HueBackground/Bluetooth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueBackground/Bluetooth.cs -------------------------------------------------------------------------------- /HueBackground/Cortana.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueBackground/Cortana.cs -------------------------------------------------------------------------------- /HueBackground/HueBackground.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueBackground/HueBackground.csproj -------------------------------------------------------------------------------- /HueBackground/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueBackground/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HueBackground/Properties/HueBackground.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueBackground/Properties/HueBackground.rd.xml -------------------------------------------------------------------------------- /HueLibrary/Bridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueLibrary/Bridge.cs -------------------------------------------------------------------------------- /HueLibrary/HsbColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueLibrary/HsbColor.cs -------------------------------------------------------------------------------- /HueLibrary/HueLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueLibrary/HueLibrary.csproj -------------------------------------------------------------------------------- /HueLibrary/Light.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueLibrary/Light.cs -------------------------------------------------------------------------------- /HueLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HueLibrary/Properties/HueLibrary.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueLibrary/Properties/HueLibrary.rd.xml -------------------------------------------------------------------------------- /HueLightController.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/HueLightController.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Screenshots/Connecting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/Screenshots/Connecting.png -------------------------------------------------------------------------------- /Screenshots/HueApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/Screenshots/HueApp.png -------------------------------------------------------------------------------- /Screenshots/Loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/Screenshots/Loading.png -------------------------------------------------------------------------------- /Screenshots/Using Cortana and Bluetooth LE with Hue Lights Video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/Screenshots/Using Cortana and Bluetooth LE with Hue Lights Video.png -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-huelightcontroller/HEAD/ThirdPartyNotices.txt --------------------------------------------------------------------------------