├── .gitattributes ├── .gitignore ├── .vs └── config │ └── applicationhost.config ├── Examples ├── 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 ├── LED Matrix Adavnced Examples.csproj ├── LED Matrix Adavnced Examples_TemporaryKey.pfx ├── LedBiColourMatrix.cs ├── LedMonoMatrix.cs ├── LedMonoMatrixSPI.cs ├── LedMonoPanelSPI.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── StartupTask.cs └── project.json ├── Glovebox.Graphics Library.sln ├── Glovebox.Graphics ├── Components │ ├── LED8x8Matrix.cs │ └── SevenSegmentDisplay.cs ├── Drivers │ ├── Ht16K33.cs │ ├── Ht16K33BiColor.cs │ ├── ILedDriver.cs │ ├── LedDriver.cs │ └── MAX7219.cs ├── FrameBase.cs ├── Glovebox.Graphics.csproj ├── Grid │ ├── Grid8x8.cs │ └── GridBase.cs ├── Nuget │ ├── CreateNugetPackage.bat │ └── Glovebox.Graphics.dll.nuspec ├── Pixel.cs ├── Properties │ ├── AssemblyInfo.cs │ └── LightLibrary.rd.xml ├── SevenSegmentDisplay │ └── SevenSegmentDisplayBase.cs ├── Util.cs └── project.json ├── HelloWorld ├── 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 ├── LED Matrix HelloWorld Sample.csproj ├── LED Matrix HelloWorld Sample_TemporaryKey.pfx ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── StartupTask.cs └── project.json ├── README.md └── Seven Segment Display Sample ├── 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 ├── Package.appxmanifest ├── Properties ├── AssemblyInfo.cs └── Default.rd.xml ├── Seven Segment Display Sample.csproj ├── Seven Segment Display Sample_TemporaryKey.pfx ├── StartupTask.cs └── project.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /Examples/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Examples/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Examples/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Examples/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Examples/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Examples/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Examples/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Examples/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Examples/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Examples/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Examples/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Examples/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Examples/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Examples/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Examples/LED Matrix Adavnced Examples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Examples/LED Matrix Adavnced Examples.csproj -------------------------------------------------------------------------------- /Examples/LED Matrix Adavnced Examples_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Examples/LED Matrix Adavnced Examples_TemporaryKey.pfx -------------------------------------------------------------------------------- /Examples/LedBiColourMatrix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Examples/LedBiColourMatrix.cs -------------------------------------------------------------------------------- /Examples/LedMonoMatrix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Examples/LedMonoMatrix.cs -------------------------------------------------------------------------------- /Examples/LedMonoMatrixSPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Examples/LedMonoMatrixSPI.cs -------------------------------------------------------------------------------- /Examples/LedMonoPanelSPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Examples/LedMonoPanelSPI.cs -------------------------------------------------------------------------------- /Examples/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Examples/Package.appxmanifest -------------------------------------------------------------------------------- /Examples/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Examples/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Examples/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Examples/StartupTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Examples/StartupTask.cs -------------------------------------------------------------------------------- /Examples/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Examples/project.json -------------------------------------------------------------------------------- /Glovebox.Graphics Library.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Glovebox.Graphics Library.sln -------------------------------------------------------------------------------- /Glovebox.Graphics/Components/LED8x8Matrix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Glovebox.Graphics/Components/LED8x8Matrix.cs -------------------------------------------------------------------------------- /Glovebox.Graphics/Components/SevenSegmentDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Glovebox.Graphics/Components/SevenSegmentDisplay.cs -------------------------------------------------------------------------------- /Glovebox.Graphics/Drivers/Ht16K33.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Glovebox.Graphics/Drivers/Ht16K33.cs -------------------------------------------------------------------------------- /Glovebox.Graphics/Drivers/Ht16K33BiColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Glovebox.Graphics/Drivers/Ht16K33BiColor.cs -------------------------------------------------------------------------------- /Glovebox.Graphics/Drivers/ILedDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Glovebox.Graphics/Drivers/ILedDriver.cs -------------------------------------------------------------------------------- /Glovebox.Graphics/Drivers/LedDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Glovebox.Graphics/Drivers/LedDriver.cs -------------------------------------------------------------------------------- /Glovebox.Graphics/Drivers/MAX7219.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Glovebox.Graphics/Drivers/MAX7219.cs -------------------------------------------------------------------------------- /Glovebox.Graphics/FrameBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Glovebox.Graphics/FrameBase.cs -------------------------------------------------------------------------------- /Glovebox.Graphics/Glovebox.Graphics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Glovebox.Graphics/Glovebox.Graphics.csproj -------------------------------------------------------------------------------- /Glovebox.Graphics/Grid/Grid8x8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Glovebox.Graphics/Grid/Grid8x8.cs -------------------------------------------------------------------------------- /Glovebox.Graphics/Grid/GridBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Glovebox.Graphics/Grid/GridBase.cs -------------------------------------------------------------------------------- /Glovebox.Graphics/Nuget/CreateNugetPackage.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Glovebox.Graphics/Nuget/CreateNugetPackage.bat -------------------------------------------------------------------------------- /Glovebox.Graphics/Nuget/Glovebox.Graphics.dll.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Glovebox.Graphics/Nuget/Glovebox.Graphics.dll.nuspec -------------------------------------------------------------------------------- /Glovebox.Graphics/Pixel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Glovebox.Graphics/Pixel.cs -------------------------------------------------------------------------------- /Glovebox.Graphics/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Glovebox.Graphics/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Glovebox.Graphics/Properties/LightLibrary.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Glovebox.Graphics/Properties/LightLibrary.rd.xml -------------------------------------------------------------------------------- /Glovebox.Graphics/SevenSegmentDisplay/SevenSegmentDisplayBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Glovebox.Graphics/SevenSegmentDisplay/SevenSegmentDisplayBase.cs -------------------------------------------------------------------------------- /Glovebox.Graphics/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Glovebox.Graphics/Util.cs -------------------------------------------------------------------------------- /Glovebox.Graphics/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Glovebox.Graphics/project.json -------------------------------------------------------------------------------- /HelloWorld/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/HelloWorld/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /HelloWorld/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/HelloWorld/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /HelloWorld/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/HelloWorld/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /HelloWorld/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/HelloWorld/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /HelloWorld/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/HelloWorld/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /HelloWorld/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/HelloWorld/Assets/StoreLogo.png -------------------------------------------------------------------------------- /HelloWorld/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/HelloWorld/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /HelloWorld/LED Matrix HelloWorld Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/HelloWorld/LED Matrix HelloWorld Sample.csproj -------------------------------------------------------------------------------- /HelloWorld/LED Matrix HelloWorld Sample_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/HelloWorld/LED Matrix HelloWorld Sample_TemporaryKey.pfx -------------------------------------------------------------------------------- /HelloWorld/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/HelloWorld/Package.appxmanifest -------------------------------------------------------------------------------- /HelloWorld/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/HelloWorld/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HelloWorld/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/HelloWorld/Properties/Default.rd.xml -------------------------------------------------------------------------------- /HelloWorld/StartupTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/HelloWorld/StartupTask.cs -------------------------------------------------------------------------------- /HelloWorld/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/HelloWorld/project.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/README.md -------------------------------------------------------------------------------- /Seven Segment Display Sample/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Seven Segment Display Sample/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Seven Segment Display Sample/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Seven Segment Display Sample/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Seven Segment Display Sample/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Seven Segment Display Sample/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Seven Segment Display Sample/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Seven Segment Display Sample/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Seven Segment Display Sample/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Seven Segment Display Sample/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Seven Segment Display Sample/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Seven Segment Display Sample/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Seven Segment Display Sample/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Seven Segment Display Sample/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Seven Segment Display Sample/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Seven Segment Display Sample/Package.appxmanifest -------------------------------------------------------------------------------- /Seven Segment Display Sample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Seven Segment Display Sample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Seven Segment Display Sample/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Seven Segment Display Sample/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Seven Segment Display Sample/Seven Segment Display Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Seven Segment Display Sample/Seven Segment Display Sample.csproj -------------------------------------------------------------------------------- /Seven Segment Display Sample/Seven Segment Display Sample_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Seven Segment Display Sample/Seven Segment Display Sample_TemporaryKey.pfx -------------------------------------------------------------------------------- /Seven Segment Display Sample/StartupTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Seven Segment Display Sample/StartupTask.cs -------------------------------------------------------------------------------- /Seven Segment Display Sample/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloveboxes/Windows-IoT-Core-Graphics-Library/HEAD/Seven Segment Display Sample/project.json --------------------------------------------------------------------------------