CCSWE.nanoFramework.Graphics 1.1.136

There is a newer version of this package available.
See the version list below for details.
dotnet add package CCSWE.nanoFramework.Graphics --version 1.1.136
                    
NuGet\Install-Package CCSWE.nanoFramework.Graphics -Version 1.1.136
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CCSWE.nanoFramework.Graphics" Version="1.1.136" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CCSWE.nanoFramework.Graphics" Version="1.1.136" />
                    
Directory.Packages.props
<PackageReference Include="CCSWE.nanoFramework.Graphics" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add CCSWE.nanoFramework.Graphics --version 1.1.136
                    
#r "nuget: CCSWE.nanoFramework.Graphics, 1.1.136"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package CCSWE.nanoFramework.Graphics@1.1.136
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=CCSWE.nanoFramework.Graphics&version=1.1.136
                    
Install as a Cake Addin
#tool nuget:?package=CCSWE.nanoFramework.Graphics&version=1.1.136
                    
Install as a Cake Tool

Build License NuGet

CCSWE.nanoFramework.Graphics

Color utility library for .NET nanoFramework. Provides color conversion, brightness scaling, and a color wheel — usable independently of any LED hardware driver.

API

ColorConverter

Convert between RGB, HSB, and HSL color spaces, and scale brightness.

// Scale brightness (0.0 = off, 1.0 = full brightness)
Color dimRed = ColorConverter.ScaleBrightness(Color.Red, 0.5f);

// Convert to HSB and back
HsbColor hsb = ColorConverter.ToHsbColor(Color.Red);
Color rgb = ColorConverter.ToColor(hsb);

ColorWheel

A 255-step color wheel that cycles smoothly through red → green → blue → red. Useful for rainbow animations.

// position: 0–255
Color c = ColorWheel.GetColor(position);

ColorExtensions

Convert a System.Drawing.Color to a byte array in any System.Drawing.ColorOrder (Rgb, Bgr, Grb, etc.).

byte[] bytes = color.ToBytes(ColorOrder.Grb);
Product Compatible and additional computed target framework versions.
.NETnanoFramework netnano1.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on CCSWE.nanoFramework.Graphics:

Package Downloads
CCSWE.nanoFramework.NeoPixel

A fast ESP32 RMT library for controlling LED chipsets (NeoPixel, WS2812B, etc.).

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on CCSWE.nanoFramework.Graphics:

Repository Stars
nanoframework/Samples
🍬 Code samples from the nanoFramework team used in testing, proof of concepts and other explorational endeavours
Version Downloads Last Updated
1.1.140 59 6/26/2026
1.1.139 99 6/24/2026
1.1.138 90 6/24/2026
1.1.137 93 6/24/2026
1.1.136 100 6/23/2026
1.1.135 120 6/1/2026
1.1.134 102 6/1/2026
1.1.133 102 6/1/2026
1.1.130 106 5/31/2026
1.1.129 130 4/23/2026
1.1.128 108 4/23/2026
1.1.127 136 4/15/2026
1.1.124 117 4/15/2026
1.1.123 108 4/14/2026
1.1.122 111 4/13/2026
1.1.117 144 4/13/2026
1.1.114 155 4/10/2026
1.1.113 140 4/10/2026
1.1.112 148 4/9/2026
1.1.104 147 4/8/2026
Loading failed