RGB.NET.Core 3.2.0

dotnet add package RGB.NET.Core --version 3.2.0
                    
NuGet\Install-Package RGB.NET.Core -Version 3.2.0
                    
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="RGB.NET.Core" Version="3.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="RGB.NET.Core" Version="3.2.0" />
                    
Directory.Packages.props
<PackageReference Include="RGB.NET.Core" />
                    
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 RGB.NET.Core --version 3.2.0
                    
#r "nuget: RGB.NET.Core, 3.2.0"
                    
#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 RGB.NET.Core@3.2.0
                    
#: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=RGB.NET.Core&version=3.2.0
                    
Install as a Cake Addin
#tool nuget:?package=RGB.NET.Core&version=3.2.0
                    
Install as a Cake Tool

RGB.NET Core-Package.

Required to use RGB.NET

Getting Started

// Create a surface - this is where all devices belongs too
RGBSurface surface = new RGBSurface();

// Load your devices - check out the RGB.NET.Devices-packages for more information
// TODO: Load device-providers

// Automatically align devices to not overlap - you can ofc also move them by hand
surface.AlignDevices();

// Register an update-trigger
surface.RegisterUpdateTrigger(new TimerUpdateTrigger());

Basic Rendering

// Create a led-group containing all leds on the surface
ILedGroup allLeds = new ListLedGroup(surface, surface.Leds);

// Create a rainbow gradient
RainbowGradient rainbow = new RainbowGradient();

// Animate the gradient to steadily move
rainbow.AddDecorator(new MoveGradientDecorator(surface));

// Create a texture rendering that gradient
ITexture texture = new ConicalGradientTexture(new Size(10, 10), rainbow);

// Create a brush rendering the texture and assign it to the group
allLeds.Brush = new TextureBrush(texture);
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net10.0

    • No dependencies.
  • net8.0

    • No dependencies.
  • net9.0

    • No dependencies.

NuGet packages (20)

Showing the top 5 NuGet packages that depend on RGB.NET.Core:

Package Downloads
RGB.NET.Layout

Layout-Module of RGB.NET

RGB.NET.Presets

Presets-Presets of RGB.NET

ArtemisRGB.Core

Package Description

RGB.NET.HID

HID-Module of RGB.NET

RGB.NET.Devices.Corsair

Corsair-Device-Implementations of RGB.NET

GitHub repositories (6)

Showing the top 6 popular GitHub repositories that depend on RGB.NET.Core:

Repository Stars
Artemis-RGB/Artemis
Provides advanced unified lighting across many different brands RGB peripherals
DarthAffe/KeyboardAudioVisualizer
It's colorful - I like it!
DarthAffe/RGBSyncPlus
Tool to synchronize RGB devices
BrianLima/HueHue
A simple yet powerful open source LED controller for Windows and Arduino
Fanman03/JackNetRGBSync
The one-stop utlility for syncing your RGB perhipherals and components. Compatible with Corsair iCUE, Asus AURA, Razer Synapse, Logitech Gaming, and Cooler Master Masterplus.
theantipopau/omencore
OmenCore is an Advanced Performance Control for HP Omen Laptops Take full control of your gaming laptop with precision fan tuning, RGB management, hardware monitoring, and performance optimization.
Version Downloads Last Updated
3.2.0 400 3/19/2026
3.1.0 3,474 7/17/2025
3.0.1-prerelease.1 240 5/28/2025
3.0.0 1,166 2/8/2025
3.0.0-prerelease.5 107 2/8/2025
3.0.0-prerelease.4 136 2/6/2025
3.0.0-prerelease.3 1,718 10/20/2024
3.0.0-prerelease.2 234 9/26/2024
3.0.0-prerelease.1 175 7/21/2024
2.2.0-prerelease.1 159 6/22/2024
2.1.1-prerelease.3 123 6/10/2024
2.1.1-prerelease.2 127 5/27/2024
2.1.1-prerelease.1 145 4/11/2024
2.1.0 1,948 3/9/2024
2.1.0-prerelease.11 118 4/10/2024
2.1.0-prerelease.6 135 3/8/2024
2.0.4-prerelease.20 130 3/8/2024
2.0.4-prerelease.18 128 3/8/2024
2.0.4-prerelease.16 1,868 2/12/2024
Loading failed